ソース情報
- リポジトリ
- 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 optimize-docsコマンドは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 | optimize-docs |
| description | Analyze docs for optimization opportunities (split, simplify, remove) |
| argument-hint | [scope] |
| disable-model-invocation | true |
Analyze documentation for optimization opportunities, including splitting long documents, reducing verbosity, and identifying obsolete or redundant content.
Scope: $ARGUMENTS (optional - flexible scope for analysis)
Scope interpretation:
You must load the following skills and read the following files before proceeding.
katachi:framework-core - Workflow principles and project structuredocs/feature-specs/README.md - Feature capability indexdocs/feature-designs/README.md - Feature design indexdocs/architecture/README.md - Architecture decisions (ADRs)docs/design/README.md - Design patterns (DES)${CLAUDE_PLUGIN_ROOT}/skills/working-on-delta/references/feature-spec.md${CLAUDE_PLUGIN_ROOT}/skills/working-on-delta/references/feature-design.md${CLAUDE_PLUGIN_ROOT}/skills/framework-core/references/ADR-template.md${CLAUDE_PLUGIN_ROOT}/skills/framework-core/references/DES-template.mdVerify framework is initialized:
docs/planning/ doesn't exist, explain this command requires an initialized katachi frameworkIf no scope provided:
If topic scope provided (e.g., "auth"):
If file path provided:
If directory provided:
Group discovered documents for parallel processing.
Always dispatch doc-optimizer agents to analyze discovered documents:
For each agent, provide:
Analyze these documents for optimization opportunities.
## Documents to Analyze
[list of file paths with brief descriptions]
## Document Type
[feature-specs / feature-designs / architecture / design]
## Template Reference
[relevant template content for structure compliance]
## Analysis Focus
Provide actionable guidance on:
1. Document Length: Files that should split (>400 lines features, >150 decisions)
2. Verbosity: Repetitive phrasing, over-explanation, redundancy
3. Obsolescence: Orphaned docs, superseded content, obsolete documents
4. Structure: Missing required sections, incorrect format
For each issue found, provide:
- Specific file and location (line numbers when relevant)
- Clear explanation of the problem
- Actionable recommendation for improvement
Wait for all agent responses and synthesize findings into a single report organized by action type:
Show the aggregated report with clear categorization:
## Document Optimization Report
### Candidates for Splitting
- docs/feature-specs/auth.md (523 lines)
- Contains 3 distinct authentication methods that should be separate
- Suggested: auth/login.md, auth/oauth.md, auth/mfa.md
- Each method has independent user stories, flows, and acceptance criteria
### Verbosity Reduction Opportunities
- docs/feature-designs/api.md (312 lines → est. 180 lines)
- Lines 45-60, 89-104, 145-160, 201-216: "API first" explanation repeated 4 times
- Consider extracting to DES-XXX or consolidating into single reference section
### Candidates for Removal
- docs/feature-designs/old-workflow.md
- Not referenced in feature-designs/README.md
- Content describes deprecated workflow
### Orphaned Documents
- docs/architecture/old-db-choice.md (superseded by ADR-003)
- Marked as superseded, no active references in other docs
### Structure Issues
- docs/feature-specs/projects.md missing User Flows section
- This is a UI capability - should include breadboards or add exclusion note
After presenting the report, ask:
"Which optimization would you like to address?
1. Split long documents
2. Reduce verbosity / consolidate content
3. Remove obsolete documents
4. Fix orphaned documents
5. Fix structure issues
6. All of the above
Or provide specific items to address."
For splits:
For verbosity reduction:
For removals:
For orphaned documents:
For structure fixes:
Apply changes incrementally with user approval for each action or category.
Track all changes made:
After all optimizations are complete, dispatch the optimization-validator agent to verify no data was lost:
Validate the following document optimizations preserve all relevant information.
## Modified Files
[list of modified file paths]
## New Files (from splits)
[list of new file paths and their source files]
## Deleted Files
[list of deleted file paths]
Use git to retrieve original versions and compare with current state.
Apply corrections automatically if content was lost.
Ask only if uncertain how to fix.
If validation returns NEEDS_WORK:
After completing optimizations:
"Optimization complete!
Changes made:
- [summary of splits, deletions, consolidations, fixes]
Next steps:
- Index files may need updating if structure changed
- Consider running /katachi:analyze to verify no gaps introduced
- Related deltas may need documentation updates"
This command integrates with:
/katachi:analyze - Complementary: analyze finds gaps, optimize finds improvement opportunities/katachi:decision - For extracting discovered patterns into DES documents/katachi:spec-delta / /katachi:design-delta - For updating delta working documentsThis is an optimization command: