skills/scan/SKILL.md
Use when the user says 'scan project', 'estimate', 'how much to charge', or needs codebase complexity analysis.
npx skillsauth add cwinvestments/memstack scanInstall 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.
Analyze a project's complexity and generate pricing recommendations.
When this skill activates, output:
🔍 Scan — Analyzing project scope...
Then execute the protocol below.
| Context | Status | |---------|--------| | User asks to scan or analyze a project | ACTIVE — full scan | | User asks about pricing or estimates | ACTIVE — full scan + pricing | | User mentions project metrics (LOC, file count) | ACTIVE — quick metrics | | Discussing project analysis concepts generally | DORMANT — do not activate | | User is building/coding, not analyzing | DORMANT — do not activate |
Scan the codebase:
find . -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.py" -o -name "*.css" \) | wc -l
find . -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" \) -exec cat {} + | wc -l
Count key components: pages/routes, API endpoints, database tables, external integrations, auth complexity
Assess complexity tier:
Factor in: Auth (+2FA/SSO), payments (+$1-3K), real-time (+$1-2K), admin panel (+$2-5K), mobile responsive (+20-30%), per API integration (+$500-1.5K)
Generate three-tier pricing: Budget, Standard, Premium
User: "scan AdminStack and estimate pricing"
🔍 Scan — Analyzing project scope...
Files: 127 | LOC: ~28,000 | Pages: 27 | API Routes: 34 | Tables: 20
Integrations: Supabase, Stripe, Square, SendGrid, Railway, Hetzner
Complexity: Complex tier
Budget: $15,000 — Core features, basic styling
Standard: $22,000 — Full features, admin panel, responsive
Premium: $30,000 — Full + custom integrations + 3mo support
tools
Use when the user says 'save diary', 'log session', 'wrapping up', or at end of a productive session.
tools
Use when the user says 'submit to marketplace', 'publish my skill', 'share this skill', 'list on marketplace', 'submit plugin', 'publish to community', or needs to submit a skill or plugin to a community marketplace via PR. Do NOT use for building skills or writing plugin code.
development
Use when the user says 'write browser tests', 'test this page', 'playwright test', 'e2e test', 'end to end test', 'browser test', 'test the UI', or needs Playwright-based browser testing for a web application. Do NOT use for unit tests, API tests, or non-browser testing.
development
Use when the user says 'teach me', 'explain as you go', 'mentor mode', 'walk me through', 'help me learn', 'explain why', 'learning mode', or wants real-time plain language narration of decisions and tradeoffs while building. Do NOT use for code review or debugging.