commit 836e4fa41c1ba2f4b663ffad5cd54f96ae6b22e2
Author: Ben Sima <ben@bensima.com>
Date: Fri Jan 2 00:21:22 2026
Omni/Agentd: Add practical example workflows
- SimpleTest.md - Minimal test (base toolchain)
- GitStatus.md - Check git status (git toolchain)
- Updated existing examples with proper frontmatter
Task-Id: t-320.8
diff --git a/Omni/Agentd/Examples/GitStatus.md b/Omni/Agentd/Examples/GitStatus.md
new file mode 100644
index 00000000..6dc26ebd
--- /dev/null
+++ b/Omni/Agentd/Examples/GitStatus.md
@@ -0,0 +1,17 @@
+---
+toolchain: git
+workspace: .
+max_cost_cents: 20
+max_iterations: 10
+---
+
+# Git Status Check
+
+Check the current git status and summarize any uncommitted changes.
+
+## Task
+
+1. Run `git status` to see current state
+2. Run `git log --oneline -5` to see recent commits
+3. If there are uncommitted changes, describe them
+4. Summarize the repository state
diff --git a/Omni/Agentd/Examples/SimpleTest.md b/Omni/Agentd/Examples/SimpleTest.md
new file mode 100644
index 00000000..32528ab1
--- /dev/null
+++ b/Omni/Agentd/Examples/SimpleTest.md
@@ -0,0 +1,16 @@
+---
+toolchain: base
+workspace: .
+max_cost_cents: 10
+max_iterations: 5
+---
+
+# Simple Test
+
+A minimal test to verify agentd is working.
+
+## Task
+
+1. Run `date` to get the current date
+2. Run `whoami` to get the current user
+3. Summarize what you found in a brief response