Create example omnirepo workflows

t-320.8·WorkTask·
·
·
·Omni/Agentd/Workflows.hs
Parent:t-320·Created1 month ago·Updated1 month ago

Dependencies

Description

Edit

Summary

Create example workflow specs for common omnirepo tasks.

Workflows

implement.md

Implement a task from JSON input.

---
toolchain: haskell
workspace: .
model: claude-sonnet-4
provider: claude-code
max_cost_cents: 100
---

Implement the task described in the JSON input.

Read /repo/AGENTS.md for project context and the skill index.
Load the coder skill from /repo/Omni/Ide/Coder.md if needed.

1. Read the task requirements from stdin
2. Understand the codebase context
3. Make the necessary code changes
4. Run `bild <namespace>` to verify
5. Fix any compilation errors

Usage: task show t-123 --json | agentd run implement.md

review.md

Review uncommitted changes.

---
toolchain: haskell
workspace: .
model: claude-sonnet-4
provider: claude-code
max_cost_cents: 50
---

Review the uncommitted changes in this repository.

Read /repo/AGENTS.md for context.
Load the reviewer skill from /repo/Omni/Ide/Reviewer.md.

1. Run `git diff` to see changes
2. Run `bild <namespace>` and `bild --test <namespace>`
3. Evaluate code quality and correctness
4. Output APPROVE, REJECT, or REQUEST_CHANGES with explanation

daily-summary.md

Generate daily activity summary.

---
toolchain: git
workspace: .
model: claude-sonnet-4
provider: claude-code
max_cost_cents: 20
---

Generate a summary of today's activity.

1. Check git log for today's commits
2. Check _/logs/agentd/ for today's agent runs
3. Summarize what was accomplished
4. Note any failures or issues

Deliverables

  • [ ] Omni/Agentd/Workflows/implement.md
  • [ ] Omni/Agentd/Workflows/review.md
  • [ ] Omni/Agentd/Workflows/daily-summary.md
  • [ ] Test each workflow manually

Timeline (2)

🔄[human]Open → InProgress1 month ago
🔄[human]InProgress → Done1 month ago