Claude Code
The Claude Code integration adds four slash-command skills for managing flashcards directly in your terminal, plus automatic context loading when you ask about spaced repetition.
Option A: CLI + skills
Section titled “Option A: CLI + skills”Install agent skills with one command:
npx streamboard skill installSkills are immediately available as slash commands — no auth needed until first use.
Option B: MCP only
Section titled “Option B: MCP only”Add the following to your project’s .mcp.json:
{ "mcpServers": { "streamboard": { "type": "http", "url": "https://mcp.usestreamboard.com/mcp" } }}Or run:
claude mcp add streamboard --transport http https://mcp.usestreamboard.com/mcpAuthenticate via OAuth on first use.
Skills
Section titled “Skills”/streamboard:review [deck-slug]
Section titled “/streamboard:review [deck-slug]”Start an interactive spaced-repetition review session. Claude shows card fronts, waits for your answer, then reveals the back and tracks your results.
- Reviews up to 20 due cards per session
- Tracks pass/fail and updates Leitner box numbers
- Provides memory aids for cards you get wrong
/streamboard:review javascript-closures/streamboard:create-deck <topic>
Section titled “/streamboard:create-deck <topic>”Create a new deck and optionally generate starter flashcards.
- Creates the deck with a title and description
- Generates 10–15 flashcards covering the topic
- Adds relevant tags to each card
/streamboard:create-deck "Rust Ownership"/streamboard:generate-cards <file> [deck-slug]
Section titled “/streamboard:generate-cards <file> [deck-slug]”Extract flashcards from source files, code, or documentation.
- Analyzes source material to identify key concepts
- For code: creates cards that test understanding of patterns and APIs
- For docs: extracts facts and procedures
- You review proposed cards before they’re created
- Sets
sourceNotereferencing the original file
/streamboard:generate-cards src/auth.ts auth-module/streamboard:study-summary
Section titled “/streamboard:study-summary”Display an overview of your study progress across all decks.
- Total decks, cards, and due cards
- Per-deck breakdown table
- Highlights the deck with the most due cards
- Suggests next steps
/streamboard:study-summaryAutomatic context
Section titled “Automatic context”When you ask about flashcards, spaced repetition, or the Leitner system, Claude Code automatically loads streamboard context — including Leitner box intervals, available tools, and data models — so it can give informed answers without you needing to invoke a skill.