From utopia-funds-dd
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/utopia-funds-dd:repo-scannerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scans any repository to build a complete picture of the current technical setup and scores production readiness.
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/*' |
| 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:
Provides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.
npx claudepluginhub the-utopia-studio/skills --plugin utopia-funds-dd