Claude Tools / Workflows / Research and Verify
Illustrative multi-step component recipe
Research and Verify
Collects sources, drafts a synthesis, then runs an independent evidence check.
researchTemplate signals
Status
Draft
Audit
Not run
Collection
Workflows
Anatomy
What it contains
- An ordered set of phases
- Agents, skills, commands, or scripts used by each phase
- Inputs, outputs, gates, and stop conditions
Lifecycle
How it works
- The workflow validates its input
- Each phase produces an explicit artifact
- Gates decide whether the next phase may begin
- The final phase verifies the requested outcome
Audit lens
What Zebonastic would check
- Every phase has bounded authority
- Artifacts and state transitions are inspectable
- Failure, retry, and rollback behavior are defined
Content preview
Workflow script
Editable starter content8 lines
export default {
name: "release-readiness",
phases: [
{ name: "quality", run: ["lint", "test"] },
{ name: "review", agents: ["code-reviewer", "security-auditor"] },
{ name: "release", requires: ["quality:pass", "review:pass"] }
]
}Related