execute

Orchestrates task execution with QA gates, coder retries, and completion evidence.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/ZaxbyHub/ragappv3 --skill execute-zaxbyhub
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: execute
Source: https://github.com/ZaxbyHub/ragappv3/tree/main/.opencode/skills/execute
Command: npx skills add https://github.com/ZaxbyHub/ragappv3 --skill execute-zaxbyhub

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multi-step coding tasks across coder, reviewer, and test agents often leads to skipped verification steps, unverified fixes, and premature commits. This protocol enforces a strict execution pipeline where every task passes through automated gates and agent reviews before completion. ## Core Features & Use Cases - Structured Gate Pipeline: Runs diff, syntax check, placeholder scan, imports audit, lint, build check, and a parallel pre_check_batch (lint, secretscan, SAST, quality budget) for every task. - Coder Retry Protocol: Returns structured gate-failure rejections to the coder agent with exact error output, resuming at the failed step instead of restarting. - Regression and Drift Detection: Runs graph-scoped regression sweeps and test-drift checks on drift-prone changes like CLI behavior, parsing, and public contracts. - Completion Evidence Checklist: Requires a filled task-completion gate checklist from actual tool output before any task can be marked complete or committed. - Use Case: An architect agent executing a phased implementation plan uses this protocol to delegate each task to a coder, enforce all QA gates, and only commit after reviewer approval and passing tests. ## Quick Start Load the execute protocol and run the current task through the full gate pipeline, delegating fixes to the coder agent on any gate failure.

Frequently Asked Questions about execute

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I handle a failed QA gate during automated task execution?▼

Return a structured rejection to the coder agent with the gate name, failure reason, and required fix, then resume at the failed step. Never fix the code yourself; the only exception is the lint tool in fix mode, which auto-corrects by design.

What checks run in the pre_check_batch verification step?▼

pre_check_batch runs four tools in parallel: lint check, secretscan, sast_scan, and quality_budget. When a phase baseline exists, sast_scan diffs against it so only new findings cause failure, while pre-existing findings go to the reviewer for triage.

Does passing automated gates replace code review?▼

No. pre_check_batch only covers automated static checks and explicitly does not replace reviewer agent logic review, security review, or test engineer verification. Skipping the reviewer after gates pass is treated as a process violation.

When is the security reviewer gate triggered?▼

The security-only review triggers when a change matches TIER 3 criteria, contains security keywords, or when secretscan or sast_scan report findings at or above threshold. Rejection before the retry limit sends the task back to the coder.

What is required before committing a completed task?▼

All pre-commit checks must pass: reviewer approval, test engineer pass, pre_check_batch success, diff execution, regression sweep, and test-drift check. The completion checklist must be filled from actual tool output, never from memory.