New plugin: engineering-team/self-improving-agent/ - 5 skills: /si:review, /si:promote, /si:extract, /si:status, /si:remember - 2 agents: memory-analyst, skill-extractor - 1 hook: PostToolUse error capture (zero overhead on success) - 3 reference docs: memory architecture, promotion rules, rules directory patterns - 2 templates: rule template, skill template - 20 files, 1,829 lines Integrates natively with Claude Code's auto-memory (v2.1.32+). Reads from ~/.claude/projects/<path>/memory/ — no duplicate storage. Promotes proven patterns from MEMORY.md to CLAUDE.md or .claude/rules/. Also: - Added to marketplace.json (18 plugins total) - Added to README (Skills Overview + install section) - Updated badge count to 88+ - Regenerated .codex/skills-index.json + symlink Co-authored-by: Leo <leo@openclaw.ai>
54 lines
873 B
Markdown
54 lines
873 B
Markdown
---
|
|
name: {{skill-name}}
|
|
description: "{{One-line description}}. Use when: {{trigger conditions}}."
|
|
---
|
|
|
|
# {{Skill Title}}
|
|
|
|
> {{One-line value proposition}}
|
|
|
|
## Quick Reference
|
|
|
|
| Problem | Solution |
|
|
|---------|----------|
|
|
| {{error/symptom 1}} | {{fix 1}} |
|
|
| {{error/symptom 2}} | {{fix 2}} |
|
|
|
|
## The Problem
|
|
|
|
{{2-3 sentences explaining what goes wrong and why.
|
|
Include the exact error message if applicable.}}
|
|
|
|
## Solutions
|
|
|
|
### Option 1: {{Name}} (Recommended)
|
|
|
|
{{Step-by-step instructions.}}
|
|
|
|
```{{language}}
|
|
{{code example}}
|
|
```
|
|
|
|
### Option 2: {{Alternative}}
|
|
|
|
{{When Option 1 doesn't apply.}}
|
|
|
|
```{{language}}
|
|
{{code example}}
|
|
```
|
|
|
|
## Trade-offs
|
|
|
|
| Approach | Pros | Cons |
|
|
|----------|------|------|
|
|
| Option 1 | {{pros}} | {{cons}} |
|
|
| Option 2 | {{pros}} | {{cons}} |
|
|
|
|
## Edge Cases
|
|
|
|
- {{edge case and how to handle it}}
|
|
|
|
## Related
|
|
|
|
- {{link to official docs}}
|