Skip to content

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.

Install agent skills with one command:

Terminal window
npx streamboard skill install

Skills are immediately available as slash commands — no auth needed until first use.

Add the following to your project’s .mcp.json:

{
"mcpServers": {
"streamboard": {
"type": "http",
"url": "https://mcp.usestreamboard.com/mcp"
}
}
}

Or run:

Terminal window
claude mcp add streamboard --transport http https://mcp.usestreamboard.com/mcp

Authenticate via OAuth on first use.

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

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 sourceNote referencing the original file
/streamboard:generate-cards src/auth.ts auth-module

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-summary

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.