Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

YOUR AI TEAM SHOULD NOT LOOK LIKE FIVE CHAT WINDOWS. IT SHOULD LOOK LIKE THIS. FIVE AGENTS. ONE PERSISTENT MEMORY. WORK THAT KEEPS MOVING AFTER THE HUMAN LEAVES. I TURNED THE ARCHITECTURE IN THIS ARTICLE INTO A LIVE SYSTEM MAP. everyone reads multi-agent architecture as a list of roles:...

28,513 Aufrufe • vor 12 Tagen •via X (Twitter)

32 Kommentare

Profilbild von Adam
Adamvor 12 Tagen

It should also not have a bunch of useless graphics burning the gpu you need to use to run it. Looks cool, likely bullshit and doesn’t function.

Profilbild von hammertime
hammertimevor 12 Tagen

good prompts matters

Profilbild von Mr.SahaRok
Mr.SahaRokvor 12 Tagen

This is the real difference between “a bunch of AI agents” and an actual AI system. The agents aren’t the breakthrough. The handoffs are. Persistent memory, shared context, clear routing, and work that continues without constant human intervention — that’s when multi-agent architecture starts looking less like five chat windows and more like an operating system for a business.

Profilbild von beamnxw ./
beamnxw ./vor 12 Tagen

this is what an ai team should look like

Profilbild von Kuzka_aaa
Kuzka_aaavor 12 Tagen

Five role prompts are a weekend. Shared state that survives the session is the product. The line that matters: a handoff is a first-class event. If you can’t see work move, you just have five processes sitting next to each other. Chief of staff owning the center is how these setups die. Orchestrator-as-bottleneck is the default failure mode.

Profilbild von Vermis
Vermisvor 12 Tagen

I’m testing LLM Wiki, and this really shows why shared persistent context matters more than just adding more agents.

Profilbild von François
Françoisvor 11 Tagen

hang it in the louvre immediately...

Profilbild von riVeN
riVeNvor 11 Tagen

shared state is what makes the approval boundary hard. one agent writes to the center, another acts on it, so the irreversible step lands where no human is watching.

Profilbild von Moti Shriki
Moti Shrikivor 12 Tagen

It’s obviously not real… just ai generated video

Profilbild von 💎 Bitcoin Chris 🧡
💎 Bitcoin Chris 🧡vor 12 Tagen

🔥🔥🔥

Profilbild von Livio Andrea Acerbo
Livio Andrea Acerbovor 11 Tagen

Treating handoffs as first-class events is the key insight. Once every transfer carries state, ownership, acceptance criteria and rollback, multi-agent work becomes observable and the coordinator stops being an invisible bottleneck.

Profilbild von fedulioai
fedulioaivor 11 Tagen

It looks really cool.

Profilbild von kvinsi
kvinsivor 11 Tagen

looks very nice

Profilbild von NIFFTYCAT
NIFFTYCATvor 12 Tagen

Looks like an eye

Profilbild von Pessi, Lionel
Pessi, Lionelvor 12 Tagen

So you're fapping at cosmic hole while agents do their job

Profilbild von Bober_smart
Bober_smartvor 12 Tagen

It looks like real magic

Profilbild von MAIL
MAILvor 12 Tagen

okay, i’m saving this now.

Profilbild von Tony Tong | Founder | Ancient Systems x AI
Tony Tong | Founder | Ancient Systems x AIvor 12 Tagen

Shared state as infrastructure instead of chat history is the fix I made internally. Late July I named one document the actual brand authority and retired the older summary people kept half-quoting from memory. A system needs one source, not five people's recall of it.

Profilbild von Layveyy
Layveyyvor 12 Tagen

I’ve been testing Atomic Memory, and shared persistent state is what makes multi-agent teams feel like one system.

Profilbild von Jwilluno307
Jwilluno307vor 12 Tagen

Why?

Profilbild von sopersone
sopersonevor 12 Tagen

the handoffs are definitely more important than the number of agents

Profilbild von Enhans
Enhansvor 11 Tagen

Agreed. The handoffs carry the weight, and shared state is what makes them possible. The stop line rarely sits in one place. Reading a document and sending an invoice carry different levels of risk. Is approval scoped per agent, or per action?

Profilbild von OnFinality
OnFinalityvor 12 Tagen

Definitely. It's less about the prompt itself and more about designing the system around it now.

Profilbild von Atlas Frontier
Atlas Frontiervor 12 Tagen

Five agents without durable handoffs are just five chat windows. Shared state, visible handoffs, and clear human boundaries are the infrastructure. Reliability lives at the interfaces.

Profilbild von morsen
morsenvor 12 Tagen

this is crazy system fr

Profilbild von Antony Claude
Antony Claudevor 12 Tagen

this is super interesting a good mental model

Profilbild von nevian
nevianvor 12 Tagen

this is really what the system should look like

Profilbild von Dekos
Dekosvor 12 Tagen

I completely agree with you

Profilbild von กุ้ง กุ้ง
กุ้ง กุ้งvor 9 Tagen

Successful implementation of renewable energy systems requires clear metrics, iterative experimentation, and continuous evaluation in large-scale production environments.

Profilbild von slash1s
slash1svor 12 Tagen

bro it’s look crazy

Profilbild von Logics
Logicsvor 12 Tagen

what a great visual broski love it

Profilbild von leiro
leirovor 12 Tagen

the real magic starts with proper handoffs and shared memory

Ähnliche Videos

Agents vs. Graphs, clearly explained! spawning more agents is great, but it has a ceiling nobody says out loud: five agents is a count. a graph is a shape. only one of them changes the answer. point five agents at the same pile with the same window and they converge. the first one writes a finding, the rest read it, and all five reports centre on the same thing. you paid five times for one opinion with four echoes. Graph engineering fixes this by moving the decision up a layer: not how many agents, but who is allowed to look at what. you need both. here's how it works: ↳ the count buys you throughput. five things happening instead of one ↳ the shape buys you coverage. five different things happening instead of the same one five times Prompts → Context → Harness → Agents → Graphs the node that does this is the splitter, and it decides more than any other node in the system. cut a repository by folder and four workers audit the same three files. cut it by blast radius and each one sees something the others cannot. the trick is being selective about what each lane is allowed to see. separate contexts are not a nice-to-have, they are the mechanism. if two agents are meant to produce different things, they must not share a window. if they are meant to produce the same thing, you did not need two agents. one thing to know before you scale it. a branch that throws does not reject the batch. it resolves to null, and that is the containment. which means your merge quietly receives a short list. ↳ filter the nulls before the merge, or one dead lane poisons the whole result ↳ never index a merge by position. eight good branches and one failure will shift everything by one, silently skip that and the run looks like it worked. the output is just missing a lane, and nothing errored. and the one that eats whole nights: multi-agent setups can use up to fifteen times the total tokens of a single chat, because every lane reloads its own core. you are trading total tokens for a clean main window. usually the right trade, always a choice. below i have quoted my full guide on graph engineering. it covers the three topologies, the verifier patterns, and where the gate should actually open. save this and read it below ↓

Hanako

96,967 Aufrufe • vor 27 Tagen

Orchestrators vs. Graphs, clearly explained! orchestrators are great, and everyone builds one first. here is the ceiling: an orchestrator sits above the work and routes every message. five agents report to it. it reads all five. it decides what each one does next, and reads all five replies. that is ten trips through one context, and by the fifth agent that context has read four reports, five instructions and its own reasoning about all of them. Graph engineering fixes this by removing the seat: not a better router, but no router at all. you need both, and here is the sentence that resolves the whole confusion: an orchestrator sits above the work and holds all of it. a graph is the shape of the work, and holds none of it. ↳ above the work: one context that has to see everything before anything ships ↳ inside the work: a splitter that hands out and lets go, and a merge that reads nothing Prompts → Context → Harness → Loops → Graphs the coordination did not disappear. it moved into the edges, where it costs nothing and cannot get tired. the trick is noticing what you actually built. if one node has to see every result before the run can finish, you did not remove the bottleneck. you hired it, gave it the longest context in the system, and made it the thing you were counting on to stay sharp. one thing to know before you scale it. an orchestrator degrades in the one way nothing catches. ↳ it does not crash, time out or return an error. it stays up and keeps routing ↳ it just starts routing worse, somewhere around the fifth report, and every downstream agent does exactly what it was told that last one catches careful people. you can have perfect isolation on every worker and still have one window quietly drifting at the top, and the traces will all look clean because each worker did its job. and the one that eats whole nights: the merge is where this shows up first. ranking five findings is not judgment, it is a sort. if a model is doing it, you are paying a model to read five reports so it can put them in an order that three lines of code would have got right, and now that model has read everything too. below i have quoted my full guide on graph engineering. it covers the three topologies, the verifier patterns, and where the gate should actually open. save this and read it below ↓

Hanako

43,078 Aufrufe • vor 5 Tagen

Everyone wants agent swarms. Very few people are talking seriously enough about the context layer that makes swarms useful. Even with one agent, context is fragile. Too little context and the agent guesses. Too much context and it wastes tokens, loses focus, or reasons over irrelevant noise. The sweet spot is precise context: the right knowledge, in the right structure, at the right moment. With many agents, that challenge explodes. Each agent produces decisions, assumptions, findings, summaries, risks, and partial conclusions. Unless that knowledge becomes shared, structured, and reusable, every new agent is forced to rediscover what another agent already learned. That is not a swarm. That is a crowd. Shared context graphs are what turn agent activity into agent collaboration, and OriginTrail DKG V10 brings them to life. Was just playing with some final polishing for the V10 release, and it is really powerful to see shared context graphs where multiple agents contribute knowledge into the same connected memory, with attribution visible directly in the graph ui. That matters for three reasons. First, agents can access and build on one shared memory instead of staying trapped in isolated sessions. Second, the graph structure helps them retrieve the exact context they need, instead of stuffing everything into a prompt and hoping the model sorts it out. Third, verifiability of provenance. You can see which agent contributed each piece of knowledge, trace the source, and decide what to trust. Tokenmaxxing starts with fewer tokens, but the deeper story is coordination - agents stop reloading the world and start building on shared, verifiable context. That is the foundation for serious multi-agent work across software engineering, research, finance, operations, project management, and far beyond. The future is not more agents, it is agents working from shared, verifiable context. But the more the merrier, of course.

Jurij Skornik

11,180 Aufrufe • vor 3 Monaten

this video is the CLEAREST explanation of how claude skills + AI agents work and how to use them most people set up an AI agent and wonder why it keeps disappointing them. the context window is everything context is what the model assembles before it takes any action. think of it like everything the agent needs to read before it does anything. the quality of what goes in determines the quality of what comes out. the models are genuinely really good right now. claude and gpt are exceptional. the variable is almost always the context you give them. 1. agent.md files are mostly unnecessary every single line you put in an agent.md file gets added to every single conversation you have with your agent. a 1000 line file is around 7000 tokens burning on every run. the model already knows to use react. it can read your codebase. save the agent.md for proprietary information specific to your company that the model genuinely cannot know on its own. 2. skills are the actual unlock a skill.md file works differently. what loads into context is only the name and description, around 50 tokens. the full instructions only appear when the agent recognizes it needs that skill. so instead of 7000 tokens on every run you have 50. and the agent stays sharp because the context window stays lean. the closer you get to filling the context window the worse the agent performs, same way you perform worse when someone dumps 10 things on you at once. 3. here is how to actually build a skill the right way most people identify a workflow and immediately try to write the skill. what you want to do instead is run the workflow by hand with the agent first. walk it through every single step. tell it what to check, what good looks like, what bad looks like. correct it in real time. once you have had a full successful run from start to finish, tell the agent to review everything it just did and write the skill itself. it writes a better skill than you will because it has the full context of what actually worked in practice not in theory. 4. recursively building skills is how you go from frustrated to reliable when the skill breaks, and it will break, ask the agent exactly why it failed. it will tell you specifically what went wrong. fix it together in that same conversation. then tell it to update the skill file so that failure mode never happens again. ross mike did this five times with his youtube report generator. it now pulls from eight different data sources and runs flawlessly every single time without him touching it. 5. sub agents are something you earn not something you set up on day one start with one agent. build one workflow. turn it into one skill. once that works add another. ross mike has five sub agents now covering marketing, business, personal and more. it took months to get there and every single one exists because a workflow proved it deserved to exist. the people who set up 15 sub agents on day one and wonder why nothing works skipped all the steps that make the thing actually run. 6. your workflow is the thing the model cannot get anywhere else the model has been trained on everything. it knows more than you about most things. what it does not have is your specific process, your taste, your way of doing things. that is what skills capture. that is what makes your agent actually useful versus a generic one. downloading someone else's skill means downloading their context onto your setup and it will not work the way you want it to because it was never built around how you work. this is the clearest explanation of how agents actually work i have heard. Micky runs this stuff every single day and the results show it. full episode is now live on The Startup Ideas Podcast (SIP) 🧃 where you get your pods people charge for this sorta stuff i give away the sauce for free i just want you to win watch

GREG ISENBERG

194,171 Aufrufe • vor 5 Monaten

Hermes agent just left the terminal. 𝗛𝗲𝗿𝗺𝗲𝘀 𝗗𝗲𝘀𝗸𝘁𝗼𝗽 dropped yesterday. native app for macOS, Windows, and Linux. for months Hermes was the agent that learned your projects, wrote its own skills, and built a model of who you are. all of it buried in terminal logs. now it has a window. the important part is that it's not a wrapper. it runs the same agent core, the same sessions, memory, and skills as the CLI. you can start a task in the terminal and finish it in the app without anything resetting. the state is shared across every interface, not copied between them. what the GUI actually adds: → streaming chat that shows live tool calls and inline reasoning instead of a spinner → a preview rail that renders pages, code, and images right beside the conversation → an artifacts panel that collects every file the agent has ever produced → remote gateway mode, so you can point the app at a VPS and run the heavy work elsewhere → skills, cron, profiles, and gateways managed point-and-click instead of through YAML → voice mode, drag-drop files, and inline image generation remote gateway mode is the one worth slowing down on. the agent runs 24/7 on a $5 server while you control it from your laptop like a local app. other agent UIs are chatboxes with a logo. this one shows the autonomy instead of hiding it, so you watch the skills load, the tools fire, and the artifacts pile up as it works. it was teased in Jensen's GTC keynote. MIT licensed, local-first, no telemetry. if you already run Hermes, download it and everything is already there. your chats, memory, and skills carry straight over. i wrote a full masterclass on Hermes Agent that walks through the SOUL. md identity layer, the three-tier memory system, the self-evolving skills loop, and how to run three specialized agents 24/7. desktop is the interface that finally does all of it justice. the article is quoted below.

Akshay 🚀

51,540 Aufrufe • vor 3 Monaten

THIS GUY BUILT AN AUTONOMOUS AI AGENT OUT OF CLAUDE CODE + OBSIDIAN and this is way more interesting than another “use AI to take notes” demo the trick is simple: Obsidian is not the writing app here. it becomes the agent’s memory, task board, and context folder. Claude Code is not just answering prompts. it reads the vault, edits files, follows instructions, and keeps moving through the work like a junior operator with a filesystem. the reusable setup looks like this: 1. create an Obsidian vault for one project 2. keep goals, rules, tasks, decisions, and references as markdown files 3. point Claude Code at the folder 4. give it a clear operating loop: read context → choose next task → execute → write back what changed 5. use the notes as persistent memory instead of re-explaining the project every chat that’s the part people miss. the “agent” is not magic. it’s the boring combination of: - local files - explicit rules - task state - write access - a model that can run through the repo/vault Obsidian makes the memory human-readable. Claude Code makes the memory executable. that combo is why the video worked: it turns a notes app into an operating surface for actual work. best use cases: - content systems - research vaults - coding projects - client ops docs - personal knowledge bases that need actions, not just storage the caveat: if your vault is messy, your agent becomes messy too. folders, naming, “done” criteria, and forbidden actions matter more than the prompt. but once the structure is clean, this is one of the easiest ways to build an agent that remembers what happened yesterday without paying for a full custom app.

kocer

30,403 Aufrufe • vor 2 Monaten

your agent reviewing its own work is not a check. it is a second opinion from the same source. this is the most common gap in agent systems and it hides in plain sight, because the step exists. there is a review. it just cannot do the thing you think it does. here is the mechanism. the model produced an output from a context. you then ask the same model, holding the same context, whether that output is correct. it answers fluently, because that is what it does. and the answer is drawn from the same distribution that produced the thing being judged. same weights, same window, same blind spots. if the reason the output is wrong is something the model does not know, the review does not know it either. if the reason is something the context does not contain, the review has the same context. the failure mode and the detector share a cause. > why it feels like it works because most of the time the output is fine, and the review says fine. agreement is not evidence of detection. a reviewer that says pass on everything agrees with reality most of the time too. what you actually want to measure is what happens on the cases that are wrong. that is the only place a check earns its name, and it is exactly the place where a self-review is weakest. there is research on this. Huang and colleagues at DeepMind showed at ICLR 2024 that intrinsic self-correction, revising without external grounding, does not reliably help and often makes things worse. > what to actually do move the check outside the model. a test that runs, a schema that validates, a file that exists or does not, an exit code from something you did not write. these are not smarter than the model. they are just not correlated with it, and that is the entire value. when the judgement genuinely needs a model, at minimum use a different family. same family means shared blind spots, and frontier judges measurably inflate scores for outputs that look like their own. and split the work by kind. anything objectively checkable goes to code. only the genuinely semantic calls go to a judge, and those get a rubric written as one line. a review inside the loop tells you the model is confident. a check outside it tells you whether the work is done. save this - then read the eval setup below

Hanako

14,325 Aufrufe • vor 1 Monat