Agent skill
capture-learning
Analyze recent conversation context and capture learnings to project knowledge files (for project-specific insights) or skills/commands/subagents (for cross-project patterns). Use when the user asks to "capture this learning", "update the docs with this", "remember this for next time", "document this issue", "add this to CLAUDE.md", "save this knowledge", or "update project knowledge". Also triggers after resolving build/setup issues, discovering non-obvious patterns, or completing debugging sessions with valuable insights.
Install this agent skill to your Project
npx add-skill https://github.com/petekp/claude-code-setup/tree/main/skills/capture-learning
SKILL.md
Capture Learning
Analyze recent conversation context and capture learnings—either to project knowledge files or to skills/commands/subagents for cross-project reuse.
Core Workflow
Step 1: Analyze Recent Context
Review the current conversation to identify:
- Problem encountered - What went wrong or was confusing?
- Root cause - Why did it happen?
- Solution - How was it resolved?
- Prevention - How to avoid this in the future?
Extract concrete, actionable insights—not vague summaries.
Good learning:
When running `npm install` on Node 20+, the `--legacy-peer-deps` flag
is required due to React 18 peer dependency conflicts.
Bad learning:
Had some issues with npm install, fixed it eventually.
Step 2: Determine Learning Scope
Before deciding where to capture, ask: Is this learning project-specific or general?
| Scope | Characteristics | Capture Target |
|---|---|---|
| Project-specific | Involves this codebase's architecture, conventions, dependencies, or local setup | Project knowledge files (.claude/CLAUDE.md, .claude/docs/) |
| General | Applies across all projects—language patterns, framework best practices, tool usage, API quirks | Skills, commands, or subagents |
Decision questions:
- Would this help in other projects using the same language/framework?
- Is this a general technique vs. this repo's specific implementation?
- Does an existing skill already cover this domain?
Examples:
| Learning | Scope | Target |
|---|---|---|
"This repo uses ApiError class for error handling" |
Project-specific | .claude/CLAUDE.md |
"SwiftUI matchedGeometryEffect should only apply to background shapes, not content" |
General | swiftui-excellence skill |
"Run npm install --legacy-peer-deps for this project" |
Project-specific | .claude/CLAUDE.md |
"React Server Components can't use useState" |
General | react-component-dev skill or similar |
"The CI pipeline requires NODE_ENV=test" |
Project-specific | .claude/docs/setup.md |
"Playwright's page.waitForSelector times out silently without proper error handling" |
General | playwright-qa-tester agent or new skill |
If general: Navigate to the appropriate skill/command/subagent file and update it following its existing structure. Then confirm with user before saving.
If project-specific: Continue to Step 3.
Step 3: Scan for Knowledge Files (Project-Specific Learnings)
Detect existing knowledge files in the project's .claude/ directory:
# Primary targets (most common)
.claude/CLAUDE.md # Main project instructions
./CLAUDE.md # Root-level alternative
# Secondary targets
.claude/docs/*.md # Reference documentation
.claude/docs/**/*.md # Nested docs
# Tertiary (check but don't modify without explicit request)
.claude/plans/*.md # Planning docs (usually ephemeral)
Priority order for updates:
CLAUDE.md(project root or.claude/) - General learnings, setup issues.claude/docs/troubleshooting.md- If exists, for debugging insights.claude/docs/setup.md- If exists, for environment/build issues- Create new file only if user requests it
Step 4: Categorize the Learning
Determine which section the learning belongs in:
| Learning Type | Target Section | Example |
|---|---|---|
| Build/dependency issues | ## Build & Setup or ## Troubleshooting |
npm flags, version requirements |
| Environment setup | ## Environment or ## Prerequisites |
env vars, tool versions |
| Code patterns | ## Patterns or ## Conventions |
naming, architecture decisions |
| Known issues | ## Known Issues or ## Gotchas |
quirks, workarounds |
| Debugging insights | ## Debugging |
how to diagnose specific problems |
If the target section doesn't exist, propose creating it in a logical location.
Step 5: Draft the Update
Format the learning for documentation:
Structure for issue-based learnings:
### [Short descriptive title]
**Problem:** [What went wrong]
**Cause:** [Why it happened]
**Solution:** [How to fix/prevent]
Structure for pattern/convention learnings:
### [Pattern name]
[Brief description of when/why to use this pattern]
```code
[Example if applicable]
**Structure for quick tips:**
```markdown
- [Concise actionable tip]
Keep entries:
- Scannable - Use headers, bullets, code blocks
- Actionable - Provide concrete steps or commands
- Contextual - Explain why, not just what
Step 6: Present Changes for Confirmation
Before modifying any file, show the user:
- Target file - Which file will be updated
- Location - Which section (existing or new)
- Proposed content - Exact text to be added
- Diff preview - Show context around insertion point
Example confirmation prompt:
I'll add this to `.claude/CLAUDE.md` under "## Troubleshooting":
### Node 20 Peer Dependency Fix
**Problem:** `npm install` fails with peer dependency conflicts
**Cause:** React 18 has strict peer deps incompatible with some packages
**Solution:** Run `npm install --legacy-peer-deps`
Should I apply this update?
Wait for explicit user approval before writing.
Step 7: Apply the Update
After confirmation:
- Read the target file
- Find the appropriate insertion point
- Add the new content with proper formatting
- Write the updated file
- Confirm the update was applied
If creating a new section, place it logically:
- Setup/build sections near the top
- Troubleshooting sections near the bottom
- Patterns/conventions in the middle
File Detection Details
Scanning Strategy
# Check for .claude directory
ls -la .claude/ 2>/dev/null
# Find all markdown files in .claude
find .claude -name "*.md" -type f 2>/dev/null
# Check root for CLAUDE.md
ls CLAUDE.md 2>/dev/null
File Purpose Recognition
Infer file purpose from:
- Filename -
troubleshooting.md,setup.md,patterns.md - Location -
.claude/docs/for references,.claude/plans/for planning - Content - Existing section headers indicate file's scope
- CLAUDE.md special handling - Always a valid target for general learnings
When No Suitable File Exists
If .claude/CLAUDE.md doesn't exist:
- Check for
./CLAUDE.mdin project root - If neither exists, ask user:
- Create
.claude/CLAUDE.md? - Create a specific doc file (e.g.,
.claude/docs/troubleshooting.md)? - Skip capturing this time?
- Create
Learning Extraction Patterns
Build/Setup Issues
Look for conversation patterns:
- Error messages followed by resolution
- "Fixed by..." or "The solution was..."
- Version-specific workarounds
- Missing dependencies or configuration
Extract: The error, root cause, and fix command/steps.
Code Patterns
Look for:
- "This codebase uses..." discoveries
- Architecture decisions explained
- Naming conventions identified
- Framework-specific patterns
Extract: Pattern description and rationale.
Debugging Insights
Look for:
- Multi-step debugging processes
- Non-obvious root causes
- Diagnostic commands or techniques
- "The issue was actually..."
Extract: Symptoms, investigation steps, root cause.
Examples
Example 1: Build Issue
Context: Session involved fixing a failing build due to TypeScript version mismatch.
Captured learning:
### TypeScript Version Requirement
**Problem:** Build fails with "Cannot find module 'typescript'"
**Cause:** Project requires TypeScript 5.3+ but system has 5.0
**Solution:**
```bash
npm install typescript@^5.3.0 --save-dev
### Example 2: Environment Setup
**Context:** Session discovered required environment variables.
**Captured learning:**
```markdown
### Required Environment Variables
The following must be set in `.env.local`:
- `DATABASE_URL` - PostgreSQL connection string
- `NEXTAUTH_SECRET` - Generate with `openssl rand -base64 32`
- `NEXTAUTH_URL` - Set to `http://localhost:3000` for development
Example 3: Code Pattern
Context: Session uncovered project's error handling convention.
Captured learning:
### Error Handling Pattern
All API routes use the `ApiError` class for consistent error responses:
```typescript
throw new ApiError(404, "Resource not found");
The error handler middleware converts these to JSON responses.
## Edge Cases
### Multiple Learnings
If the session contains multiple distinct learnings:
1. List them for the user
2. Ask which to capture (or all)
3. Process each separately with confirmation
### Conflicting Information
If new learning contradicts existing documentation:
1. Show both versions
2. Ask user which is correct
3. Update or replace as directed
### Sensitive Information
Never capture:
- API keys, tokens, or secrets
- Passwords or credentials
- Personal information
- Internal URLs that shouldn't be documented
If a learning involves secrets, document the *pattern* without the actual values.
## Quick Reference
**Trigger phrases:** "capture this", "remember this", "update docs", "document this", "add to CLAUDE.md", "save this knowledge"
**First question:** Is this project-specific or general?
**Project-specific targets:** `.claude/CLAUDE.md` (primary), `.claude/docs/*.md` (secondary)
**General targets:** Skills (`~/.claude/skills/`), commands (`~/.claude/commands/`), subagents (plugin agents)
**Always confirm:** Show exact changes before writing
**Format:** Problem → Cause → Solution (for issues), Description → Example (for patterns)
## Additional Resources
### Reference Files
- **[references/section-templates.md](references/section-templates.md)** - Complete templates for common documentation sections (Troubleshooting, Build & Setup, Environment, Patterns, Known Issues, Debugging). Consult when creating new sections or structuring complex learnings.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
ubiquitous-language
Extract a DDD-style ubiquitous language glossary from the current conversation, flagging ambiguities and proposing canonical terms. Saves to UBIQUITOUS_LANGUAGE.md. Use when user wants to define domain terms, build a glossary, harden terminology, create a ubiquitous language, or mentions "domain model" or "DDD".
every-style-editor
This skill should be used when reviewing or editing copy to ensure adherence to Every's style guide. It provides a systematic line-by-line review process for grammar, punctuation, mechanics, and style guide compliance.
manage-codex
Autonomous Codex batch orchestrator. Use for "/manage-codex", "manage codex", "use codex", "dispatch to codex", or long-running Codex work.
seo-audit
When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," "SEO health check," "my traffic dropped," "lost rankings," "not showing up in Google," "site isn't ranking," "Google update hit me," "page speed," "core web vitals," "crawl errors," or "indexing issues." Use this even if the user just says something vague like "my SEO is bad" or "help with SEO" — start with an audit. For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup. For AI search optimization, see ai-seo.
agent-changelog
Compile an agent-optimized changelog by cross-referencing git history with plans and documentation. Use when asked to "update changelog", "compile history", "document project evolution", or proactively after major milestones, architectural changes, or when stale/deprecated information is detected that could confuse coding agents.
swift-apps
Build, refactor, review, and debug native Apple-platform software in Swift. Use when working on `.swift` files, SwiftUI views, Observation-based state, `@Bindable` and binding flow, SwiftData-backed UI, scenes and windows, search/navigation structures, UIKit/AppKit interop, Liquid Glass adoption, macOS-native UX, or SwiftUI performance/accessibility. Trigger on requests to create or polish iOS, iPadOS, macOS, or visionOS features; clean up SwiftUI view structure; diagnose jank or invalidation storms; review app quality; or make a feature feel like a good Apple-platform citizen.
Didn't find tool you were looking for?