用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill architecture-fit-check命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | architecture-fit-check |
| description | Framework for evaluating if change-set specs fit existing codebase architecture |
This skill provides the framework for evaluating whether proposed change-set specs (especially kind: delta) can be implemented within the existing codebase architecture.
Can an implementer translate these change-set specs into the repo's current architecture with routine changes + small refactors?
The answer is not about whether change-set specs align with canonical capability specs — canonical specs describe what the system does, not how it's built. Evaluate fit against the actual codebase architecture.
Use the research skill to understand the codebase:
Do not skip this step. You cannot evaluate fit without understanding how the repo is actually built.
Based on research, identify constraints that matter:
For each capability being added/modified:
Before finalizing, ask yourself:
If yes to any, the verdict should recommend paradigm work.
Choose when:
Choose when:
Choose when:
Document your findings:
## Architecture Fit Evaluation
### Verdict: FITS | FITS_WITH_ADJUSTMENTS | NO_FIT
### Constraints Evaluated
- <List of architecture constraints checked>
### Satisfied
- <Constraints that pass>
### Violated
- <Constraints that fail, or "None">
### Minimal Adjustments (if FITS_WITH_ADJUSTMENTS)
- <Specific changes needed>
### Paradigm Work Needed (if NO_FIT)
- <What kind of new mechanism is required>
- Load the `paradigm-design` skill to explore options