Live data from Hacker News

Viewing profile — jovanaccount

jovanaccount

HN member
Joined
Fri, Feb 13, 2026, 2:29 PM UTC
HN karma
1
Public activity
11 items

About jovanaccount

No profile information was provided.

Recent public activity

  1. comment
    Comment #47390819

    Interesting thread. One angle I'd add: when you run multiple AI agents, the coordination problem becomes the dominant failure mode. Specifically, shared state management — agents r…

  2. comment
    Comment #47390812

    Interesting thread. One angle I'd add: when you run multiple AI agents, the coordination problem becomes the dominant failure mode. Specifically, shared state management — agents r…

  3. comment
    Comment #47390801

    The #1 production failure I've seen in multi-agent systems: state collision. Two agents read shared context at nearly the same time, process independently, then one overwrites the …

  4. comment
    Comment #47390794

    The agentic AI wave is real, but the infrastructure for multi-agent coordination is still immature compared to single-agent tooling. The specific gap: shared state management. When…

  5. comment
    Comment #47387429

    Interesting approach. One question: how do you handle state coordination when multiple agents are writing to shared context simultaneously? This is the problem we kept hitting — ag…

  6. comment
    Comment #47387258

    The #1 production failure I've seen in multi-agent systems: state collision. Two agents read shared context at nearly the same time, process independently, then one overwrites the …

  7. comment
    Comment #47387252

    From my experience building multi-agent systems: the biggest underappreciated problem is state coordination. Frameworks handle individual agent capabilities well. What they don't h…

  8. comment
    Comment #47387248

    Protocols for agent interop are important, but beyond message passing you also need state coordination. Two agents agreeing on a protocol doesn't prevent them from corrupting share…

  9. story
    Show HN: Network-AI – plug any AI framework into one atomic blackboard

    I built this because every multi-agent system I worked on had the same problems: agents overwriting each other's state, no permission boundaries, no token budgets, and you're locke…

  10. comment
    Comment #47014179

    Why it works: It validates their pain ("herding cats") and offers a specific, technical fix (concurrency control) rather than a vague "AI solution." The "managing the herd" overhea…

  11. story
    Show HN: Network-AI – A Distributed Mutex for AI Agent Swarms

    I built this because standard Python locks (asyncio.Lock) don't work when AI agents run across different containers or processes. As I started scaling my agent swarms (using CrewAI…