ORCH — built an orchestration layer for teams of LLM-powered agents #1375
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 Simon and community 👋
Long-time
llmuser here. I built ORCH — a CLI runtime that sits one layer above tools likellm, treating your AI tools as a coordinated engineering team rather than individual commands.The mental model
llmis excellent for running a single AI command. ORCH answers: what happens when you have 5+llmcalls that need to be coordinated, retried, sequenced, and audited?Think of it as:
llmis a worker, ORCH is the team manager.What ORCH adds on top
todo → in_progress → review → donewith mandatory review gate before completionretryingstate with configurable attemptsorch msg send,orch msg broadcast)Quick example
The state machine means the Writer agent only picks up the writing task after Research has passed review — no polling, no manual coordination.
Why I built it
I was running multiple
llminstances manually for a research pipeline — copy-pasting outputs, restarting failed runs by hand. ORCH makes that workflow reliable and observable.Links
npm install -g @oxgeneral/orchCurious if others here have built multi-step pipelines with
llm— would love to hear how you handle coordination today. Happy to answer any questions!Beta Was this translation helpful? Give feedback.
All reactions