From v1tamins
Use when documentation should be synchronized after code changes, new skills, releases, merged PRs, or shipped work. Triggers on "update the docs", "sync docs", "post-ship docs", "documentation is stale", "refresh README".
How this skill is triggered — by the user, by Claude, or both
Slash command
/v1tamins:v1-docs-freshnessThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bring project documentation back in sync with the code that just changed.
Bring project documentation back in sync with the code that just changed.
Determine the base branch and current change set:
git branch --show-current
git diff --stat
git diff --name-only
git log --oneline -10
If the user gave a PR, ticket, or release range, inspect that scope instead of assuming the current branch.
Classify the change:
Discover documentation files before editing:
rg --files -g "*.md" -g "!node_modules/**" -g "!.git/**" | sort
Always include entry-point docs when they exist: README.md, CLAUDE.md, AGENTS.md, CONTRIBUTING.md, ARCHITECTURE.md, CHANGELOG.md, and docs/**/*.md.
Cross-check each relevant doc against the changed files.
Use this classification:
Do not ask about facts that are directly visible in the repo. Read first, then ask only for product judgment or narrative choices.
Make factual updates directly. Keep edits narrow and preserve the existing voice.
Examples:
Do not silently remove whole sections. Do not rewrite the README positioning unless the user explicitly asks.
If CHANGELOG.md changed, treat it as source material, not scratch space.
Rules:
CHANGELOG.md.Before finishing, check for contradictions:
CLAUDE.md or AGENTS.md.agents/skillscursor/commandsinstall.shAlso check discoverability. Important docs should be reachable from README.md, CLAUDE.md, or a docs index.
If TODOS.md exists, compare open items against the diff. Mark items complete only when the branch clearly completed them.
If a VERSION file exists, never bump it without asking. Recommend "skip" for docs-only work unless the docs are part of a release.
Run cheap checks:
git diff --check
git diff --name-only
Report:
Do not commit unless the user explicitly asked for a commit.
npx claudepluginhub v1-io/v1tamins --plugin v1taminsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.