modules/home/programs/cli-agents/shared/skills/hashcards/SKILL.md
Plain-text flashcard system using FSRS spaced repetition. Use when 'hashcards' is explicitly mentioned — for creating cards, managing decks, running reviews, or scripting card generation.
npx skillsauth add not-matthias/dotfiles-nix hashcardsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Hashcards is a plain-text, Rust-based flashcard system using the FSRS algorithm. Cards are Markdown files identified by content hash — editing a card resets its review progress.
Q: What is the capital of France?
A: Paris
C: The capital of France is [Paris].
Multiple deletions in one card generate multiple review items:
C: [Paris] is the capital of [France].
Escape literal brackets with backslash: \[not a deletion\].
Use --- between cards for visual organization (optional, ignored by parser).
$E = mc^2$, display $$\int_0^1 x\,dx$$ (relative paths)+++
deck = "physics"
+++
Q: What is Newton's second law?
A: F = ma
hashcards drill [DIRECTORY] # Start review session (web UI on localhost:8000)
hashcards drill --host 0.0.0.0 # Bind to all interfaces
hashcards stats # Collection statistics as JSON
hashcards check # Verify collection integrity
hashcards orphans # Manage deleted cards still in database
hashcards export # Export collections as JSON
--host <addr> — Bind address (default: 127.0.0.1)Four levels: Forgot / Hard / Good / Easy (keyboard shortcuts available in web UI).
Sibling burial: when a cloze card generates multiple items, reviewing one buries the others to prevent spoilers.
.md filesdeck field to group cards by topichashcards check periodically to catch corrupt or malformed cardshashcards stats to track review load and identify struggling decksdocumentation
Save notes, journal entries, and research to the personal-notes Obsidian vault (personal-vault-v2). Use when the user asks to 'save note', 'save to notes', 'write to personal notes', 'save to daily notes', 'note this down', or wants to persist findings/analysis to their personal vault.
documentation
Use whenever the user asks to address, fix, resolve, review, or respond to pull-request comments or review feedback.
development
Apply Not Matthias's Rust-first personal coding style. Use whenever the user explicitly asks to apply or review their code style, make Rust match their preferences, perform a style pass, or simplify/refactor according to their conventions. Inspect only task-touched code, honor local project conventions first, and make only safe opt-out style edits.
development
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for code patterns, find specific language constructs, or locate code with particular structural characteristics.