Skip to content

Integrations

The skill is the agent-side install — every agent in the support matrix gets you that. For teams on Paperclip, an optional human-side companion brings the wiki into view where operators already work.

Paperclip — paperclip-plugin-llm-wiki

An optional plugin at integrations/paperclip/plugin/ surfaces the wiki inside Paperclip's UI. Five surfaces, all read-only:

SurfaceWhat it does
Wiki sidebarBrowse the wiki by type, drill into pages, search across the whole wiki.
Full-page viewThe same browser at full width — for reading multiple linked pages.
Issue context tabTop wiki pages relevant to the open issue, ranked by BM25 over title + description.
Dashboard health widgetPage count, lint status (pass / warn / fail), link density, sharding-threshold messages.
wiki.query agent toolBM25 search via tool call — for HTTP-only adapters that don't run the skill directly.

Install (once v0.1 ships to npm):

bash
pnpm paperclipai plugin install paperclip-plugin-llm-wiki

INFO

The plugin is read-only by design and pairs with the skill. The skill writes the wiki on heartbeat; the plugin reads it from inside Paperclip. Editing still happens through agents on heartbeat or the operator's editor of choice (Obsidian, Claude Code, direct SSH).

INFO

The plugin stays lexical (BM25) — the Paperclip sandbox holds no API keys, so the opt-in hybrid embeddings described on the Search & retrieval page apply to the agent-side scripts only. Section-level search in the plugin mirrors the Python ranking exactly, so results don't drift between the plugin and the agent.

Further reading

  • Plugin user guide — install walkthrough, per-surface usage, configuration reference, agent-tool JSON shape, security notes, troubleshooting, FAQ.
  • Operator decision page — when to install the plugin vs. just the skill, first-time setup, multi-Company guidance.
  • v0.1 design spec — with verbatim references to the live Paperclip plugin SDK source.
  • Feasibility report — Phase 0 validation against the SDK.

Released under the MIT License.