hive-test
Agent Testing
Test agents iteratively: execute, analyze failures, fix, resume from checkpoint, repeat.
When to Use
- Testing a newly built agent against its goal
- Debugging a failing agent iteratively
- Verifying fixes without re-running expensive early nodes
- Running final regression tests before deployment
Prerequisites
- Agent package at
exports/{agent_name}/(built with/hive-create) - Credentials configured (
/hive-credentials) ANTHROPIC_API_KEYset (or appropriate LLM provider key)
More from adenhq/hive
hive
Complete workflow for building, implementing, and testing goal-driven agents. Orchestrates hive-* skills. Use when starting a new agent project, unsure which skill to use, or need end-to-end guidance.
29hive-debugger
Interactive debugging companion for Hive agents - identifies runtime issues and proposes solutions
29hive-patterns
Best practices, patterns, and examples for building goal-driven agents. Includes client-facing interaction, feedback edges, judge patterns, fan-out/fan-in, context management, and anti-patterns.
28hive-concepts
Core concepts for goal-driven agents - architecture, node types (event_loop, function), tool discovery, and workflow overview. Use when starting agent development or need to understand agent fundamentals.
28hive-create
Step-by-step guide for building goal-driven agents. Qualifies use cases first (the good, bad, and ugly), then creates package structure, defines goals, adds nodes, connects edges, and finalizes agent class. Use when actively building an agent.
28hive-credentials
Set up and install credentials for an agent. Detects missing credentials from agent config, collects them from the user, and stores them securely in the local encrypted store at ~/.hive/credentials.
28