⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
browser-edge-cases
SOP for debugging browser automation failures on complex websites. Use when browser tools fail on specific sites like LinkedIn, Twitter/X, SPAs, or sites with Shadow DOM.
// RATINGS
// README
Overview
OpenHive is a zero-setup, model-agnostic runtime for colonies of agents. A colony is a group of specialized agents that work together to run one business process: a Queen — the persistent, client-facing lead — plus however many worker agents the job needs. You describe the outcome; the Queen does the work, then grows a colony around it to run that work reliably and at scale.
The mechanism underneath is one loop controlling many loops. Hive has a single execution primitive: the Queen is an agent loop, and every worker is a clone of it — same tools, same model, its own task. There is no graph to compile and no orchestration boilerplate to write. The colony coordinates through a shared ledger and a persistent plan, with crash-safe state, deep observability, and human oversight built into the one primitive every agent shares. See the Architecture Overview for how it works.
Features
- ✅ Colonies of agents — a Queen spawns worker clones on demand for parallel, long-running work
- ✅ One primitive, many loops — no graph to wire; the Queen grows the colony at runtime
- ✅ Shared tracker ledger + persistent task plan for coordination without a data buffer
- ✅ Queen personas with CEO-style routing and evolving, scoped memory
- ✅ Crash-safe park/resume, cost enforcement, and out-of-band human-in-the-loop (Sentinel)
- ✅ Zero Setup — no technical configuration required
- ✅ General Compute Use and Browser Use with Native Extension
- ✅ Custom Model Support
Visit adenhq.com for complete documentation, examples, and guides.
Visit HoneyComb to see what jobs are being automated by AI. It’s a stock market for jobs, driven by our community’s AI agent progress. You can long and short jobs (with no real money but compute token)based on how much you think a job is going to be replaced by AI.
https://github.com/user-attachments/assets/bf10edc3-06ba-48b6-98ba-d069b15fb69d
Who Is Hive For?
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:
- Want AI agents that execute real business processes, not demos
- Need a runtime that handles state, recovery, and parallel execution at scale
- Need adaptive agents that improve over time through reflexion, memory, and learned skills
- Require human-in-the-loop control, observability, and cost limits
- Plan to run agents in production where uptime, cost, and auditability matter
Hive may not be the best fit if you’re only experimenting with simple agent chains or one-off scripts.
When Should You Use Hive?
Use Hive when the bottleneck is no longer the model but the harness around it:
- Long-running agents that need state persistence and crash recovery
- Production workloads requiring cost enforcement, observability, and audit trails
- Agents that improve over time through reflexion, scoped memory, and learned skills
- Parallel, multi-agent work coordinated through a shared tracker ledger and persistent plan
- A framework that scales with model improvements rather than fighting them
Quick Links
- Documentation - Complete guides and API reference
- Self-Hosting Guide - Deploy Hive on your infrastructure
- Changelog - Latest updates and releases
- Roadmap - Upcoming features and plans
- Report Issues - Bug reports and feature requests
- Contributing - How to contribute and submit PRs
Quick Start
Prerequisites
- Python 3.11+ for agent development
- An LLM provider that powers the agents
- ripgrep (required for full search): Quickstart installs and verifies
rg; the tools container also includes it. To repair an existing installation, runuv run scripts/ensure_ripgrep.py --install. Windows useswinget install --exact --id BurntSushi.ripgrep.MSVC --source winget --scope user(Scoop/Chocolatey are alternatives). A custom installation can be selected withHIVE_RIPGREP_PATHset to the absolute executable path. Missingrgmakesterminal_rgfail explicitly unless approximate search is requested withallow_fallback=True.
Windows Users: Native Windows is supported via
quickstart.ps1andhive.ps1. Run these in PowerShell 5.1+. WSL is also an option but not required.
Installation
Note Hive uses a
uvworkspace layout and is not installed withpip install. Runningpip install -e .from the repository root will create a placeholder package and Hive will not function correctly. Please use the quickstart script below to set up the environment.
# Clone the repository
git clone https://github.com/aden-hive/hive.git
cd hive
# Run quickstart setup (macOS/Linux)
./quickstart.sh
# Windows (PowerShell)
.\quickstart.ps1
This sets up:
- framework - Core agent runtime and colony runtime (in
core/.venv) - aden_tools - MCP tools for agent capabilities (in
tools/.venv) - **credential sto
// HOW IT'S BUILT
KEY FILES