← Back to list

verify-implementation
by eveld
Research, planning, and implementation workflows for Claude Code
⭐ 3🍴 1📅 Jan 6, 2026
SKILL.md
name: verify-implementation description: Use after implementing changes to run verification commands and ensure tests pass, code builds, and functionality works.
Verify Implementation
Run verification commands after implementing changes to ensure correctness.
Verification Sources
Check thoughts/notes/commands.md (created by discover-project-commands skill) for:
- Available test commands
- Linting commands
- Build commands
- Other project-specific verification
Common Verification Steps
1. Run Tests
Check commands.md, then run appropriate command:
make test- If Make target existsnpm test- If npm script existsgo test ./...- Direct Go commandpytest- Direct Python command
2. Run Linting
Check commands.md, then run:
make lint- If Make target existsnpm run lint- If npm script existsgolangci-lint run- Direct Go commandeslint .- Direct JavaScript command
3. Build Check
Check commands.md, then run:
make build- If Make target existsnpm run build- If npm script existsgo build ./...- Direct Go command
4. Type Checking (if applicable)
npm run typecheck- TypeScriptmypy .- Python- Go builds include type checking
Verification Workflow
- Check for commands.md: Read
thoughts/notes/commands.md - Run automated checks: Use commands from reference doc
- Report results: Show pass/fail for each check
- Manual verification: Prompt for manual testing if needed
Handling Failures
If verification fails:
- Show the error output
- Analyze the error
- Fix the issue
- Re-run verification
- Don't mark task complete until all checks pass
Example
# Read the commands reference
cat thoughts/notes/commands.md
# Run appropriate commands
make test
make lint
make build
# All pass? Mark phase complete in plan
# Any fail? Debug and fix before proceeding
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
