deckhand
v0.1.0Deckhand connects your AI assistant to your live Anki collection so it can see your decks, turn your sources into well-made cited cards, and help you fix weak ones — with you approving every change.
by BentowareAGPL-3.0-or-later4updated 1 month ago
Source
git clone https://github.com/bentoware/deckhandClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/deckhand/SKILL.md└── .mcp.json
Skills1
Deckhand helps users reach Anki and study goals through the live Anki runtime: understand intent, create cards, check card quality, fix weak cards and leeches, organize decks/tags, guide due-card study, and make safe tradeoffs for speed, drafts, or breadth. Alias triggers: Deckhand, Anki, flashcards, cards, notes, decks, PDF to Anki, slides to Anki, med Anki, language learning, weak cards, leeches, review queue, due cards, card quality.
MCP servers1
- url
- http://127.0.0.1:28765/mcp
Manifests2
{
"name": "deckhand",
"version": "0.1.0",
"description": "Deckhand connects your AI assistant to your live Anki collection so it can see your decks, turn your sources into well-made cited cards, and help you fix weak ones — with you approving every change.",
"author": {
"name": "Bentoware",
"url": "https://github.com/bentoware/deckhand"
},
"homepage": "https://github.com/bentoware/deckhand",
"repository": "https://github.com/bentoware/deckhand",
"license": "AGPL-3.0-or-later",
"keywords": [
"deckhand",
"anki",
"mcp",
"flashcards",
"addon",
"automation",
"runtime",
"agent"
],
"skills": "skills",
"interface": {
"displayName": "Deckhand",
"shortDescription": "Your AI study partner inside Anki",
"longDescription": "Deckhand lets your assistant see your real Anki collection — what's due, what's leeching, what that half-finished note says — and help you act on it. Turn PDFs, lectures, and notes into atomic, cited flashcards; rescue weak cards; clean up tags and decks. Every change is previewed before it touches your collection.",
"developerName": "Bentoware",
"category": "Productivity",
"capabilities": [
"Read",
"Write"
],
"websiteURL": "https://github.com/bentoware/deckhand",
"defaultPrompt": [
"Turn this PDF into well-cited Anki cards",
"Find my leeches and help me rewrite them",
"What's due in my decks today?"
],
"brandColor": "#0f766e"
}
}{
"name": "deckhand",
"description": "Deckhand connects your AI assistant to your live Anki collection so it can see your decks, turn your sources into well-made cited cards, and help you fix weak ones — with you approving every change.",
"author": {
"name": "Bentoware",
"url": "https://github.com/bentoware/deckhand"
},
"homepage": "https://deckhandforanki.com",
"repository": "https://github.com/bentoware/deckhand",
"license": "AGPL-3.0-or-later",
"keywords": [
"deckhand",
"anki",
"mcp",
"flashcards",
"addon",
"automation",
"runtime",
"agent"
],
"mcpServers": {
"deckhand": {
"type": "http",
"url": "http://127.0.0.1:28765/mcp"
}
}
}