plugins/utopia-funds-dd/skills/repo-scanner/SKILL.md
Scans a GitHub repository to understand its tech stack, hosting, monitoring, integrations, and current production readiness. Use when the user asks to "audit", "check", or "scan" their repo. Don't use for code review or bug detection.
npx skillsauth add The-Utopia-Studio/skills repo-scannerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scans any repository to build a complete picture of the current technical setup and scores production readiness.
find . -type f -not -path './.git/*' -not -path './node_modules/*' -not -path './.next/*' -not -path './dist/*' -not -path './__pycache__/*' -not -path './venv/*' | head -200
Check for these files to determine the stack:
| File | Stack |
|------|-------|
| package.json | Node.js / JavaScript / TypeScript |
| tsconfig.json | TypeScript |
| next.config.* | Next.js |
| vite.config.* | Vite |
| requirements.txt / pyproject.toml | Python |
| go.mod | Go |
| Cargo.toml | Rust |
| Gemfile | Ruby |
Read package.json or equivalent to understand dependencies and scripts.
| Check | How |
|-------|-----|
| CI/CD | Look for .github/workflows/, .gitlab-ci.yml, Jenkinsfile |
| Docker | Look for Dockerfile, docker-compose.yml, .dockerignore |
| Hosting | Look for vercel.json, railway.toml, fly.toml, render.yaml, serverless.yml |
| Environments | Look for .env.example, .env.local, .env.production |
| Build | Check for build scripts in package.json or Makefile |
| Check | How |
|-------|-----|
| Error tracking | Grep for sentry, @sentry/, posthog, datadog, bugsnag in deps or code |
| Analytics | Grep for gtag, analytics, mixpanel, amplitude |
| Logging | Check for structured logging (winston, pino, structlog, loguru) |
| Health checks | Look for /health, /healthz, /api/health endpoints |
| Check | How |
|-------|-----|
| Root README | Does README.md exist with setup instructions? |
| Directory READMEs | find . -name "README.md" -not -path './node_modules/*' | wc -l |
| Agent config | Look for AGENTS.md, .cursorrules, .cursor/rules/, .claude/ |
| Linting | Look for .eslintrc, .prettierrc, ruff.toml |
| Testing | Look for __tests__/, tests/, spec/, test scripts |
| Git hygiene | Check .gitignore exists and covers common patterns |
grep -rn "sk-\|api_key\s*=\s*['\"].\+['\"]" --include="*.ts" --include="*.js" --include="*.py" --include="*.env" . 2>/dev/null | grep -v node_modules | grep -v '.env.example' | head -20
You MUST use this exact markdown structure. Do not invent your own format.
## 🔍 Repo Scan: {project-name}
**Tech Stack:** {e.g. React 18 + TypeScript, Flask + Python 3.11}
**Hosting:** {e.g. Vercel, AWS, Railway, or "Not configured"}
**Framework:** {e.g. Next.js 14, Vite 5, FastAPI}
---
## 📊 Production Readiness Score: {X}/10
| # | Category | Status | Details |
|---|----------|--------|---------|
| 1 | Environment Setup | {✅/⚠️/❌} | {one-line detail} |
| 2 | CI/CD Pipeline | {✅/⚠️/❌} | {one-line detail} |
| 3 | Documentation | {✅/⚠️/❌} | {one-line detail} |
| 4 | Error Tracking | {✅/⚠️/❌} | {one-line detail} |
| 5 | Deployment | {✅/⚠️/❌} | {one-line detail} |
| 6 | Security | {✅/⚠️/❌} | {one-line detail} |
| 7 | Cost Awareness | {✅/⚠️/❌} | {one-line detail} |
| 8 | Integration Health | {✅/⚠️/❌} | {one-line detail} |
| 9 | LLM-Readiness | {✅/⚠️/❌} | {one-line detail} |
| 10 | Code Organization | {✅/⚠️/❌} | {one-line detail} |
**Scoring: ✅ = 1 point, ⚠️ = 0.5 points, ❌ = 0 points**
---
## 🚨 Top 3 Issues
1. **{Issue title}** — {Why it matters. File:line reference if applicable.}
2. **{Issue title}** — {Why it matters.}
3. **{Issue title}** — {Why it matters.}
---
## 🛠️ Recommended Next Steps
Run these vibe-to-prod skills to fix the issues above:
1. `skills/{skill-name}/` — {what it will fix}
2. `skills/{skill-name}/` — {what it will fix}
3. `skills/{skill-name}/` — {what it will fix}
Rules for the output:
development
Create professional equity research earnings update reports (8-12 pages, 3,000-5,000 words) analyzing quarterly results for companies already under coverage. Fast-turnaround format focusing on beat/miss analysis, key metrics, updated estimates, and revised thesis. Includes 1-3 summary tables and 8-12 charts. Use when user requests "earnings update", "quarterly update", "earnings analysis", "Q1/Q2/Q3/Q4 results", or post-earnings report.
development
Updates a presentation with new numbers — quarterly refreshes, earnings updates, comp rolls, rebased market data. Use whenever the user asks to "update the deck with Q4 numbers", "refresh the comps", "roll this forward", "swap in the new earnings", "change all the $485M to $512M", or any request to swap figures across an existing deck without rebuilding it.
development
Real DCF (Discounted Cash Flow) model creation for equity valuation. Retrieves financial data from SEC filings and analyst reports, builds comprehensive cash flow projections with proper WACC calculations, performs sensitivity analysis, and outputs professional Excel models with executive summaries. Use when users need to value a company using DCF methodology, request intrinsic value analysis, or ask for detailed financial modeling with growth projections and terminal value calculations.
tools
Build professional financial services data packs from various sources including CIMs, offering memorandums, SEC filings, web search, or MCP servers. Extract, normalize, and standardize financial data into investment committee-ready Excel workbooks with consistent structure, proper formatting, and documented assumptions. Use for M&A due diligence, private equity analysis, investment committee materials, and standardizing financial reporting across portfolio companies. Do not use for simple financial calculations or working with already-completed data packs.