npx skills add ...
npx skills add factory-ai/factory-plugins --skill verify
Background knowledge for droid-control workflows -- not invoked directly. Deliverable verification against commitments.
npx skills add factory-ai/factory-plugins --skill verify
The orchestrator routed you here. This atom checks the final deliverable against the commitments made at the start of the workflow.
You receive:
Composition is optional: raw desktop screenshots/state and the driver's evidence handoff can be the deliverable. Verify the task's postcondition, not merely the action's exit status or effect field.
Every step, check, and postcondition gets exactly one of these; commands and driver atoms use the same words.
| Status | Meaning | Counts as |
|---|---|---|
PASS | The postcondition was observed | Met |
FAIL | The postcondition was observed to be false | Not met — this is a finding |
BLOCKED | The postcondition could not be observed: capture unavailable, permission wait unresolved, missing binary or connection, environment prevented the step | Neither. Name what blocked it and what unblocks it |
BLOCKED is never rolled into PASS or FAIL. A deliverable with BLOCKED steps is incomplete unless the user accepts the partial evidence. /verify's claim verdict (CONFIRMED / REFUTED / INCONCLUSIVE) is about evidence sufficiency, not step status: any BLOCKED step that the claim depends on makes the verdict INCONCLUSIVE, but INCONCLUSIVE also covers steps that all ran and still did not decide the claim.
Run ffprobe on the final .mp4, then a full decode:
| Check | Pass condition |
|---|---|
| Exists and decodes | ffprobe exits 0 with duration > 0, and the ffmpeg -xerror decode exits 0 with empty stderr |
| Resolution | Matches the fidelity compose resolved: 1920x1080 for compact/standard, 2560x1440 for inspect (the default for side-by-side), or the explicit width/height in the props |
| Pixel format | pix_fmt=yuv420p with color_space=bt709 (a yuvj420p stream means the render bypassed render-showcase.sh) |
| File size | Under 5 MB for GitHub embeds (25 MB hard limit) |
| Duration | Equals 4s + longest_clip / speed + 3.5s (compose's duration checkpoint) and falls within the compose pacing table's target range for this demo type: 30-45s (single feature), 45-75s (side-by-side comparison), 60-120s (multi-phase). Below the minimum is a failure — re-compose with a lower speed factor or re-capture with more steps. |
| Filename | Includes PR number or meaningful identifier |
Walk through each commitment from the parse step:
| Commitment | How to verify |
|---|---|
| Title card | Video starts with a static frame showing PR info (check first 5s) |
| Side-by-side layout | Video shows two panels with a divider |
| Showcase polish | Resolution matches the resolved fidelity, window chrome and rounded corners visible |
| Keystroke overlay | Pill overlays appear at interaction points |
| Effects | Effects matching the committed tier are present (utilitarian: zoom/keystroke; full: spotlight, zoom, callout, keystroke) |
| Speed note | Title card mentions playback speed |
Metadata cannot show what is on screen. For every proof point, extract the frame and look at it:
t = 4.0s to t = 4.0s + longest_clip / speed, fully visible; after that the last frame is held under the outro crossfade. Extract the final proof frame just before the clips end (e.g. t = 4.0 + longest_clip / speed - 0.1), not from the crossfade| Check | Pass condition |
|---|---|
| Evidence exists | Screenshots/snapshots at every claimed proof point |
| Environment stated | Driver, terminal/browser, OS identified |
| Conclusion present | Evidence explicitly supports or refutes the claim |
| Before/after paired | If comparison, both branches shown at same capture points |
| Check | Pass condition |
|---|---|
| Step coverage | Every defined test step has a status (PASS / FAIL / BLOCKED) |
| Evidence attached | Screenshots/snapshots at every step |
| Failures documented | FAIL steps have evidence and description; BLOCKED steps name the blocker and what unblocks it |
| Report structured | Markdown report follows the QA template |
If any check fails:
Do not report a deliverable as complete until every commitment is met.
ffmpeg -v error -y -ss <t> -i <video> -frames:v 1 "${RUN_DIR}/proof-<t>.png" # then Read the PNG## Verification
### Technical
- Decode: ffmpeg -xerror exit 0 ✓
- Resolution: 2560x1440 (inspect, side-by-side) ✓
- Duration: 52.5s = 4 + 45 + 3.5 ✓
- Size: 3.2 MB ✓
- Format: yuv420p / bt709 ✓
### Commitments
- [x] Title card with PR info
- [x] Side-by-side comparison layout
- [x] Showcase hero preset applied
- [x] Keystroke overlay visible
### Content
- [x] Fork creates independent session (frame at 0:18 read: new session id in header)
- [x] History diverges after fork (frame at 0:32 read: differing last messages)
All commitments met. Deliverable ready.