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.
-
The spine: a
retrieval-strategistagent +retrieval-strategyskill that choose and compose modalities. Other plugins depend on it.retrieval· shipped -
Lexical, structural, code-intelligence, structured-data, history, rewrite, metrics, and non-code doc search. Two skills split by corpus.
retrieval· shipped -
Local-first semantic RAG: a
bin/ragCLI with a configurable Ollama endpoint, turbovec vectors, opt-in FTS5/BM25 reciprocal-rank fusion, and hybrid--allowlistretrieval.retrieval· shipped -
Skill-only RAG bridge: turn a vault's graph and tags into a candidate set fed to
local-rag.retrieval· shipped -
Plan-big / execute-small orchestration: a strong model plans and delegates token-heavy work to a cheaper executor.
orchestration· shipped -
Place guidance at the cheapest layer that still fires — memory, rules, skills, subagents, MCP servers, or hooks.
steering· shipped -
Read-only per-claim verification plus prospective change-impact and blast-radius analysis.
verification· shipped -
Controlled runtime observation after static verification cannot settle a claim, using exact allowlisted command IDs and bounded artifacts.
verification· shipped -
Manual-first, bounded task-state handoffs with a read-only compiler and deterministic provenance/freshness validation.
continuity· shipped -
Reviewed durable memories with provenance, cue anchors, freshness, supersession, and an optional project-isolated MemPalace provider.
continuity· shipped -
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-searchandverifydepend onretrieval-core.runtime-evidenceandcontext-handoffdepend onverify, so installing either transitively pulls the spine.memorydepends oncontext-handoff, so it also pullsverifyand the retrieval spine. Handoffs remain authoritative current task state; archived copies are historical evidence.obsidianandlocal-ragpair: the bridge produces candidate note paths that feedlocal-rag's hybrid--allowlistsearch.plan-execute,context-steering, andplugin-forgeare independent — orchestration, steering, and authoring around the retrieval core.verifycan optionally useplan-executefor 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 | verify → retrieval-core |
| context-handoff | continuity | skill + 2 commands + subagent + stdlib validator | verify → retrieval-core |
| memory | continuity | skill + 4 commands + stdlib adapter + opt-in Claude hooks | context-handoff → verify → retrieval-core; MemPalace optional |
| plugin-forge | authoring | skill + command + validators/tests | — |