From up-docs
Update Outline wiki documentation with implementation-level details from the current session. This skill should be used when the user runs /up-docs:wiki.
How this skill is triggered — by the user, by Claude, or both
Slash command
/up-docs:wikiThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Update the Outline wiki to reflect implementation-level changes from the current session.
Update the Outline wiki to reflect implementation-level changes from the current session.
Outline is the implementer's reference shelf. Content answers: does this help an implementer execute correctly without guessing?
Write in the wiki:
Do not write in the wiki:
Gather what changed:
git diff --stat HEAD~5 HEAD 2>/dev/null || git diff --stat
git log --oneline -10
Combine with conversation history to build a picture of what the session accomplished: services configured, code written, bugs fixed, infrastructure changed.
Read the project's CLAUDE.md for a ## Documentation section (or similar) that indicates which Outline collection or document area corresponds to this project.
If no explicit mapping exists, search Outline for the project name or key terms from the session:
search_documents(query: "<project name or service name>")
For each relevant page found, read its full content. Understand its current state before making changes.
If the collection has a structure, browse it:
get_collection_structure(id: "<collection_id>")
Identify pages that cover the topics affected by this session's work.
For each page that needs changes:
For new topics with no existing page, create a new document in the appropriate collection. Title it clearly and place it at the right level in the collection hierarchy.
Read ${CLAUDE_PLUGIN_ROOT}/templates/summary-report.md for the output format.
Emit the summary report using the Wiki (Outline) layer format. Every page examined gets a row, including pages where no changes were needed.
The live server or repository is ground truth. If the wiki says one thing and the actual configuration says another, update the wiki to match reality. The wiki may lag slightly, but when there's a conflict, what's actually running wins.
npx claudepluginhub l3digitalnet/claude-code-plugins --plugin up-docsWrites or updates documentation with code-verified accuracy for READMEs, guides, and API references. Use when creating, reviewing, or updating docs.
Generates wiki-style documentation for any codebase using phased workflow: repo scan, TOC design, doc generation, Mermaid validation, summary, and incremental updates. Useful for new projects, overviews, or post-change syncs.