update-docs — community update-docs, edictum, community, ide skills

v1.0.0

About this Skill

Perfect for Code Maintenance Agents needing automated documentation updates to ensure runtime safety and accuracy. Sync documentation with code changes. Use on every PR that touches library code to keep docs accurate and consistent.

acartag7 acartag7
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Maintenance Agents needing automated documentation updates to ensure runtime safety and accuracy. Sync documentation with code changes. Use on every PR that touches library code to keep docs accurate and consistent.

Core Value

Empowers agents to maintain accurate documentation in sync with code changes, utilizing git diff and mapping changes to affected docs, ensuring runtime safety and preventing errors through comprehensive content analysis.

Ideal Agent Persona

Perfect for Code Maintenance Agents needing automated documentation updates to ensure runtime safety and accuracy.

Capabilities Granted for update-docs

Automating documentation updates during pull requests
Detecting changes in library code and updating affected docs
Generating documentation reports for code reviews

! Prerequisites & Limits

  • Requires git repository access
  • Limited to library code changes
  • Needs .docs-style-guide.md and CLAUDE.md for reference

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is update-docs?

Perfect for Code Maintenance Agents needing automated documentation updates to ensure runtime safety and accuracy. Sync documentation with code changes. Use on every PR that touches library code to keep docs accurate and consistent.

How do I install update-docs?

Run the command: npx killer-skills add acartag7/edictum/update-docs. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for update-docs?

Key use cases include: Automating documentation updates during pull requests, Detecting changes in library code and updating affected docs, Generating documentation reports for code reviews.

Which IDEs are compatible with update-docs?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for update-docs?

Requires git repository access. Limited to library code changes. Needs .docs-style-guide.md and CLAUDE.md for reference.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add acartag7/edictum/update-docs. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use update-docs immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

update-docs

Install update-docs, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Update Docs

Ensures documentation stays in sync with code changes. Run before or during every PR that touches library code.

Before anything else

  1. Read CLAUDE.md — understand boundaries (core vs server), dropped features, and session model
  2. Read .docs-style-guide.md — binding terminology reference

Step 1: Detect what changed

bash
1git diff main...HEAD --name-only

Map changes to affected docs:

Source fileAffected doc pages
src/edictum/pipeline.py, contracts.pyconcepts/how-it-works.md, architecture.md
src/edictum/yaml_engine/contracts/yaml-reference.md, contracts/operators.md
src/edictum/adapters/*.pycorresponding adapters/*.md page
src/edictum/session.py, limits.pyconcepts/contracts.md, architecture.md
src/edictum/audit.py, telemetry.pyaudit/sinks.md, audit/telemetry.md
src/edictum/cli/cli.md
src/edictum/envelope.pyconcepts/principals.md, architecture.md
pyproject.toml (version)install commands across docs
src/edictum/__init__.py (API)quickstart.md, all adapter pages

If no library code changed (docs-only PR), skip to Step 4.

Step 2: Read the changed code

For each changed file:

  1. Read the file and the diff (git diff main...HEAD -- <file>)
  2. Identify: new public APIs, changed signatures, new classes, removed exports, changed behavior

Step 3: Update affected docs

For each affected page:

  1. Read the current doc
  2. Skip if already correct
  3. Update code examples, descriptions, YAML examples
  4. Verify "When to use this" section exists (see .docs-style-guide.md page structure pattern step 3):
    • Every page MUST have a ## When to use this section after the opening/example and before the main content
    • If missing, add one with: 2-4 concrete scenarios (real situations, not abstract descriptions), user personas who benefit, and how this feature relates to other Edictum features
    • If new code adds a feature, update the scenarios to cover the new capability
    • Read the ACTUAL SOURCE CODE for the feature before writing scenarios — reference real method names, real classes, real behavior
  5. Verify terminology against .docs-style-guide.md:
    • "contracts" not "policies" or "rules"
    • Use denied (see .docs-style-guide.md for banned alternatives)
    • Use enforces (not "governs")
    • Use pipeline (not "engine")
    • Use tool call (not "function call")
    • Use adapter (not "integration" or "plugin")
    • Use observe mode (see .docs-style-guide.md for banned alternatives)
    • Use finding / findings (not "alert")
  6. Verify core vs server boundaries against CLAUDE.md:
    • All contract evaluation (pre, post, session, sandbox) is core
    • StdoutAuditSink, FileAuditSink, OTel are core
    • Production approval workflows (ServerApprovalBackend) require the server
    • Centralized audit dashboards require the server
    • Multi-process session tracking requires the server
    • MemoryBackend is the only local StorageBackend (no Redis/DB)
    • No references to dropped features or ee/ tier

Step 3.5: Update repo-level markdown files

These files live outside docs/ but track code changes:

  1. CHANGELOG.md — if the PR introduces user-visible changes (fixes, features, breaking changes), add an entry under the current version heading. Use the existing entry format. Keep descriptions neutral (no exploit details for security fixes).
  2. CLAUDE.md "What's Shipped" section — if this is a new version, add a one-line entry to the version history list matching the existing format.

Step 4: Update README if needed

If public API, install extras, framework support, or version changed:

  1. Read README.md
  2. Update affected sections
  3. Ensure README matches docs/index.md positioning

Step 5: Verify

bash
1pytest tests/test_docs_sync.py -v

Step 6: Report

Summarize:

  • Which code files changed
  • Which doc pages were updated (and what changed)
  • Which doc pages were checked but needed no changes
  • Build verification result

Rules

  • Don't rewrite for the sake of rewriting. Only update what the code change actually affects.
  • Don't add features that don't exist. If code was added but not released, note it as unreleased.
  • Don't reference dropped features. No Redis/DB StorageBackend, no reset_session().
  • Preserve the voice. Match existing style — problem first, short paragraphs, code examples.
  • Check cross-links. Verify links in updated pages still work.
  • README and homepage must stay aligned. If you update one, check the other.

Related Skills

Looking for an alternative to update-docs or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer