Skip to content

Plugins

The marketplace ships eleven plugins. The spine is retrieval — a routing agent that picks and composes modalities — surrounded by plugins for orchestration, steering, verification and impact analysis, controlled runtime evidence, cross-session handoff, and authoring.

Start from the task

Use the cookbook for multi-plugin journeys, the security guide before enabling execution or retention, and troubleshooting for first-run and lifecycle work.

  • retrieval-core


    The spine: a retrieval-strategist agent + retrieval-strategy skill that choose and compose modalities. Other plugins depend on it.

    retrieval · shipped

  • code-search


    Lexical, structural, code-intelligence, structured-data, history, rewrite, metrics, and non-code doc search. Two skills split by corpus.

    retrieval · shipped

  • local-rag


    Local-first semantic RAG: a bin/rag CLI with a configurable Ollama endpoint, turbovec vectors, opt-in FTS5/BM25 reciprocal-rank fusion, and hybrid --allowlist retrieval.

    retrieval · shipped

  • obsidian


    Skill-only RAG bridge: turn a vault's graph and tags into a candidate set fed to local-rag.

    retrieval · shipped

  • plan-execute


    Plan-big / execute-small orchestration: a strong model plans and delegates token-heavy work to a cheaper executor.

    orchestration · shipped

  • context-steering


    Place guidance at the cheapest layer that still fires — memory, rules, skills, subagents, MCP servers, or hooks.

    steering · shipped

  • verify


    Read-only per-claim verification plus prospective change-impact and blast-radius analysis.

    verification · shipped

  • runtime-evidence


    Controlled runtime observation after static verification cannot settle a claim, using exact allowlisted command IDs and bounded artifacts.

    verification · shipped

  • context-handoff


    Manual-first, bounded task-state handoffs with a read-only compiler and deterministic provenance/freshness validation.

    continuity · shipped

  • memory


    Reviewed durable memories with provenance, cue anchors, freshness, supersession, and an optional project-isolated MemPalace provider.

    continuity · shipped

  • plugin-forge


    Author portable plugins with scaffolding, manifest/frontmatter checks, and a deterministic aggregate catalog discovery-quality gate.

    authoring · shipped

How they fit together

graph TD
    RC[retrieval-core<br/>routing agent + decision flow]
    CS[code-search]
    LR[local-rag]
    OB[obsidian]
    VF[verify]
    RE[runtime-evidence]
    CH[context-handoff]
    MM[memory]
    PE[plan-execute]
    CST[context-steering]
    PF[plugin-forge]

    CS -->|depends on| RC
    VF -->|depends on| RC
    RE -->|depends on| VF
    CH -->|depends on| VF
    MM -->|depends on| CH
    OB -->|feeds --allowlist| LR
    RC -.composes.-> CS
    RC -.composes.-> LR
    RC -.routes recall to.-> MM

    classDef spine fill:#4f46e5,stroke:#4338ca,color:#fff;
    class RC spine;
  • code-search and verify depend on retrieval-core.
  • runtime-evidence and context-handoff depend on verify, so installing either transitively pulls the spine.
  • memory depends on context-handoff, so it also pulls verify and the retrieval spine. Handoffs remain authoritative current task state; archived copies are historical evidence.
  • obsidian and local-rag pair: the bridge produces candidate note paths that feed local-rag's hybrid --allowlist search.
  • plan-execute, context-steering, and plugin-forge are independent — orchestration, steering, and authoring around the retrieval core. verify can optionally use plan-execute for broad read-only impact coverage, but does not depend on it.

Dependencies at a glance

Plugin Category Ships Depends on
retrieval-core retrieval agent + skill
code-search retrieval 2 skills + tool checker retrieval-core
local-rag retrieval bin/rag CLI + skill ollama + turbovec + SQLite FTS5 for --hybrid
obsidian retrieval skill only local-rag (runtime)
plan-execute orchestration skill + command + workflow + subagent
context-steering steering skill + examples
verify verification subagent + 2 skills + command retrieval-core
runtime-evidence verification skill + command + subagent + stdlib runner verifyretrieval-core
context-handoff continuity skill + 2 commands + subagent + stdlib validator verifyretrieval-core
memory continuity skill + 4 commands + stdlib adapter + opt-in Claude hooks context-handoffverifyretrieval-core; MemPalace optional
plugin-forge authoring skill + command + validators/tests