用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/richfrem/Project_Sanctuary --skill spec-kitty-research命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
ADR management skill. Auto-invoked for generating architecture decisions, documenting design rationale, and maintaining the decision record log. Uses native read/write tools to scaffold and update ADR markdown files.
(Industry standard: Parallel Agent) Primary Use Case: Work that can be partitioned into independent sub-tasks running concurrently across multiple agents. Parallel multi-agent execution pattern. Use when: work can be partitioned into independent tasks that N agents can execute simultaneously across worktrees. Includes routing (sequential vs parallel), merge verification, and correction loops.
Systematically analyze agent plugins and skills to extract design patterns, architectural decisions, and reusable techniques. Trigger with "analyze this plugin", "mine patterns from", "review plugin structure", "extract learnings from", "what patterns does this plugin use", or when examining any plugin or skill collection to understand its design.
基于 SOC 职业分类
正在显示 SKILL.md
| name | spec-kitty-research |
| description | Run the Phase 0 research workflow to scaffold research artifacts before task planning. |
Path reference rule: When you mention directories or files, provide either the absolute path or a path relative to the project root (for example, kitty-specs/<feature>/tasks/). Never refer to a folder by name alone.
Path: .kittify/templates/commands/research.md
BEFORE PROCEEDING: Verify you are working in the primary repository checkout.
pwd
git branch --show-current
Expected output:
pwd: Should end with primary repository checkout (or similar primary repository checkout)001-feature-name (NOT main)If you see the main branch or main repository path:
⛔ STOP - You are in the wrong location!
This command creates research artifacts in your feature directory. You must be in the primary repository checkout.
Correct the issue:
cd primary repository checkoutgit branch --show-currentWhen you run spec-kitty research, the following files are generated in your feature directory:
Generated files:
Location: All files go in kitty-specs/001-feature-name/
Before this: /spec-kitty.plan calls this as "Phase 0" research phase
This command:
After this:
/spec-kitty.plan which uses your research to drive technical designCreate research.md, data-model.md, and supporting CSV stubs based on the active mission so implementation planning can reference concrete decisions and evidence.
spec-kitty research to generate the mission-specific research artifacts. (Add --force only when it is acceptable to overwrite existing drafts.)research.md – capture decisions, rationale, and supporting evidence.data-model.md – document entities, attributes, and relationships discovered during research.research/evidence-log.csv & research/source-register.csv – log all sources and findings so downstream reviewers can audit the trail.research/ and reference them inside research.md.research.md. These should feed directly into /spec-kitty.tasks and future implementation prompts.kitty-specs/<feature>/research.md explains every major decision with references to evidence.kitty-specs/<feature>/data-model.md lists the entities and relationships needed for implementation.