Hivemind 2026.04.17: Tasks, Hooks, and Agent Hierarchy

· Hivemind TeamHivemind 2026.04.17: Tasks, Hooks, and Agent Hierarchy

The Big One: Tasks with Event-Driven Hooks

This is what we've been building toward since the task system shipped in 2026.04.01. Tasks now support event-driven hooks — execute custom code when a task transitions status, gets assigned, or hits a deadline.

What this means in practice:

Hooks are skills you've already written. Pick the skill, pick the trigger status, done. The hook fires with full context: task details, assigned agent, priority, description, everything. Your skill has everything it needs to make decisions.

This is the foundation for autonomous task orchestration. Workflows that route themselves, escalate themselves, and coordinate across teams without human intervention. It's what turns the task system from a nice UI into a real automation engine.


Heartbeat Architecture Overhaul

The heartbeat — the background process that keeps Hivemind running — got a complete redesign.

What it used to be: A single monolithic loop that touched everything. Every agent, every task, every integration, every scheduled job, all in one big heartbeat cycle. If one component got slow, it blocked everything else.

What it is now: A distributed event bus with independent subscribers. Each component — agent thinker, task orchestrator, integration dispatcher, scheduled job runner — is its own subscriber. They fire independently based on the events they care about.

The impact is dramatic:

The heartbeat is now horizontal scalable for the first time. Run multiple heartbeat workers, they coordinate via the event bus, work distributes automatically.


Agent Hierarchy & Org Charts

Agents now support organizational structure. Define parent-child relationships, team hierarchies, and reporting lines. Mission Control renders them as interactive org charts.

Click on an agent and see:

This is more than a vanity org chart. The hierarchy affects how agents discover each other for delegation, how escalations work, and how permission inheritance flows.

An agent at the bottom of a hierarchy can't delegate tasks up the chain without going through the proper channels. An agent can be configured to only accept certain types of tasks from certain team members. Permissions and trust relationships are modeled explicitly.

For large teams running dozens of agents across multiple domains, this brings structure without adding friction.


Chat UI Redesign

The chat interface got a major visual overhaul focused on clarity and context.

What changed:

The redesign maintains the conversational feel that makes Hivemind approachable while making technical interactions clear enough for power users.


Browser Sidecar Tools

Agents can now control a real browser instance through new browser tools:

ToolWhat It Does
browser_navigateGo to a URL
browser_screenshotTake a screenshot of the current page
browser_clickClick an element by text, selector, or position
browser_fillFill form fields
browser_extract_textGet all text from the page (useful for scraping)
browser_extract_linksGet all links on the page

This lets agents perform tasks that API-based tools can't: filling out dynamic forms, interacting with SPAs, scraping JavaScript-rendered content, automating click-heavy workflows.

The browser runs in its own container, isolated from the agent runtime. Network access is governed by the same rules as any other tool — only allowlisted domains can be reached. And every action is logged, so you have a complete audit trail of what the agent did.


Minor But Solid Improvements


Upgrade

hivemind upgrade

No manual steps. The event bus migration applies automatically, and existing tasks are converted to the new hook system (with no hooks attached — you add them as needed).

Full changelog: 2026.04.14 → 2026.04.17


Questions or feedback? Find us on Discord or open an issue on GitHub.

Agents that coordinate are agents that ship.