Open Source

Local-first workflows for agentic coding

Wire Codex, Cursor, Claude, OpenCode, and shell commands into repeatable YAML pipelines.
Run locally, version in Git, share with your team.

$ curl -fsSL https://tryrigg.com/install | bash
Works on macOS
Codex Codex
Cursor Cursor
Claude Code Claude Code
OpenCode OpenCode
Kimi Code Kimi Code Soon
Orchestration

Wire agents into repeatable workflows

Define multi-step pipelines in YAML. Codex reviews, Claude fixes, Cursor verifies — all in one command.

.rigg/review-and-fix.yaml rigg run
Review 1.8s
Fixes
fix-auth 2.1s
fix-types 1.4s
fix-perf 0.8s
Verify running
Local-first

Runs in your terminal

No cloud, no browser. One command to run any workflow.

~/your-project bash
rigg plan 3/4 steps
00:06 running
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
draft (codex)
2.3s
│ Drafted implementation plan for auth module
critique (claude)
1.9s
│ Found 2 gaps in error handling
refine (codex)
codex · gpt-4.1 · full
Improving draft with critique feedback...
save (write_file)
→ PLAN.md
████████████████████░░░░░░░ 3/4
For Teams

Version in Git. Share with your team.

Drop .rigg/*.yaml into your repo. Review workflows in PRs.

project structure
your-project/
├── .rigg/
│   ├── plan.yaml
│   ├── review.yaml
│   └── parallel-checks.yaml
├── src/
├── package.json
└── ...
git diff -- .rigg/review.yaml
diff --git a/.rigg/review.yaml b/.rigg/review.yaml
new file mode 100644
--- /dev/null
+++ b/.rigg/review.yaml
@@ -0,0 +1,12 @@
+id: review
+steps:
+  - id: scan
+    type: codex
+    with:
+      action: review
+  - id: fix
+    if: ${{ len(steps.scan.result.findings) > 0 }}
+    type: codex
+    with:
+      action: run
+      prompt: Fix all findings

Start building agent workflows

Open source, runs locally. Three commands to your first workflow.

$ rigg init && rigg run plan --input requirements="..."