SimpleNews.ai

Hive Framework Generates Self-Evolving AI Agent Topologies

Saturday, February 14, 2026

Vincent Jiang and his team at Aden have released Hive, an open-source agent framework that automatically generates and evolves its own topology based on task requirements. After spending four years building ERP automation for construction companies, the team encountered limitations with existing agent frameworks that led them to develop a fundamentally different approach.

Hive Generates Agent Systems From Natural Language Goals

Unlike traditional frameworks such as LangChain or AutoGPT, Hive uses a coding agent to generate entire agent systems from natural language descriptions. When agents fail, the framework automatically captures failure data, evolves the agent graph, and redeploys without human intervention. The system implements what Jiang calls an "OODA loop" (Observe, Orient, Decide, Act) to manage stochastic AI behavior, treating exceptions as observations rather than crashes.

The Framework Applies Biological Concepts to Agent Reliability

Hive incorporates psychological and biological principles into its architecture. The system uses a "stress" metric to prevent infinite loops—if an action fails three times, the agent's "neuroplasticity" drops, forcing a strategy shift. Agents can be assigned traits that modify their behavior: high conscientiousness increases verification steps, while high risk tolerance enables more aggressive execution strategies.

The framework addresses reliability through what Jiang calls a "Synthetic SLA," wrapping models in verification loops that trade compute budget for certainty. A model with 80% accuracy can be mathematically forced toward higher reliability through best-of-three validation.

Aden Team Critiques General Computer Use Approaches

The Aden team explicitly challenges the current hype around General Computer Use (GCU) frameworks that rely on screenshot analysis. Jiang argues this approach is "skeuomorphic"—mimicking human constraints rather than leveraging machine capabilities. GCU agents are slow, expensive, and fragile because they depend on visual interface analysis and break when UIs change.

Production AI Requires Asynchronous State Management

The team's four years working with enterprise customers revealed that real business processes don't fit into synchronous chat sessions. Accounting teams need ledgers reconciled overnight, not chatbot interactions. Hive was designed for asynchronous operations spanning days or weeks, maintaining state across sessions.

Hive is available under the Apache License 2.0 on GitHub at adenhq/hive. The project has no dependencies on existing agent frameworks and was built from scratch. The Hacker News announcement received 106 points and 34 comments, with Jiang inviting engineers interested in biology, psychology, and distributed systems to contribute.

Key Takeaways

  • Hive generates and evolves agent topologies automatically from natural language goals, using a coding agent to create and modify the system architecture
  • The framework implements an OODA loop that treats failures as observations, allowing agents to adapt strategies in real-time without crashing
  • Hive applies biological concepts like homeostasis and neuroplasticity, using a "stress" metric to prevent infinite loops and force strategy shifts after repeated failures
  • The system achieves reliability through "Synthetic SLA," wrapping models in verification loops that trade compute budget for mathematical certainty
  • Built by a team with four years of enterprise ERP automation experience, Hive is open-source under Apache License 2.0 with no dependencies on existing agent frameworks