compound-docs
Document solved problems for knowledge persistence
$ Installer
git clone https://github.com/salavender/antigravity-compound-engineering-plugin /tmp/antigravity-compound-engineering-plugin && cp -r /tmp/antigravity-compound-engineering-plugin/skills/compound-docs ~/.claude/skills/antigravity-compound-engineering-plugin// tip: Run this command in your terminal to install the skill
SKILL.md
name: compound-docs description: Document solved problems for knowledge persistence
Compound Documentation Skill
Manages solution documentation in docs/solutions/ for knowledge persistence across sessions.
Overview
When you solve a problem, document it so the solution can be found and reused later.
What do you want to do?
- Document a solution â Use
/compoundworkflow - Find existing solutions â See "Searching Solutions" below
- Promote to pattern â See "Pattern Promotion" below
- Validate schema â See "YAML Validation" below
Instrumentation
# Log usage when using this skill
./scripts/log-skill.sh "compound-docs" "manual" "$$"
Searching Solutions
# Search by keyword
grep -r "keyword" docs/solutions/
# Search by tag
grep -l "tags:.*performance" docs/solutions/**/*.md
# Search by problem type
ls docs/solutions/performance-issues/
Pattern Promotion
When an issue occurs 3+ times:
-
Search for similar solutions:
grep -r "similar terms" docs/solutions/ -
Add to critical patterns:
# Edit docs/solutions/patterns/critical-patterns.md -
Format:
### Pattern #{N}: {Name} **Problem:** {What goes wrong} **â WRONG:** ```code {incorrect}â CORRECT:
{correct}
YAML Validation
All solutions must have valid frontmatter:
---
date: "YYYY-MM-DD"
problem_type: "{from schema.yaml}"
severity: "critical|high|medium|low"
symptoms:
- "symptom 1"
root_cause: "{from schema.yaml}"
tags:
- tag1
---
See docs/solutions/schema.yaml for valid enum values.
Documenting Failures & Learnings
When documenting solutions, capture the full journey:
What to Include
- â Failed attempts with explanations
- â Incorrect assumptions and corrections
- â Key insights from mistakes
- â Course corrections and why
- â Time investment (helps prioritize future similar issues)
Example Pattern
## Investigation Steps
| Attempt | Hypothesis | Result |
|---------|------------|--------|
| 1. Check API logs | API might be timing out | â No timeouts found |
| 2. Review database queries | N+1 query suspected | â Queries were optimized |
| 3. Check cache invalidation | Cache might be stale | â
Found cache not clearing |
## Lessons Learned
### Mistakes Made
- **Assumption:** Assumed the API was the bottleneck
- **Why wrong:** Didn't check cache layer first
- **Correction:** Should always check cache before API
### Key Breakthrough
- **Insight:** Realized cache invalidation logic was only running on UPDATE, not DELETE
- **Impact:** Led directly to the solution
[!TIP] Document the journey, not just the destination. Future readers learn from understanding WHY failed approaches didn't work.
References
- Schema:
docs/solutions/schema.yaml - Template:
docs/solutions/templates/solution-template.md - Patterns:
docs/solutions/patterns/critical-patterns.md
Repository

salavender
Author
salavender/antigravity-compound-engineering-plugin/skills/compound-docs
29
Stars
7
Forks
Updated1w ago
Added1w ago