Intelligently verify completion claims using parallel completion-verifier agents with smart task splitting
Verify completion claims using parallel AI agents that intelligently split complex tasks. Use when you need to validate multi-component implementations or ensure deliverables match requirements.
/plugin marketplace add lpasqualis/lpclaude/plugin install lpclaude-config@lpclaude-marketplace[optional: custom verification target instead of last claim]Verify completion claims using optimally-sized parallel completion-verifier agents.
Default: Scan conversation for recent completion claims ("done", "complete", "ready", "finished", "implemented"). Focus on substantive deliverables, ignore trivial edits.
Custom: Use provided argument instead of automatic detection.
Extract specific claims:
Single verifier for:
Parallel verifiers for:
Skip verification for:
Split by logical boundaries:
Ensure non-overlapping scopes.
Single verifier:
Task(subagent_type: 'completion-verifier', description: 'Verify completion claim', prompt: 'Verify: [claim with context and outcomes]')
Parallel verifiers (multiple Task calls in single message for true concurrency):
Task(subagent_type: 'completion-verifier', description: 'Verify component A', prompt: 'Verify [component A]: [scope, criteria, files]')
Task(subagent_type: 'completion-verifier', description: 'Verify component B', prompt: 'Verify [component B]: [scope, criteria, files]')
Task(subagent_type: 'completion-verifier', description: 'Verify component C', prompt: 'Verify [component C]: [scope, criteria, files]')
CRITICAL: For true parallel execution, all Task calls must be made in a single message using multiple tool invocations. Sequential Task calls execute one after another, not concurrently.
Provide each verifier:
## Verification Results: [Claim]
### Status: [VERIFIED/PARTIALLY VERIFIED/NOT VERIFIED]
### Components:
- [Component]: [Status] - [Summary]
### Issues:
- [Specific problems]
### Required Actions:
- [Next steps if incomplete]
$ARGUMENTS
When using parallel verifiers, make multiple Task calls in a single message:
I'll verify this completion claim using 3 parallel verifiers:
[Multiple Task tool calls here - each with different verification scope]
Example for agent/command development: