You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of SOP Doc. 113 workflow templates across 20+ domains.
API SOPs (Stripe, GitHub, MediRank), DevOps pipelines, AI agent chains, business processes, data pipelines, compliance workflows. Each example is a valid .osop.yaml file. Browse them at osop.ai/sop-doc.
Quick Start
# Clone
git clone https://github.com/Archie0125/osop-examples.git
cd osop-examples
# Validate any example
osop validate devops/github-actions-cicd.osop.yaml
# Dry-run (see what would execute, no side effects)
osop run demo/simple-agent-chain.osop.yaml --dry-run
# Real execution with LLM calls (requires ANTHROPIC_API_KEY)export ANTHROPIC_API_KEY=sk-ant-...
osop run demo/simple-agent-chain.osop.yaml
# Execute CLI nodes (requires explicit opt-in)
osop run devops/github-actions-cicd.osop.yaml --allow-exec
# Generate execution log
osop run demo/simple-agent-chain.osop.yaml --log output.osoplog.yaml
Security
CLI nodes (shell commands) are blocked by default. Use --allow-exec after reviewing commands.
LLM costs are capped at $1.00 by default. Override with --max-cost.
Risk assessment runs before execution. Critical findings block without --allow-exec.
Demo Workflow
The demo/simple-agent-chain.osop.yaml runs a 3-agent chain: generate an idea, critique it, refine it. Each node calls Claude and passes output to the next.
osop run demo/simple-agent-chain.osop.yaml
Examples by Domain
DevOps (6 examples)
File
Description
devops/ci-build-test-deploy.osop.yaml
Full CI/CD pipeline: build, unit test, integration test, approval, deploy
devops/rollback-on-failure.osop.yaml
Deployment with automatic rollback via error edges
devops/multi-env-promotion.osop.yaml
Promote through dev, staging, production with approval gates