Files
ClawSkills/claw-skills/workflows/improve-skills.md
zhi 795a710376 refactor: enforce layer responsibilities across all skills
Rewrote docs/standard.md as the single source of truth for skill
structure (menu/tools/recipes/manual analogy). Trimmed all SKILL.md
files to pure routers, moved recruitment workflow out of SKILL.md
into workflows/recruitment.md, removed duplicated standards from
workflow files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-17 20:40:16 +00:00

43 lines
1.1 KiB
Markdown

# Improve Skills
When a skill has misleading descriptions, missing coverage, or suboptimal behavior.
> See `{baseDir}/docs/standard.md` for skill structure and layer responsibilities.
## Principle
Improvement is better than workaround. Fix problems when you find them, so others don't hit the same pitfall.
## Process
### 1. Identify the Problem
- Record which skill and which part has the issue
- Describe specifically: what's misleading, what's missing, what's not working well
- Record the scenario where you encountered it
### 2. Assess Impact
- How many agents will this affect?
- Is it a design issue or a documentation issue?
- What's the complexity of the fix?
### 3. Design the Fix
- **Documentation issue** → update SKILL.md or docs/
- **Logic flaw** → modify the script
- **Missing coverage** → add a new workflow or script
- **Process issue** → redesign the workflow
### 4. Implement
- Make changes locally
- Update SKILL.md if behavior changed
- Test if the change is significant
### 5. Submit
Call `{baseDir}/scripts/promote-improvements` to push to your branch.
Commit message should describe what was changed and why.