Claude Tools / Workflows / Dependency Upgrade

Illustrative multi-step component recipe

Dependency Upgrade

Plans an upgrade, edits configuration, runs tests, and documents compatibility changes.

maintenance
PreviewSource shapeAudit notes
$starter/workflows/dependency-upgrade

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 Bear Brown 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