Show and Tell: ORCH — typed task queue + state machine for AI agent teams (local dev complement to trigger.dev) #3234
oxgeneral
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey trigger.dev community 👋
I've been building a TypeScript CLI runtime for coordinating AI agent teams locally, and found some interesting parallels with what trigger.dev does for background jobs in the cloud.
ORCH addresses the same core problem — reliable async task execution with proper state tracking — but for teams of AI coding agents running on local machines:
What maps to trigger.dev concepts:
retryingstate with configurable max attemptsWhat's different:
.orchestry/local filesimport { Orchestrator } from '@oxgeneral/orch'Question for trigger.dev users: For AI agent workflows specifically, are you using trigger.dev to coordinate multiple agents in parallel? I'm curious how you handle the "review before done" pattern — do you model that as a separate job, or use something else?
GitHub: https://github.com/oxgeneral/ORCH
npm:
npm install -g @oxgeneral/orchBeta Was this translation helpful? Give feedback.
All reactions