Agent Plugins Marketplace
All plugins

loanword

v0.1.2

Your own Quizlet and Duolingo, built from your working Claude Code sessions: the words you actually reached for become flashcards. Study them whenever it suits you — at the airport, on the train, at home, or in the status-line ticker while you keep coding. FSRS scheduling, and nothing ever leaves your machine.

Claude Code3 Skills

By MarcSkyLicense: MIT3 GitHub starsUpdated 2 weeks ago

Directory evidence

Runtimes
Claude Code
Parsed components
3 skill or MCP entries
Source updated
Sep 8, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install loanword for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install loanword@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/MarcSky/loanword

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

loanword/
├── .claude-plugin/plugin.json
├── skills/start/SKILL.md
├── skills/stats/SKILL.md
└── skills/ticker/SKILL.md

Included Skills3

startskills/start/SKILL.md

Open the Loanword trainer — FSRS flashcard review in the browser at localhost:4747. Use when the user asks to review vocabulary, practise, or open the trainer.

statsskills/stats/SKILL.md

Show Loanword progress — card count, how many are learned, the streak, and the hardest words. Use when the user asks about their language-learning progress.

tickerskills/ticker/SKILL.md

A vocabulary widget inside Claude Code — one card at a time in the status line under the prompt, the weakest words of the open deck, a new one every few seconds, so a working session teaches you words while you work. Use when the user asks for words in the status line, a vocabulary ticker, or to turn it off.

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "loanword",
  "displayName": "Loanword",
  "version": "0.1.2",
  "description": "Your own Quizlet and Duolingo, built from your working Claude Code sessions: the words you actually reached for become flashcards. Study them whenever it suits you — at the airport, on the train, at home, or in the status-line ticker while you keep coding. FSRS scheduling, and nothing ever leaves your machine.",
  "author": {
    "name": "MarcSky",
    "url": "https://github.com/MarcSky"
  },
  "repository": "https://github.com/MarcSky/loanword",
  "license": "MIT",
  "keywords": [
    "claude-code",
    "claude-code-plugin",
    "language-learning",
    "vocabulary",
    "flashcards",
    "spaced-repetition",
    "fsrs",
    "srs",
    "anki",
    "quizlet",
    "duolingo",
    "cefr",
    "local-first",
    "privacy"
  ],
  "userConfig": {
    "native_lang": {
      "type": "string",
      "title": "Native language",
      "description": "The language you write prompts in (ISO code: es, pt, de, uk…)",
      "default": "es",
      "required": true
    },
    "target_lang": {
      "type": "string",
      "title": "Target language",
      "description": "The language you are learning (en, de, ja…)",
      "default": "en",
      "required": true
    },
    "mode": {
      "type": "string",
      "title": "Where words come from",
      "description": "active — your prompts only (how to say what you meant); passive — assistant replies only (new words from context); both — either",
      "default": "both"
    },
    "daily_limit": {
      "type": "number",
      "title": "New cards per day",
      "description": "Cap on new cards per day. The FSRS review queue is not limited by this number",
      "default": 15,
      "min": 3,
      "max": 100
    },
    "auto_build": {
      "type": "boolean",
      "title": "Make cards automatically",
      "description": "Offer to build cards at the end of a session once the queue holds 10 or more records",
      "default": false
    },
    "level": {
      "type": "string",
      "title": "Skip words below this level",
      "description": "A2/B1/B2/C1 — words below this level never become cards. Empty means no level filter",
      "default": ""
    },
    "peek": {
      "type": "boolean",
      "title": "Show a card while Claude works",
      "description": "Print one flashcard into the session while you wait for an answer. Nothing is graded — it is a glance, not a test",
      "default": false
    },
    "peek_pick": {
      "type": "string",
      "title": "Which words to show",
      "description": "Comma-separated, any mix of: starred, slipping, leech, new, and the levels A1 A2 B1 B2 C1 C2. States are combined, levels narrow the result. Example: starred,slipping,B1,B2. Empty means every card",
      "default": ""
    },
    "peek_every": {
      "type": "number",
      "title": "Minutes between cards",
      "description": "At most one card per this many minutes, however many prompts you send",
      "default": 15,
      "min": 1,
      "max": 120
    },
    "ticker_every": {
      "type": "number",
      "title": "Seconds a word stays in the status line",
      "description": "How long one word stays in the status line ticker (/loanword:ticker). The status line cannot redraw faster than its own refreshInterval",
      "default": 30,
      "min": 5,
      "max": 300
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[loanword on Agent Plugins Marketplace](https://pluginsmp.com/plugins/loanword)