wf6-verify
1
总安装量
1
周安装量
#76523
全站排名
安装命令
npx skills add https://github.com/shotaiuchi/dotclaude --skill wf6-verify
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Always respond in Japanese.
/wf6-verify
Verify implementation quality.
Usage
/wf6-verify
Processing
1. Check Prerequisites
Get active work from state.json. Verify all plan steps are completed (plan.current_step >= plan.total_steps). Warn if incomplete.
2. Run Verification
Execute each check, using commands from .wf/config.json (verify.test, verify.build, verify.lint) with auto-detection fallback based on project files:
| Check | Config Key | Fallback Detection |
|---|---|---|
| Tests | verify.test |
package.jsonânpm test, pytest.ini/pyproject.tomlâpytest, go.modâgo test |
| Build | verify.build |
package.jsonânpm run build, go.modâgo build, Cargo.tomlâcargo build |
| Lint | verify.lint |
.eslintrcânpm run lint, .prettierrcâformat:check, pyproject.tomlâblack –check, .golangci.ymlâgolangci-lint |
3. Check Success Criteria
Compare against Success Criteria from 01_KICKOFF.md. Mark each as OK or incomplete.
4. Verification Summary
Display: implementation progress, test results, build status, lint status, success criteria completion, overall PASS/FAIL.
5. Update state.json
- On PASS: Set
current: "wf6-verify",next: "wf7-pr" - On FAIL: Set
current: "wf6-verify",next: "wf6-verify"(re-run after fixes)
6. Completion Message
- PASS: Show results, inform that
/wf7-pris next step - FAIL: List failed items, suggest fixes, instruct to re-run
/wf6-verify
Handling Failure
If verification fails: list failed items, suggest fixes, instruct to re-run /wf6-verify.
Notes
- Warning for incomplete Success Criteria
- Verification can be re-run multiple times
- PR creation is handled by
/wf7-prafter verification passes