| name | repo-recap |
| description | Generate a project recap: what is this repo, what are the main components, what is the current state of work. |
| user-invocable | true |
Repo Recap Skill
Protocol
Generate a structured recap of the repository by reading:
context/architecture.md — structure and services
context/tasks/todo.md — current work
context/tasks/lessons.md — recent lessons
git --no-pager log --oneline -10 — recent history
git --no-pager status --short — current state
Output Format
# Repo Recap — [project name]
## What is this?
[2-3 sentences describing the project]
## Architecture
| Component | Purpose |
|-----------|---------|
| ... | ... |
## Current Work
[Active tasks from todo.md]
## Recent History
[Last 5 commits]
## Known Issues / Lessons
[Last 3 lessons from lessons.md]
## Health
- Build: [unknown/passing/failing]
- Tests: [unknown/passing/failing]
- Open todos: [count]