ワンクリックで
update-docs
Sync project docs with current codebase state — CLAUDE.md, tasks.md, specs, design.md, changelog, glossary, api.md.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Sync project docs with current codebase state — CLAUDE.md, tasks.md, specs, design.md, changelog, glossary, api.md.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build Flutter APK/IPA, generate changelog, update buildlog, and commit version bump. Handles platform selection, build mode, and artifact renaming.
Build Unity APK/IPA on macOS with Unity 6.x — pre-flight checks, version bump, iOS signing params, post-build verification, buildlog, and commit.
Evidence-driven bug investigation and fix pipeline. Use when something is broken, not working, or the root cause is ambiguous.
Two independent reviewers must both approve high-stakes output before it ships, breaking the single-reviewer blind-spot problem.
Team-orchestrated feature development with parallel specialist agents. Use when building a feature that benefits from multiple agents working concurrently. You act as Product Director coordinating the team.
Interactive agent picker for composing and dispatching parallel teams. Browse available agents across domains, pick a roster, dispatch in parallel.
| name | update-docs |
| description | Sync project docs with current codebase state — CLAUDE.md, tasks.md, specs, design.md, changelog, glossary, api.md. |
| when_to_use | Use after completing features, fixing bugs, or making changes that affect documentation. Triggers: "update the docs", "sync docs", "docs are stale", "doc-keeper", "/update-docs", "after this is done update docs", or "make sure docs match the code". |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Glob","Agent"] |
Gather context about recent changes and spawn the doc-keeper agent to update project documentation.
After ANY response that:
CLAUDE.md + tasks.md + relevant spec/*.md + product-guide.md + changelog.md + relevant qc/<feature>.mdtasks.md (known bugs section) + changelog.md + update affected qc/*.mdspec/*.md + update affected qc/*.mddesign.mdCLAUDE.md + README.md + tasks.md + changelog.mdtasks.mdCLAUDE.md + README.mdglossary.md with placeholder definitionsapi.md (only if project has its own API)qc/test-plan.mdRun these in parallel:
Git context (via Bash):
git log --oneline -20 — recent commit messagesgit diff --stat $(git log --format=%H --diff-filter=M -- 'CLAUDE.md' 'docs/' | head -1 2>/dev/null || echo HEAD~10)..HEAD — changes since docs were last touched (falls back to last 10 commits if docs have never been committed)Current doc state (via Read/Glob):
CLAUDE.md if it existsdocs/tasks.md if it existsGlob("docs/spec/*.md") to list existing spec filesCLAUDE.md or docs/ directory doesn't exist, the doc-keeper needs to create the full structure by reading the codebase.Use the Agent tool:
Agent(
subagent_type: "doc-keeper",
description: "Update project docs",
run_in_background: true,
prompt: <see below>
)
Build the prompt by combining:
Tell the user the doc-keeper is running in the background. Mention which files are likely to be updated based on the changes you saw.
If the doc-keeper agent is unavailable (e.g., not installed), update the docs inline yourself following the same guidelines from the doc-keeper agent definition.