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

View File

@@ -0,0 +1,23 @@
# Example 15: Inline Sequences
# Demonstrates the -> operator for chaining sessions
# Quick pipeline using arrow syntax
session "Plan the task" -> session "Execute the plan" -> session "Review results"
# Inline sequence with context capture
let analysis = session "Analyze data" -> session "Draw conclusions"
session "Write report"
context: analysis
# Combine inline sequences with blocks
block quick-check:
session "Security scan" -> session "Performance check"
do quick-check
# Use inline sequence in variable assignment
let workflow = session "Step 1" -> session "Step 2" -> session "Step 3"
session "Final step"
context: workflow