skills/vibe-review-docs/SKILL.md
Use when the user wants to review documentation changes, audit entry files or standards docs, check changelog quality, inspect concept drift in docs, or says "review docs" / "review documentation". Do not use for source-code implementation review.
npx skillsauth add jacobcy/vibe-coding-control-center vibe-review-docsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
本 Skill 只负责:
语义边界:
vibe-review-docs 负责 docs、standards、task/readme、changelog 与入口文件的概念和表达审查vibe-review-code启动时创建 task 跟踪进度(使用 TaskCreate tool):
TaskCreate(
title: "Doc Review",
description: "文档审查:检查概念对齐和引用正确性"
)
PR_BASE=$(gh pr view <number> --json baseRefName -q .baseRefName)
PR_BRANCH=$(gh pr view <number> --json headRefName -q .headRefName)
git fetch origin "$PR_BASE" "$PR_BRANCH" --quiet
git diff --name-only "origin/$PR_BASE...origin/$PR_BRANCH" -- '*.md'
git diff "origin/$PR_BASE...origin/$PR_BRANCH" -- '*.md'
git diff main...HEAD --name-only | grep '\.md$'
git diff main...HEAD -- '*.md'
关键区分:本地开发 vs 远程审查
uv run python src/vibe3/cli.py handoff status $(git branch --show-current)
PR_BRANCH=$(gh pr view <number> --json headRefName -q .headRefName)
gh pr view <number> --comments
检查以下维度:
| 维度 | 检查项 | |------|--------| | Completeness | PRD 是否遵循标准格式(Background, Goals, Acceptance Criteria) | | Language & Clarity | 是否简洁,去除泛化 AI 语言 | | Accuracy | CLI 命令和架构描述是否与当前 V3 状态一致 | | References | 引用的文件是否存在,路径是否正确 | | Deprecation | 废弃文件是否有明确的 deprecation notice |
# 检查引用文件是否存在
ls -la docs/standards/v3/command-standard.md
# 检查废弃文件状态
head -10 docs/standards/vibe3-state-sync-standard.md
运行相关检查:
# CLI 命令验证
uv run python src/vibe3/cli.py --help
# 特定命令验证
uv run python src/vibe3/cli.py <command> --help
## Findings
- [Blocking] path:line
- Issue:
- Failure mode:
- Minimal fix:
## Verification
- Passed:
- Not run:
## Verdict
PASS | MAJOR | BLOCK
| 级别 | 定义 | |------|------| | Blocking | 错误概念、指向不存在文件的引用、缺失 deprecation notice | | Major | 应在合并前修复;描述与代码不一致、缺失关键文档 | | Minor | 有限影响的问题;格式、措辞优化 | | Nit | 小的清晰度问题 |
完成审查后,更新 handoff:
uv run python src/vibe3/cli.py handoff append "vibe-review-docs: Documentation review completed" --actor vibe-review-docs --kind milestone
| 文件 | 职责 |
|------|------|
| skills/vibe-review-docs/SKILL.md | 本文件:文档审查流程 |
| skills/vibe-review-code/SKILL.md | 代码审查流程 |
| docs/standards/quality-control-standard.md | QC 标准 |
/vibe-review-docs
/vibe-review-docs 637
或
用 vibe-review-docs 审查 PR #637
development
Use after `vibe init` to verify project configuration completeness. Interactively prompts user to fill missing items. Orchestrates existing commands without adding Python code. Supports cross-project vibe3 readiness verification (Phase 5-8). Do not use for system-level installation issues (use vibe-onboard instead).
development
Use when the user wants a comprehensive review using the multi-agent team workflow. Applies to PRs, code changes, architecture decisions, and any task requiring team-based analysis.
development
Use when manager has signaled flow terminal state cleanup via handoff indicate. Reads cleanup instructions and executes FlowCleanupService. Do not use for code changes or PR creation.
testing
Use for handling blocked and RFC issues, making decisions that may form ADRs (Architecture Decision Records). Processes problem issues requiring human judgment, dependency resolution, and architectural decisions. Do not use for routine issue monitoring (use vibe-orchestra) or roadmap planning (use vibe-roadmap).