π¦ ClawHub
The Spaced Repetition Systems for Agents
by @cheanus
Use when running Spaced Repetition Systems for AI Agents (SRSA) daily review sessions, grading cards with again/hard/good/easy, and proposing explicit memory...
TERMINAL
clawhub install srsaπ About This Skill
name: srsa-review description: Use when running Spaced Repetition Systems for AI Agents (SRSA) daily review sessions, grading cards with again/hard/good/easy, and proposing explicit memory add/delete/update actions after each review.
SRSA Review Skill
Purpose
Use SRSA's command-line workflow to drive efficient agent (you) reviews and turn each review result into actionable memory correction tasks.Concept Boundary
card and review commands in this skill.What cards need to be generated?
Command Cheat Sheet
# Print total cards, today's review progress, future due cards and average retrievability
uv run python scripts/main.py status
Create a new card
uv run python scripts/main.py card new -q "question" -a "answer"
Override an existing card
uv run python scripts/main.py card override [CARD_ID] -q "question" -a "answer"
Remove a card
uv run python scripts/main.py card rm [CARD_ID]
Get a question and its CARD_ID
uv run python scripts/main.py review get-question
Get the answer and CARD_ID of the current question
uv run python scripts/main.py review get-answer
Rate the review result, then print historical accuracy, today's review progress and retrievability change
uv run python scripts/main.py review rate [again|hard|good|easy]
Review Loop
Follow this sequence strictly. Do not skip steps:1. review get-question
2. The agent answers from its own memory first (do not view the answer yet).
3. review get-answer
4. Compare with the answer, then self-grade with again/hard/good/easy.
5. review rate [RATING]
6. Use the output's historical correctness and remaining progress to apply the reflection template.
7. Continue to the next card until there are no due cards or the user asks to stop.
State Constraints
rate, running get-question again will repeat the previous card.get-answer before get-question returns an error.rate before get-answer returns an error.Rating Rules
Reflection Template
After each rating, unless the self-rating is easy, output reflection using this template:1. Conclusion for this card
2. Update your memory system (explicit action required)
3. Challenge the card (optional)
4. Next step
Output Discipline
get-question stage, focus only on the prompt.get-answer stage, focus only on the reference answer.rate stage, do scoring and reflection only; do not rewrite the full question.End Conditions
End the review when any one condition is met:Recovery Rules
card override [CARD_ID] ... to revise content
- card rm [CARD_ID] to remove an invalid card