
verify
by doodledood
A curated marketplace of Claude Code plugins for agentic development workflows, featuring tools for architecture, knowledge management, and development automation
SKILL.md
name: verify description: 'Manifest verification runner. Spawns parallel verifiers for Global Invariants and Acceptance Criteria. Called by /do, not directly by users.' user-invocable: false
/verify - Manifest Verification Runner
Goal
Run all verification methods from a Manifest. Spawn one verifier agent per criterion in parallel. Report results grouped by type.
Input
$ARGUMENTS = " [--scope=files]"
Principles
-
Don't run checks yourself - Spawn agents to verify. You orchestrate, they verify.
-
Single parallel launch - All criteria in one call, slow ones first (tests, builds, reviewers before lint/typecheck).
-
Global failures are critical - Highlight prominently. Task can't succeed while these fail.
-
Actionable feedback - Pass through file:line, expected vs actual, fix hints.
What to Do
Parse inputs - Extract all criteria with verification methods from manifest. Read execution log for context.
Categorize by method:
bash: Shell commands (tests, lint, typecheck)subagent: Reviewer agentscodebase: Code pattern checksmanual: Set aside for human verification
Launch verifiers - One Task per criterion, all in parallel. Use the agent type specified in the manifest's verification block. Pass criterion ID, description, verification method, and relevant context.
Collect and report results - Group by Global Invariants first, then by Deliverable.
Decision Logic
if any Global Invariant failed:
→ Return ALL failures, globals highlighted prominently
elif any AC failed:
→ Return failures grouped by deliverable
elif all automated pass AND manual exists:
→ Return manual criteria, hint to call /escalate
elif all pass:
→ Call /done
Output Format
On failure:
## Verification Results
### Global Invariants
#### Failed (N)
- **INV-G1**: [description]
Method: [method]
[failure details with location, expected/actual, fix hint]
#### Passed (M)
- INV-G2, INV-G3
---
### Deliverable 1: [Name]
#### Failed
- **AC-1.2**: [description]
[failure details]
#### Passed
- AC-1.1
---
**Summary:**
- Global Invariants: X/Y failed (fix first)
- Deliverable 1: A/B ACs failed
On success with manual:
## Verification Results
All automated criteria pass.
### Manual Verification Required
- **AC-1.3**: [description] - How to verify: [from manifest]
Call /escalate to surface for human review.
On full success:
Call /done.
Criterion Types
| Type | Pattern | Failure Impact |
|---|---|---|
| Global Invariant | INV-G{N} | Task fails |
| Acceptance Criteria | AC-{D}.{N} | Deliverable incomplete |
| Process Guidance | PG-{N} | Not verified (guidance only) |
Note: PG-* items are non-verifiable guidance on HOW to work. They're followed during /do but not checked by /verify.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です