diff --git a/README.md b/README.md index 4126dd9e..3f0cb883 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ https://github.com/user-attachments/assets/bf10edc3-06ba-48b6-98ba-d069b15fb69d ## Who Is Hive For? -Hive is the harness layer for teams moving AI agents from prototype to production. Models are getting better on their own — the bottleneck is the infrastructure around them: state management, failure recovery, cost control, and observability. +Hive is the multi-agent harness layer for teams moving AI agents from prototype to production. Single agents like Openclaw and Cowork can finish personal jobs pretty well but lack the rigor to fulfil business processes. Hive is a good fit if you: @@ -194,18 +194,6 @@ flowchart LR style V6 fill:#fff,stroke:#ed8c00,stroke-width:1px,color:#cc5d00 ``` -### The Hive Advantage - -| Typical Agent Frameworks | Hive | -| -------------------------- | -------------------------------------- | -| Focus on model orchestration | **Production harness**: state, recovery, observability | -| Hardcode agent workflows | Describe goals in natural language | -| Manual graph definition | Auto-generated agent graphs | -| Reactive error handling | Outcome-evaluation and adaptiveness | -| Static tool configurations | Dynamic SDK-wrapped nodes | -| Separate monitoring setup | Built-in real-time observability | -| DIY budget management | Integrated cost controls & degradation | - ### How It Works 1. **[Define Your Goal](docs/key_concepts/goals_outcome.md)** → Describe what you want to achieve in plain English diff --git a/core/framework/runtime/README.md b/core/framework/runtime/README.md index 4caf2fd3..0159c2e1 100644 --- a/core/framework/runtime/README.md +++ b/core/framework/runtime/README.md @@ -1,6 +1,6 @@ # Agent Runtime -Unified execution system for all Hive agents. Every agent — single-entry or multi-entry, headless or TUI — runs through the same runtime stack. +Unified execution system for all Hive agents. Every agent — single-entry or multi-entry, headless or dashboard — runs through the same runtime stack. ## Topology @@ -153,7 +153,7 @@ The `EventBus` provides real-time execution visibility: | `CLIENT_INPUT_REQUESTED` | Agent needs user input | | `EXECUTION_COMPLETED` | Full execution finishes | -In headless mode, `AgentRunner` subscribes to `CLIENT_OUTPUT_DELTA` and `CLIENT_INPUT_REQUESTED` to print output and read stdin. In TUI mode, `AdenTUI` subscribes to route events to UI widgets. +In headless mode, `AgentRunner` subscribes to `CLIENT_OUTPUT_DELTA` and `CLIENT_INPUT_REQUESTED` to print output and read stdin. The web dashboard subscribes to route events to the frontend. ## Storage Layout diff --git a/docs/developer-guide.md b/docs/developer-guide.md index 039d138d..ceb4ddbd 100644 --- a/docs/developer-guide.md +++ b/docs/developer-guide.md @@ -99,7 +99,6 @@ hive/ # Repository root │ │ ├── storage/ # File-based persistence │ │ ├── testing/ # Testing utilities │ │ ├── tools/ # Built-in tool implementations -│ │ ├── tui/ # Terminal UI dashboard │ │ └── utils/ # Shared utilities │ ├── tests/ # Unit and E2E tests (including dummy agents) │ ├── pyproject.toml # Package metadata and dependencies