ソース情報
- リポジトリ
- asermax/claude-plugins
- ソースの最終更新活動
- 2026年2月8日 18:28
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/asermax/claude-plugins --skill retrofit-specコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Build something already designed, together with the user, then verify it and offer to commit. Use when a design is agreed and the work is ready to write, or when another skill needs the shared build discipline.
Load first when working with any zenku skill. Carries the vocabulary, the two rules, how to find the project's vault and conventions, and the habits for writing into it.
Lay out the current shape so the user can settle a new one — which modules exist, where the seams are, how data flows, and what earlier quests already decided. Use when the user wants to design a feature or a module, work out an interface, decide where a boundary belongs, or when another skill needs a shape agreed before code.
SOC 職業分類に基づく
SKILL.md を表示中
| name | retrofit-spec |
| description | Create a feature specification from existing code |
| argument-hint | <path> |
| disable-model-invocation | true |
Create a feature specification from existing code implementation.
Path to file or module: $ARGUMENTS
You must load the following skills and read the following files before proceeding.
katachi:retrofit-existing - Retrofit workflowdocs/feature-specs/ - Existing feature documentation to understand organizationdocs/feature-specs/README.md - Top-level feature index (if exists)docs/planning/VISION.md - Project context for inferenceVerify:
Read the target file(s):
Task(
subagent_type="katachi:codebase-analyzer",
prompt=f"""
Analyze this code to create a feature specification.
## Analysis Type
spec
## Target Files
{file_contents}
## Project Context
{vision_content if exists else "No VISION.md - infer project context from code"}
"""
)
Show the agent's draft spec:
## Draft Specification
Based on analyzing [path], here's a draft spec:
[Draft spec content]
---
### Notes from Analysis
- [Assumptions made]
- [Uncertainties]
- [Areas needing clarification]
What needs adjustment in this spec?
User provides corrections:
Continue iteration until user approves.
Analyze existing feature-specs/ structure:
"Looking at existing feature documentation, where should this belong?
Existing capability domains:
- auth/ - [description]
- api/ - [description]
- [etc.]
Should this be:
A) New sub-capability in existing domain (e.g., auth/new-feature.md)
B) New capability domain (create new folder)
C) Standalone feature (top-level .md file)
Which organization makes sense?"
Write spec to appropriate location in docs/feature-specs/:
docs/feature-specs/[domain]/[feature].mddocs/feature-specs/[feature].mdInclude retrofit note:
# [Feature Name]
## Retrofit Note
This spec was created from existing code at `[path]`.
Original implementation date: [Unknown / from git history if available]
---
[Rest of spec content]
## Related Deltas
(To be added when deltas implement changes to this feature)
If adding to existing domain:
docs/feature-specs/[domain]/README.mdIf creating new domain:
docs/feature-specs/[domain]/README.mddocs/feature-specs/README.md"Feature spec created for existing code:
File: docs/feature-specs/[path]
Type: [Domain/Sub-capability/Standalone]
The feature documentation has been created. You can now:
- Retrofit design rationale: /katachi:retrofit-design [path]
- Retrofit another module: /katachi:retrofit-spec <path>
- Document a specific decision: /katachi:retrofit-decision <topic>
**Recommended next step:** Run `/katachi:retrofit-design [path]` to:
- Capture the design rationale behind the implementation
- Automatically discover and document undocumented ADR/DES patterns
- Create a complete design document from the existing code"
This is a collaborative process: