Show and Tell: ORCH — typed task queue + state machine for production AI agent teams #1296
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 AgentOps community 👋
AgentOps covers the monitoring and observability side of AI agents — something I use too. I've been building the coordination layer: ORCH, a TypeScript CLI runtime for managing teams of AI coding agents.
The gap I was filling:
AgentOps tells you what an agent did. ORCH tells agents what to do next — and ensures they don't proceed without proper review.
Core primitive — typed task lifecycle:
The
reviewstate is the key insight: no task reachesdonewithout passing through a review gate. This catches a common failure mode in production agent systems — silent "success" that isn't actually validated.Practical usage:
What would make the combination powerful: linking ORCH run IDs to AgentOps session IDs for end-to-end tracing from task assignment through agent execution.
Question: How are AgentOps users currently handling task assignment and retry logic? Is that typically custom application code, or are people using purpose-built orchestration tools?
GitHub: https://github.com/oxgeneral/ORCH (MIT, TypeScript strict)
Beta Was this translation helpful? Give feedback.
All reactions