Files
claude-archeflow-plugin/examples/custom-workflow.yaml
Christian Nennemann 21becd8b58 chore: remove ArcheHelix branding, use plain PDCA language
The archetypes and shadows are distinctive enough — no need for
a fancy name on top of the standard PDCA cycle terminology.
2026-04-02 18:09:28 +00:00

27 lines
761 B
YAML

# Example: Custom workflow definition
# Save as .archeflow/workflows/api-design.yaml in your project
name: api-design
description: "API-first workflow with contract validation and adversarial testing"
# PDCA workflow configuration
pdca:
plan:
archetypes: [explorer, creator]
parallel: false # sequential: Explorer feeds Creator
do:
archetypes: [maker]
parallel: false
check:
archetypes: [guardian, skeptic, trickster]
parallel: true # all reviewers run simultaneously
act:
exit_when: all_approved
max_cycles: 2
feedback_format: diff # pass only the delta between cycles
# Optional: final gate runs once after all cycles pass
final_gate:
archetypes: [sage]
description: "Final holistic review before merge"