Hacker Newsnew | past | comments | ask | show | jobs | submit | frequencyai's commentslogin

Hey HN. I've been running 10 agent pipelines in parallel for a few weeks. Agents come up with app ideas and ship them autonomously. The result is ~30 production apps with working payments and live users and most importantly apps that (in my humble opinion!) don't suck. I wanted to share the architecture and see how others are tackling orchestration.

To make this possible, I built Frequency, a config-driven orchestration layer where workflows are YAML state machines. State is repo-local JSON (no database, no message queue), agent calls run in git worktrees, and about 40% of steps are agent calls with 60% deterministic scripts.

The hardest problem for me was tackling cross-pipeline coordination. Marketing needs to know deploy finished and bug fixes need to flow back through build etc. We ended up with declarative predicates rather than imperative callbacks. The blog covers the three predicate types that handle the patterns we've hit.

Still figuring out: agent quality at scale (Claude reviewing Claude's code is tautological), non-deterministic throughput (2-5/5 pass rate depending on the day), and token limits are the main ceiling right now (which I guess is the better problem to have).

Curious what patterns others are seeing for multi-agent coordination. Are all of you solving this differently?

I'd love to learn more and hear feedback about what I can do differently, and if this tool would be useful to anyone else.


Hm, what's actually being shipped here?

I've been playing around with agent orchestration recently and at least tried to make useful outputs. The biggest differences were having pipelines talk to each other and making most of the work deterministic scripts instead of more LLM calls (funnily enough).

Made a post about it here in case anyone is interested about the technicals: https://www.frequency.sh/blog/introducing-frequency/


Interesting, thanks for sharing.

I've been doing some DIY/citizen science type agent orchestration as well: https://blog.unratified.org/2026-03-06-receiving-side-agent-...

Not quite to the same scale, but I share the same sentiment - working through scripts instead of the LLM is an important key, I think.


Really cool stuff, using git PRs as the transport layer is a clean pattern, also been exploring using this for other projects too.

Most inter-agent coordination I've seen relies on shared state or message queues, the .well-known discovery angle is different.

Have you experienced any bottlenecking with the human approval gate?


Thanks!

I'm just now at the point of having done a manual human-in-the-loop test once, still working through core bugs, etc., so haven't had a chance to notice bottlenecking, but i'm using github issues for the moment as the escalation channel - ideally, it won't be an issue, over time, as the system accumulates lessons and decisions, etc. that guide it away from mistakes that require human escalation.


Hey HN. We built Frequency, AI agent orchestration that autonomously detects, defines, and runs any repeatable workflow in your repo for you, continuously and at scale.

We used it to automate our app development repo, and rapidly ship 30 production apps (and counting) at Cashew Crate (https://cashewcrate.com) from scratch, autonomously. These are real, fully functional apps with working payments, accounts, analytics, and marketing integrations. Now, all we need to do is run Frequency and we see new apps appear everyday, without any prompting or babysitting.

While we needed to intervene to set up payments for the first time due to regulatory verification, the agents handled everything else - ideation, implementation, review, deployment, and bug fixes across 10 parallel pipelines (more pipelines can be added as needed).

Frequency analyses your codebase, generates workflow config as YAML state machines, and runs them with repo-local JSON state (no database, no message queue). Pipelines coordinate through state predicates and shared resource locks. Agent calls run in git worktrees with integration gates. About 40% of our steps are agent calls, the rest are deterministic scripts. Works with any agent or CLI tool. App development was our proving ground but the runtime is workflow-agnostic.

The hardest part was cross-pipeline coordination: marketing needs to know deploy finished, bug fixes need to feed back through build. Getting this to work declaratively rather than with imperative callbacks took several iterations. Our main bottleneck now is token limits rather than the orchestration.

Twitter blog post with demo video: https://x.com/FrequencyAI_HQ/status/2031399095848362032

We're opening Frequency to design partners. If you want agents building and running your workflows autonomously, safely and at scale, sign up at http://frequency.sh.

The HN url links to our writeup with architecture details, what broke, and limitations: https://www.frequency.sh/blog/introducing-frequency/

We also plan to periodically release further deep dives into the architecture and technicals as we open up the platform to everyone, so please follow our socials for further updates. Hacker News: https://news.ycombinator.com/submitted?id=frequencyai Twitter (X): https://x.com/FrequencyAI_HQ Bluesky: https://bsky.app/profile/frequency-ai.bsky.social


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: