feat: add OpenProse plugin skills

This commit is contained in:
Peter Steinberger
2026-01-23 00:49:32 +00:00
parent db0235a26a
commit 51a9053387
102 changed files with 23315 additions and 5 deletions
@@ -0,0 +1,36 @@
# Mixed Parallel and Sequential Workflow
# Demonstrates nesting parallel and sequential blocks
agent worker:
model: sonnet
# Define reusable blocks
block setup:
session "Initialize resources"
session "Validate configuration"
block cleanup:
session "Save results"
session "Release resources"
# Main workflow with mixed composition
do:
do setup
# Parallel processing phase
parallel:
# Each parallel branch can have multiple steps
do:
session: worker
prompt: "Process batch 1 - step 1"
session: worker
prompt: "Process batch 1 - step 2"
do:
session: worker
prompt: "Process batch 2 - step 1"
session: worker
prompt: "Process batch 2 - step 2"
session "Aggregate results"
do cleanup