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

v1.0.0

Об этом навыке

Идеально подходит для агентов по обслуживанию кода, которым необходимы автоматические обновления документации Review and update documentation in the docs/ folder. Use when ensuring documentation accurately reflects the current codebase.

forwardimpact forwardimpact
[1]
[0]
Updated: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

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

Идеально подходит для агентов по обслуживанию кода, которым необходимы автоматические обновления документации Review and update documentation in the docs/ folder. Use when ensuring documentation accurately reflects the current codebase.

Зачем использовать этот навык

Наделяет агентов возможностью просматривать и обновлять документацию в папке `docs/`, обеспечивая точное отражение текущей базы кода с помощью файлов Markdown, таких как `docs/index.md`

Подходит лучше всего

Идеально подходит для агентов по обслуживанию кода, которым необходимы автоматические обновления документации

Реализуемые кейсы использования for update-docs

Просмотр документации после изменений кода
Обновление документации во время периодических аудитов
Генерация новой документации для добавленных функций
Удаление устаревшей документации для устаревших функций

! Безопасность и ограничения

  • Требует доступа к папке `docs/`
  • Ограничен форматом файла Markdown
  • Требует понимания структуры документации

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

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?

Идеально подходит для агентов по обслуживанию кода, которым необходимы автоматические обновления документации Review and update documentation in the docs/ folder. Use when ensuring documentation accurately reflects the current codebase.

How do I install update-docs?

Run the command: npx killer-skills add forwardimpact/monorepo/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: Просмотр документации после изменений кода, Обновление документации во время периодических аудитов, Генерация новой документации для добавленных функций, Удаление устаревшей документации для устаревших функций.

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?

Требует доступа к папке `docs/`. Ограничен форматом файла Markdown. Требует понимания структуры документации.

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 forwardimpact/monorepo/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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

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
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Update Documentation

Review and update documentation in the docs/ folder to ensure it accurately reflects the current codebase.

When to Use

  • After making code changes that affect documented features
  • During periodic documentation audits
  • When adding new features that need documentation
  • When removing features that are still documented

Process

  1. Understand the documentation structure

    • Read docs/index.md to see the documentation hierarchy
    • Review each document in docs/ subdirectories (model/, pathway/, map/)
    • Check git log --oneline -20 for hints about recent changes—but use this only as a starting point, not a substitute for studying the code
  2. Audit against the current codebase

    • For each document, examine the actual code it describes
    • Check products/map/src/ for data structures and validation
    • Check libraries/libpathway/src/ for derivation logic
    • Check products/pathway/ for CLI commands, templates, and formatters
    • Run CLI commands mentioned in docs to verify accuracy
  3. Verify diagrams

    • Mermaid diagrams must reflect actual data flow and relationships
    • Compare entity diagrams against actual YAML structures in data/pathway/
    • Compare derivation flowcharts against code in libraries/libpathway/src/
    • Update or add diagrams where they clarify concepts
  4. Verify code samples

    • All code samples must be runnable or valid
    • YAML examples should match actual schema structure
    • CLI examples should produce the shown output
    • Update samples that have drifted from implementation
  5. Check for gaps

    • New features in code that lack documentation
    • Documented features that no longer exist
    • Cross-references that point to moved or deleted content

Key Files to Cross-Reference

Document TopicSource of Truth
Skills & Levelsdata/pathway/capabilities/
Behavioursdata/pathway/behaviours/
Disciplinesdata/pathway/disciplines/
Tracksdata/pathway/tracks/
Levelsdata/pathway/levels.yaml
Stagesdata/pathway/stages.yaml
Job Derivationlibraries/libpathway/src/job.js
Agent Derivationlibraries/libpathway/src/agent.js
CLI Commandsproducts/pathway/bin/fit-pathway.js
Templatesproducts/pathway/templates/
Agent instructionsAGENTS.md

CLI Verification

Always use --data=data/pathway to ensure documentation reflects the canonical dataset.

sh
1# List available entities 2npx fit-pathway skill --data=data/pathway --list 3npx fit-pathway discipline --data=data/pathway --list 4npx fit-pathway track --data=data/pathway --list 5npx fit-pathway level --data=data/pathway --list 6 7# Generate sample outputs to compare with docs 8npx fit-pathway job software_engineering L3 --data=data/pathway 9npx fit-pathway agent software_engineering --data=data/pathway --track=platform

Commit

After making updates, commit with:

docs: update [topic] documentation

Use separate commits for distinct documentation areas.

Связанные навыки

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

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик