ghwf6-verify

📁 shotaiuchi/dotclaude 📅 1 day ago
1
总安装量
1
周安装量
#75866
全站排名
安装命令
npx skills add https://github.com/shotaiuchi/dotclaude --skill ghwf6-verify

Agent 安装分布

amp 1
cline 1
opencode 1
cursor 1
continue 1
kimi-cli 1

Skill 文档

Always respond in Japanese. Write all workflow documents (*.md) in Japanese.

/ghwf6-verify

実装の検証を行う。

Usage

/ghwf6-verify

Prerequisites

  • ghwf5-implement 完了済み
  • 全実装ステップ完了

Processing

1. Load Context

  • Read state.json for active work
  • Fetch Issue/PR with comments:
    gh issue view <issue> --json body,comments
    gh pr view <pr> --json comments,reviews
    

2. Run Verification

  • Lint: pnpm lint
  • Type check: pnpm type-check
  • Build: pnpm build
  • Test: pnpm test

3. Code Review

  • Review implementation against spec
  • Check for security issues
  • Verify edge cases handled

4. Create/Update 06_VERIFY.md

  • Test results
  • Review findings
  • Issues to address

5. Handle Issues

If issues found:

  • Fix issues
  • Re-run verification
  • Update documentation

6. Commit & Push

Execute immediately without confirmation:

git add .
git commit -m "docs(wf): verify implementation <work-id>"
git push

7. Update PR & Labels

  • PR チェックリスト更新
  • ghwf:step-6 ラベル追加

8. Update State

{
  "current": "ghwf6-verify",
  "next": "ghwf7-pr",
  "last_execution": "<ISO8601>"
}