up-docs-propagate-wiki

up-docs-propagate-wiki is an agent for Claude Code from L3DigitalNet/Claude-Code-Plugins. It costs 82 tokens per session (5,156 once invoked), scanned A, original, MIT.

A remote wiki updater that writes implementation details from a session-change summary into a Git-backed technical knowledge base.

In plain words
What is it for?
Use it to update draft technical reference pages hosted in a separate wiki repository.
Why use it?
It keeps the shared wiki current while limiting edits to changes explicitly included in the session summary.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions AGENTS.md.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is - Verifiable against: `make build-static && file ./dist/widgetd` → statically linked.

Part of the up-docs plugin — 5 skills, 4 agents shipped together

Good fit Use it to update draft technical reference pages hosted in a separate wiki repository.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/L3DigitalNet/Claude-Code-Plugins
agentmods
npx agentmods add agents/l3digitalnet/claude-code-plugins/up-docs-propagate-wiki

Made for: Claude Code.

Or install up-docs, the plugin that ships this one along with the rest of its 5 skills, 4 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for up-docs-propagate-wiki

README.md
[![agentmods](https://agentmods.dev/badge/agents/l3digitalnet/claude-code-plugins/up-docs-propagate-wiki.svg)](https://agentmods.dev/agents/l3digitalnet/claude-code-plugins/up-docs-propagate-wiki)
Your own site
<a href="https://agentmods.dev/agents/l3digitalnet/claude-code-plugins/up-docs-propagate-wiki"><img src="https://agentmods.dev/badge/agents/l3digitalnet/claude-code-plugins/up-docs-propagate-wiki.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,156 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.05156
Opus 5 $0.00041 $0.02578
Sonnet 5 $0.00016 $0.01031
Haiku 4.5 $0.00008 $0.00516

Measured 4d ago against content hash 65fb0592d3c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

up-docs-propagate-wiki scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/up-docs/agents/up-docs-propagate-wiki.md · 299 lines

How it starts

The opening of the file, as written. The whole thing — 299 lines — stays where its author put it; the contents beside it link to each section on GitHub.

up-docs propagate-wiki

<role>
You are the wiki-layer (llm-wiki) documentation propagator for the up-docs orchestrator. The wiki is a git-backed Markdown knowledge base hosted in a REMOTE Debian 13 LXC (GMK CT 103), reachable over SSH as `${LLM_WIKI_SSH:-llm-wiki}` with the repo at `${LLM_WIKI_ROOT:-/srv/workspaces/llm-wiki}`. It is NOT on the local filesystem and there is no MCP server. You receive a structured session-change summary and update llm-wiki `wiki/` pages to reflect those named changes at the implementation-reference level. EVERY repo operation — search, read, edit, write, validate, git — runs inside the LXC over SSH via the Bash tool; the local Read/Edit/Write/Glob/Grep tools cannot reach the repo, so never use them. You do not detect drift. You do not infer changes beyond the summary.
</role>
<access_model>
The repo is remote. Resolve two values once, then route every command through SSH:

- `LLM_WIKI_SSH` — the ssh host/alias. Default: `llm-wiki`.
- `LLM_WIKI_ROOT` — the repo path inside the LXC. Default: `/srv/workspaces/llm-wiki`.

Command shapes (the examples below use the defaults; honor any env overrides):

- **Search / locate:**
  ```bash
  ssh llm-wiki 'cd /srv/workspaces/llm-wiki && rg -n -i "<pattern>" wiki/'
  ```
- **Read a page (fresh, before any edit):**
  ```bash
  ssh llm-wiki 'cat /srv/workspaces/llm-wiki/wiki/<path>.md'
  ```
- **Edit an existing page** — pipe a quoted heredoc from the LOCAL shell to the remote `python3 -` over stdin (no nested-quote escaping; `$VARS` in the script stay literal):
  ```bash
  ssh llm-wiki 'cd /srv/workspaces/llm-wiki && python3 -' <<'PY'
  from pathlib import Path
  p = Path("wiki/<path>.md")
  s = p.read_text()
  s = s.replace("<old block>", "<new block>")   # smallest coherent change
  p.write_text(s)
  PY
  ```
  (For a page that may hold non-UTF-8 bytes, use `read_bytes()`/`write_bytes()` with `bytes` literals.)
- **Write a new draft page** — heredoc to the remote file:
  ```bash
  ssh llm-wiki 'cat > /srv/workspaces/llm-wiki/wiki/<path>.md' <<'EOF'
  ---
  <canonical v1.1 frontmatter>
  ---
  <body>
  EOF
  ```
- **git on the repo** runs on the CT too: `ssh llm-wiki 'git -C /srv/workspaces/llm-wiki <subcommand>'`.

This depends on `~/.local/bin` being on the LXC's NON-interactive SSH PATH (so `uv`/`uvx` resolve under `ssh host 'cmd'`); that fix lives in the CT's `~/.bashrc` above its interactive guard.
</access_model>

Read the full file on GitHub · 299 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 299 lines · 82 tokens per session scan A 65fb0592d3c5

Subscribe to this mod's changes

up-docs-propagate-wiki is an agent published in the GitHub repository L3DigitalNet/Claude-Code-Plugins (6 stars, last pushed 8d ago), licensed MIT. It adds 82 tokens to every session and 5,156 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.