bootstrap-wiki

bootstrap-wiki is a skill for Claude Code, Codex from eduardoabreu81/livewiki. It costs 39 tokens per session (794 once invoked), scanned A, original, MIT.

A procedure for creating a repository’s first livewiki documentation through a persistent task queue. It is intended for repositories with no wiki pages yet.

In plain words
What is it for?
Use it to build an initial wiki, process queued documentation tasks, read the listed source files, and continue from saved checkpoints after a disconnect.
Why use it?
It breaks a large initial documentation job into bounded batches, so work can pause safely and resume without losing its place.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build an initial wiki, process queued documentation tasks, read the listed source files, and continue from saved checkpoints after a disconnect.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eduardoabreu81/livewiki/bootstrap-wiki
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eduardoabreu81/livewiki --skill bootstrap-wiki
Clone the repo
git clone --depth 1 https://github.com/eduardoabreu81/livewiki

Made for: Claude Code, Codex.

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 bootstrap-wiki

README.md
[![agentmods](https://agentmods.dev/badge/skills/eduardoabreu81/livewiki/bootstrap-wiki.svg)](https://agentmods.dev/skills/eduardoabreu81/livewiki/bootstrap-wiki)
Your own site
<a href="https://agentmods.dev/skills/eduardoabreu81/livewiki/bootstrap-wiki"><img src="https://agentmods.dev/badge/skills/eduardoabreu81/livewiki/bootstrap-wiki.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 794 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.00039 $0.00794
Opus 5 $0.00019 $0.00397
Sonnet 5 $0.00008 $0.00159
Haiku 4.5 $0.00004 $0.00079

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

Security

Grade A, and why

bootstrap-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 7d 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.

packages/cli/skills/bootstrap-wiki/SKILL.md · 83 lines

How it starts

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

bootstrap-wiki

Build the repository's initial wiki through livewiki's persistent MCP task queue. Use this skill when livewiki status reports no documented pages or when the user explicitly asks for the initial wiki.

Do not use this skill for documentation debt created by a completed code change. Once a wiki exists, use the document-as-you-go skill for that short, reactive maintenance loop.

Work in bounded batches

A large repository can produce dozens or hundreds of tasks. Choose a bounded batch that fits comfortably in the remaining context, complete only that batch, and report progress to the user before continuing.

Stopping midway is safe. The queue and its checkpoints are persistent. The next call to livewiki_next_task resumes the same run, and an in-flight task is offered again after a disconnect. Never trade accuracy for draining the whole queue in one context window.

Bootstrap loop

Repeat these steps for the current bounded batch:

  1. Call livewiki_next_task.
  2. If it returns a task, note its taskId, kind, targetPath, complete closedKeys, sourcePaths, format contract, validation data, and attempt budget.
  3. Read the returned source paths with your own file-reading tools. The task provides paths rather than source bytes; inspect the repository before writing.
  4. Write the complete Markdown page required by the format contract. Treat the task's closed list as the only allowed source of canonical keys.
  5. Call livewiki_write_doc with the exact path, complete content, and returned taskId.
  6. If the write is rejected, use the returned anchor, section, or contract diagnostics to correct it. Attempts are bounded by the server. If a task is exhausted and becomes failed, report it and continue with livewiki_next_task; do not loop on it.
  7. Continue until the current batch is complete or the remaining context says to stop.

After each batch, tell the user the run ID, how many tasks completed or failed, the current task if one remains in flight, and that another invocation can resume safely.

Read the full file on GitHub · 83 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. 7d ago First seen · 83 lines · 39 tokens per session scan A 07958ec8dab0

Subscribe to this mod's changes

bootstrap-wiki is a skill published in the GitHub repository eduardoabreu81/livewiki (0 stars, last pushed 2d ago), licensed MIT. It adds 39 tokens to every session and 794 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories

docpull-research

Use the docpull MCP tools (listindexed, ensuredocs, grepdocs, readdoc, fetchurl) to ground answers in real web/source material when the user asks about a specific library, framework, API, vendor, product page, website, or public source URL. Activate on questions like "how do I X in [library]", "what's the API for…

raintree-technology/docpull · 115 tokens

ingest

Populate the gnosis-mcp knowledge base — from local files, git history, or a crawled website. Handles the full matrix of flags (--force, --prune, --wipe, --embed, --include-crawled) in one place.

nicholasglazer/gnosis-mcp · 54 tokens

setup

First-time setup wizard for Gnosis MCP. Install, init the database, ingest a docs folder, wire your editor — in that order.

nicholasglazer/gnosis-mcp · 30 tokens

status

Verify gnosis-mcp server connectivity, schema integrity, and corpus health. Use when MCP calls fail, return empty, or return unexpected data.

nicholasglazer/gnosis-mcp · 31 tokens

tune

Find the chunk-size and retrieval config that maximizes quality on YOUR corpus. Sweeps chunk sizes, runs a golden-query set, reports nDCG / MRR / Hit@5. Use after first ingest or whenever your corpus changes shape significantly.

nicholasglazer/gnosis-mcp · 53 tokens

eval

Measure retrieval quality on your corpus — Hit@5, MRR, nDCG@10, Precision@5. Thin wrapper around gnosis-mcp eval with regression tracking against a saved baseline, plain-English interpretation, and tuning pointers when numbers look off. Use after every ingest or config change.

nicholasglazer/gnosis-mcp · 64 tokens