Our review
Displays the current state of a project's knowledge base and recent learnings extracted by the AI.
Strengths
- Provides a quick overview of accumulated knowledge
- Shows learning mode status and per-category statistics
- Lists the last 5 entries for immediate insight
Limitations
- Only works if knowledge files exist and are in the expected format
- Read-only; does not modify the knowledge base
- Relies on frontmatter entry counts or header parsing
When you want to check what the AI has learned about the project or the status of learning mode.
When you want to extract new knowledge (use /learn instead).
Security analysis
SafeThe skill only reads local project files (knowledge/state.json and markdown files) and displays formatted information. It does not execute any commands, write files, or communicate externally, posing no security risk.
No concerns found
Examples
What has the AI learned about this project? Show the knowledge base status.Is learning mode on? Show me the knowledge base.Show me the most recent learnings and decisions from the knowledge base.name: knowledge description: Display knowledge base status and recent learnings user_invokable: true
Knowledge
Display the current state of the project's knowledge base and recent learnings.
What This Does
Shows:
- Learning mode status (on/off)
- Knowledge base statistics (entry counts per category)
- Recent learnings extracted
Instructions
- Read
knowledge/state.jsonfor learning mode status - Read each knowledge file and count entries:
knowledge/learnings/patterns.mdknowledge/learnings/quirks.mdknowledge/learnings/decisions.md
- Extract recent entries (last 5) from learnings files
- Format and display
Output Format
+---------------------------------------------------+
| Project Knowledge Base |
+---------------------------------------------------+
Learning Status
---------------------------------------------------
Mode: ON (since 2026-01-08 14:00)
Last Extraction: 5 minutes ago
Extractions This Session: 3
** Remember to run /learn before ending your session **
Knowledge Statistics
---------------------------------------------------
Learnings:
- Patterns: 8 entries
- Quirks: 3 entries
- Decisions: 5 entries
- Total: 16 insights
Recent Learnings
---------------------------------------------------
[Pattern] "Use async/await for API calls in this codebase"
Discovered: 2026-01-08 | Confidence: high
[Quirk] "Auth module uses non-standard token format"
Discovered: 2026-01-07 | Confidence: high
[Decision] "Chose Redis over in-memory cache for session storage"
Made: 2026-01-06 | Confidence: high
Commands
---------------------------------------------------
/learn - Extract insights now
/learn-on - Enable learning mode reminder
/learn-off - Disable learning mode reminder
When Knowledge Base is Empty
+---------------------------------------------------+
| Project Knowledge Base |
+---------------------------------------------------+
Learning Status
---------------------------------------------------
Mode: OFF
No extractions yet
Knowledge Statistics
---------------------------------------------------
Knowledge base is empty.
Get Started
---------------------------------------------------
Use /learn to extract insights from your current session.
Use /learn-on to enable learning mode.
The knowledge base will grow as you work, capturing:
- Patterns that work well in this project
- Quirks and gotchas to remember
- Decisions and their rationale
Steps
- Read
knowledge/state.json - Read frontmatter from each knowledge file to get entry counts
- Parse recent entries from learnings files (look for
## Pattern:,## Quirk:,## Decision:headers) - Format and display the summary
- If files are missing or empty, show the "empty" state
Notes
- Entry counts come from frontmatter
entry_countfield or by counting##headers - Recent learnings are shown most recent first (by discovered/made date)
- This is a read-only command - it doesn't modify any files
- When learning mode is ON, show a reminder to run /learn before ending the session
API Documentation Generator
Documentation
Automatically generates OpenAPI/Swagger API documentation.
Technical Writer
Documentation
Writes clear technical documentation following top style guides.
Technical Documentation Architect
Documentation
Analyzes existing codebases to produce comprehensive technical documentation (10-100+ pages), including architecture overviews, design decisions, and troubleshooting guides. Best used for system documentation, architecture guides, or technical deep-dives.