What problem does it solve?
Verifying that a code change works across operating systems and CPU architectures is expensive and error-prone when done ad hoc. This Skill provides a disciplined workflow that runs cheap local checks first, selects the smallest relevant set of cloud runners, and aggregates results without hiding platform gaps.
Core Features & Use Cases
- Runner Discovery and Selection: Discovers available runners at execution time via the Oz CLI and selects a minimal OS/architecture matrix based on evidence in the change, not runner availability.
- Child Agent Orchestration: Launches verification-only child agents with
run_agents, routing each to a specific runner and collecting structured pass/fail/blocked results with evidence.
- Cost Guardrails: Enforces a local verification gate before cloud fan-out, limits retries for transient failures, and prevents children from fixing or pushing code.
- Use Case: After fixing a filesystem path bug that affects Windows and macOS, use this Skill to verify the fix on one representative runner per affected OS, then receive a consolidated report showing which platforms passed and which remain unverified.
Quick Start
Verify my latest commit across the affected operating systems using the smallest set of cloud runners and report the results.