r/AIAgentsStack

▲ 12 r/AIAgentsStack+1 crossposts

Need help with creating an n8n orchestration layer for my personal agents.

Context:

So I have been tinkering with hermes and am starting to make a personal suite of hermes agents running on ollama that tailors to everything in my personal life. I am using RabbitMQ to faciliatate communication between my main bot that I chat with and handles agent orchestration. PostgreSQL to serve as a database that stores all of these tasks and ranks them by urgency so those get done first.

I am also using obsidian which already has all of my notes and qdrant which uses semantic layering so it can find deeper connections as context for all of my agents.

The Main Problems:

I currently have n8n and ngrok running on a single docker-compose file on my main server, however I have multiple services I want to take full advantage of, so I will be keeping my heavy database apps attatched to a single specified server and using compose to spin them up there while letting my agents roam and find where they can "fit in" I'm thinking of using kubernetes to manage these individual agent containers because I have very limited hardware resources. Is there a way to use Kompose to make some containers stay on a specified device, and allow others to roam, like a certain YAML attribute?

Another thing I wanna do is create a parallel agent workflow and a linear agent workflow to work through my tasks. I'm thinking of using n8n for this to query the kubernetes api server to see if it can fit an agent with its current resources(overly simplified, but kinda what I want to do). If it can multiple agents are spawned in. However if it cannot it will only be allowed to use a single agent to work through a task. Ollama is my main limiting factor because I don't even have a solid GPU and I can't spawn multiple ollama services so all my agents even if they work in parallel might have to use only one singular or maybe 2 spread out ollama services.

reddit.com
u/Thin-War-4593 — 3 days ago
▲ 11 r/AIAgentsStack+10 crossposts

I built a harness around AI coding agents because better models weren’t fixing the problems I kept seeing

I’ve been experimenting pretty heavily with AI coding agents, and I kept running into the same pattern:

The model was often capable enough to do the actual coding.

The failures were happening around the model.

Things like:

  • making important decisions without asking
  • carrying too much irrelevant context
  • forgetting decisions from previous sessions
  • not using the right specialist capability
  • modules working independently but breaking when integrated
  • saying something is “done” without enough verification

So instead of trying to solve everything with a bigger prompt, I started building a system around the agent.

I called it Escapement.

The basic loop is:

Specify → Route → Execute → Verify → Persist

It’s a repository-native harness that sits around coding agents rather than replacing them.

The core idea is:

Don’t upgrade the model. Upgrade how the model works.

Current v1 is at v6.3.0 and includes:

  • 35 native skills
  • 58 specialist capability strengths
  • 143/143 unit tests passing
  • 22/22 routing evals passing
  • 4 real-use case studies
  • bounded, phase-specific context
  • persistent project and multi-module state
  • deterministic verification evidence
  • security + UI quality gates
  • observability
  • harness ablation

One thing I’m actively trying to avoid is turning this into a giant framework full of rules nobody has evidence for.

The philosophy has gradually become:

Observed failure → smallest useful mechanism → regression evidence

If agents repeatedly ignore something that can be checked mechanically, I’d rather build a deterministic check than add another paragraph to the prompt.

I’ve also started removing parts of the harness and rerunning the eval corpus to see whether they actually matter.

One component dropped routing performance from 22/22 to 13/22 when removed.

Another produced no measurable difference in the current routing benchmark.

And I actually think the second result is just as useful.

Either the component isn’t helping, or the benchmark isn’t measuring what it is supposed to improve.

Both are things worth knowing.

The biggest current limitation is cross-host evidence.

The strongest real-use validation is still on Claude Code. Codex runtime packaging exists, but I don’t want to call it equivalent support until it has equivalent evidence.

What comes next: Continuum

I’m already working on the next-generation research architecture, Continuum.

A lot of its design is being inspired by ideas from physics, quantum theory, probability, information theory and decision science — not by trying to build a quantum computer, but by asking whether some of those scientific concepts can produce better execution systems.

For example:

superposition → preserve multiple plausible strategies
measurement → gather evidence before committing
contextuality → a capability’s value depends on the state around it
entanglement → coupled state across agents and modules
Value of Information → decide whether more information is worth acquiring
reversibility → govern exploration differently from irreversible action

The broader idea is to move from:

Task → Pick route → Execute

toward:

Intent → State → Alternatives → Observe → Update → Commit → Execute → Evidence

v1 stays independent and stable.

v1 is evidence, not baggage.

Continuum is where I’m testing what comes after it.

If anyone finds this area interesting and wants to contribute — whether through architecture, experiments, evaluations, agent memory, multi-agent systems, RLMs, context engineering or just trying to break the assumptions — I’d be very interested in collaborating.

A lot of the thinking behind this project has also come from researchers, open-source developers and AI creators who make their experiments and ideas public. That ecosystem has been incredibly useful.

I’m posting this mostly because I want criticism.

What feels over-engineered?

What would you remove?

What harness-level failure modes are you seeing that better models still don’t solve?

Repo:

https://github.com/SiddheshKGupta/Escapement

u/Zestyclose_Music_409 — 11 days ago

i built 6 ai micro-saas generating $20k/mo. i started a small group to share exactly how.

I currently run 6 operational micro ai saas products that generate a little over $20k in monthly recurring revenue.

I hardly wrote a single line of traditional code. i used ai to generate literally everything, from the database architecture to the user interface.

it wasn't magic on day one. i spent hours stuck in endless debugging loops and dealing with faulty ai code before i finally cracked the formula.

it basically comes down to three rules:

- keeping the idea aggressively minimalist (build a true mvp, not a platform).

- guiding the ai step-by-step instead of asking it to build the whole app at once.

- launching fast to get real user traction instead of perfecting features in secret.

lately, i've seen way too many non-technical founders give up at the very first ai bug or deployment error. or the worst, give up without push anything in marketing !!!!

it's a massive shame, because the technical barrier to entry has practically disappeared and the marketing is easy in 2026

because of this, i’m launching a skool community to share my exact method.

to be completely transparent: i will likely charge for the full course later down the road. it just makes sense given the specific prompt sequences, n8n workflows, and copy-and-paste templates i'll be sharing.

but right now, our main objective is simply to build together. working alone in a silent corner is the absolute fastest way to quit.

if you want to join a group of active creators and build or launch your own ai saas: drop a comment below or send me a dm, and i’ll send you the invite link.

reddit.com
u/Wide-Tap-8886 — 11 days ago