用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill improve-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | improve-skill |
| description | Iteratively improve an existing skill or command based on feedback |
| allowed-tools | ["Bash","Read","Write","Edit","Glob","Grep"] |
Iteratively improve an existing skill or command based on feedback, corrections, or identified issues.
Locate the Component
plugins/*/commands/ and plugins/*/skills/ for the specified nameGather Context If feedback is provided, analyze it. Otherwise, prompt for:
Analyze Current Instructions Evaluate the existing component for:
Propose Improvements Based on feedback and analysis, suggest specific changes:
Present Changes Show a diff-style view of proposed changes:
## Proposed Changes to {component-name}
### Addition: New Rule
+ - Handle edge case X by doing Y
### Modification: Process Step 3
- 3. Old step description
+ 3. Improved step description with more detail
### Addition: Example
+ ## Example: Edge Case Handling
+ User: `/component-name --edge-case`
+ Result: Handles it gracefully
Apply or Iterate
| Argument | Required | Description |
|---|---|---|
| name | Yes | Name of the skill or command to improve |
| feedback | No | Specific feedback or issues to address |
Before improving, verify the component is the right type:
Commands (commands/*.md) - Use when:
/command-namename, description, allowed-toolsSkills (skills/*/INSTRUCTIONS.md) - Use when:
## When to Use descriptionIf a skill should be a command (user-invoked action), recommend converting it.
User: /improve-skill commit
Analysis reveals:
Proposed additions:
### Merge Commits
When committing a merge, use the format:
`merge: integrate {branch} into {target}`
### Breaking Changes
For breaking changes, use:
`feat!: description` or `fix!: description`
Include a BREAKING CHANGE footer explaining the impact.
bun run typecheck and bun run build to verify