Agent skill
improve
Extracts and implements pending improvement items from all knowledge sources.
Install this agent skill to your Project
npx add-skill https://github.com/goffity/claude-km-skill/tree/main/skills/improve
SKILL.md
Improve - Work on Pending Items
ดึง actionable items จากทุก sources แล้วทำงาน (Layer 4)
Instructions
- Scan knowledge files (prioritized)
- Extract actionable items
- Present to user
- Execute selected items
- Update source files
Scan Priority
| Priority | Source | Look For |
|---|---|---|
| 1 | docs/knowledge-base/ |
"When to Apply", patterns to implement |
| 2 | docs/retrospective/ |
"Future Improvements" (- [ ]) |
| 3 | docs/learnings/ |
"Gotchas" to fix (skip "Distilled") |
Scan Commands
# Knowledge base
find $PROJECT_ROOT/docs/knowledge-base -name "*.md" -type f
# Retrospectives
find $PROJECT_ROOT/docs/retrospective -name "*.md" -type f
# Learnings (skip distilled)
find $PROJECT_ROOT/docs/learnings -name "*.md" -type f
Present Format
## Pending Improvements
### From Knowledge Base - Priority 1
kafka-error-handling.md:
1. [ ] Apply retry pattern to all consumers
### From Retrospectives - Priority 2
retrospective_2025-12-23_143000.md:
2. [ ] Add consumer mocks to Makefile
### From Learnings - Priority 3
14.30_redis-issue.md:
3. [ ] Document Redis patterns
User Selection
Ask: "เลือก item (หมายเลข, 'all', หรือ 'skip')"
Execute Workflow
For each selected item:
- วิเคราะห์ task
- Implement
- Test
- Commit (atomic)
- Update source:
- [ ]→- [x]- Add changelog entry
Output Summary
## Completed
- [x] Add consumer mocks (commit: abc1234)
- [ ] Redis patterns (skipped - needs discussion)
Updated:
- docs/retrospective/2025-12/retrospective_*.md
Rules
| Rule | Description |
|---|---|
| PRIORITIZE | Knowledge base first |
| ASK | If needs discussion/approval |
| UPDATE | Source file after completion |
| ATOMIC | Use atomic commits |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
commit
Creates atomic commits by invoking TDG and commenting on related GitHub issues.
distill
Synthesizes related learnings into reusable knowledge base patterns.
security-auditor
Audits code for security vulnerabilities including OWASP Top 10 and authentication issues.
code-reviewer
Reviews code changes for bugs, security vulnerabilities, and performance issues.
example
Saves reusable code examples to the examples library with metadata and tags.
flow
Documents workflow diagrams and process flows with Mermaid diagram support.
Didn't find tool you were looking for?