update-docs — community update-docs, rss_feed, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

About this Skill

Perfect for Code Maintenance Agents needing automated documentation synchronization. rss_feed scraping

laceto laceto
[1]
[0]
Updated: 3/19/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
52
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Maintenance Agents needing automated documentation synchronization. rss_feed scraping

Core Value

Empowers agents to synchronize project documentation with the current codebase, ensuring up-to-date README.md and other crucial files using Markdown format, and supports feature additions or refactors through automated documentation updates.

Ideal Agent Persona

Perfect for Code Maintenance Agents needing automated documentation synchronization.

Capabilities Granted for update-docs

Synchronizing README.md after significant code changes
Updating documentation before a release or code review
Automating documentation updates after feature additions or refactors

! Prerequisites & Limits

  • Requires access to the codebase and documentation files
  • Limited to Markdown-based documentation files like README.md

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 synchronization. rss_feed scraping

How do I install update-docs?

Run the command: npx killer-skills add laceto/rss_feed/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: Synchronizing README.md after significant code changes, Updating documentation before a release or code review, Automating documentation updates after feature additions or refactors.

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 access to the codebase and documentation files. Limited to Markdown-based documentation files like README.md.

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 laceto/rss_feed/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. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

Synchronises all project documentation with the current codebase. Run this skill whenever the source code has changed and the docs may be stale.

When to Use This Skill

  • User says "update docs", "update documentation", "sync the docs"
  • User says "update README", "update CLAUDE.md", "update the user guide"
  • After a significant feature addition or refactor
  • Before a release or code review

What This Skill Updates

File / patternAction
README.mdRewrite to reflect current public API, module layout, usage examples
CLAUDE.mdUpdate architecture notes, import paths, invariants, debugging guidance
*_guide.ipynb / *guide*.ipynbUpdate module-map cell, API examples, and any stale function references
Other *.md docs found in the repo root or docs/Update to match current behaviour

Step-by-Step Workflow

1. Discover all documentation targets

Search the repo for files to update:

  • README.md (repo root)
  • CLAUDE.md (repo root or .claude/)
  • **/*guide*.ipynb — user-guide notebooks
  • **/*findings*.md — code-review finding plans (update only if stale)
  • Any other *.md outside venv/ and .claude/skills/

Read every target file in full before making any changes.

2. Read the current source code

For each module in the package (e.g. kitai/):

  • Read the file completely.
  • Extract the public API: every non-underscore function/class with its signature, docstring, args, return type, and raised exceptions.
  • Note any module-level constants or invariants documented in the module docstring.

Do not guess — only document what is actually in the source.

3. Identify what has changed

Compare the extracted API against what each doc file currently describes:

  • New functions / classes not yet documented → add them.
  • Removed or renamed symbols still referenced → remove / update them.
  • Changed signatures, return types, or raised exceptions → update them.
  • Changed module-level invariants or import paths → propagate to all docs.

4. Update each documentation file

Apply the minimum diff needed to make each file accurate. Preserve:

  • The file's existing section structure and headings.
  • The file's tone and style (terse vs. verbose, prose vs. table).
  • Code block language tags and indentation conventions.
  • Notebook cell types (markdown vs. code) and cell order.

Rules:

  • Do not delete sections that are still valid.
  • Do not reformat the whole file — surgical edits only.
  • Do not add new sections that duplicate existing ones.
  • For notebooks: update code cells that call renamed/changed functions; update markdown cells that describe the old API; keep all other cells intact.

5. Verify consistency across files

After all edits:

  • Cross-check that the same function is described identically in README, CLAUDE.md, and any notebook that covers it.
  • Ensure import paths in code examples match the actual package structure (e.g. from kitai.batch import submit_batch_job, not a bare import).
  • Confirm every raised exception listed in a docstring is also noted in the relevant doc section.

6. Report what changed

Summarise the updates in a short bullet list:

Updated:
  - README.md  — added kitai.batch section; updated kitai.index invariants
  - CLAUDE.md  — added batch.py to package layout; updated import paths
  - retriever_guide.ipynb — fixed create_hybrid_retriever call signature

Invariants to Preserve Across All Docs

  • Import paths must use the installed package name, not bare module names.
  • Every public function description must include: purpose, args, return type, raised exceptions.
  • Logging guidance: all modules use logging.getLogger(__name__); no module configures handlers — callers do.

Common Mistakes to Avoid

MistakeCorrect approach
Describing a function from memoryAlways read the source file first
Full file rewrite when only one section changedSurgical edits with Edit tool
Updating a notebook's output cellsLeave output cells as-is
Using bare imports in examples (from retriever import …)Use package-qualified imports (from kitai.retriever import …)
Documenting private helpers (_build_query_chain)Only document public symbols

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