What problem does it solve?
The hive-create skill provides a structured, repeatable approach to building autonomous agents by generating the essential scaffolding: package layout, goals, node and edge graphs, and a ready-to-run agent class. This streamlines the complex process of agent construction and ensures consistency across projects.
Core Features & Use Cases
- Automated agent scaffolding: generates package structure, goals, nodes, edges, and the final agent class.
- Graph design validation and export: produces a ready-to-run Python package exported to exports/AGENT_NAME/.
- Reusable templates: aligns with existing agent patterns and supports customization for different domains.
Quick Start
Begin by running hive-create to generate a new agent scaffold, then iteratively define the goal (STEP 2) and design the node graph (STEP 3–4). Finally, build and export the complete package to exports/AGENT_NAME/ and validate the agent using the provided CLI. Adapt the workflow to your project by editing the generated files inside exports/AGENT_NAME/.