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

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: 8/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
8/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/index.md`のようなMarkdownファイルを使用して、ドキュメントが現在のコードベースを正確に反映することを保証する

おすすめ

コードメンテナンスエージェントが自動ドキュメント更新を必要とする場合に最適

実現可能なユースケース 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 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?

コードメンテナンスエージェントが自動ドキュメント更新を必要とする場合に最適 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.

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 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. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者