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.

research
PreviewSource shapeAudit notes
$starter/workflows/research-and-verify

Template 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

  1. The workflow validates its input
  2. Each phase produces an explicit artifact
  3. Gates decide whether the next phase may begin
  4. 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

More Workflows

← Back to Workflows