用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwinvestments/memstack --skill scan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when the user says 'save diary', 'log session', 'wrapping up', or at end of a productive session.
Use when the user says 'save project', 'handoff', or when context is running low and state must be preserved.
Use when the user says 'create quotation', 'generate quote', 'proposal', or needs a client-facing price document.
基于 SOC 职业分类
正在显示 SKILL.md
| name | scan |
| description | Use when the user says 'scan project', 'estimate', 'how much to charge', or needs codebase complexity analysis. |
| version | 1.0.0 |
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