kbrockhoff/brockhoff-tools-claude
bkff
plugins/bkff/skills/verifyfeat/SKILL.md
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/kbrockhoff/brockhoff-tools-claude/blob/main/plugins/bkff/skills/verifyfeat/SKILL.md -a claude-code --skill verifyfeatInstallation paths:
.claude/skills/verifyfeat/# Verify Feature Completion
Verifies that a beads feature is complete by:
1. Checking all child tasks are closed
2. Executing the build system `verify` target
3. Running comprehensive validation including integration tests
## Usage
```bash
# Verify feature
/bkff:verifyfeat --issue=beads-abc123
# Output as JSON
/bkff:verifyfeat --issue=beads-abc123 --format=json
```
## Verification Process
```
┌─────────────────────────────────────────────────────────┐
│ CHECK ACCEPTANCE CRITERIA │
│ (must be defined on the feature) │
└─────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────┐
│ CHECK CHILD TASKS │
│ (all must be in 'closed' status) │
└─────────────────────┬───────────────────────────────────┘
│
┌──────────┴──────────┐
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ All Closed │ │ Open Tasks │
└──────┬──────┘ └──────┬──────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ Run verify │ │ FAIL │
│ target │ │ (list open) │
└──────┬──────┘ └─────────────┘
│
▼
┌─────────────────────────────────────────────────────┐
│ VERIFICATION RESULT │
│ (pass/fail based on verify target exit code) │
└─────────────────────────────────────────────────────┘
```
## What Gets Checked
The `verify` target should run comprehensive validation:
| Check Type | Description |
|------------|-------------|
| Integration Tests | Cross-component tests |
| Feature Documentation | Feature-level docs complete |
| API Contracts | API compatibility verified |
| Performance | Per