Agent skill · Workflow & Productivity

hive-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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill hive-concepts-aden-hive-hive --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Version: 2.0
Declared author: hive
Path: skills/agent/hive-concepts-aden-hive-hive/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Building Agents - Core Concepts Foundational knowledge for building goal-driven agents as Python packages. ## Architecture: Python Services (Not JSON Configs) Agents are built as Python packages: ``` exports/my_agent/ ├── __init__.py # Package exports ├── __main__.py # CLI (run, info, validate, shell) ├── agent.py # Graph construction (goal, edges, agent class) ├── nodes/__init__.py # Node definitions (NodeSpec) ├── config.py # Runtime config └── README.md # Documentation ``` **Key Principle: Agent is visible and editable during build** - Files created immediately as components are approved - User can watch files grow in their editor - No session state - just direct file writes - No "export" step - agent is ready when build completes ## Core Concepts ### Goal Success criteria and constraints (written to agent.py) ```python goal = Goal( id="research-goal", name="Technical Research Agent", description="Research technical topics thoroughly", success_criteria=[ SuccessCriterion( id="completeness", description="Cover all aspects of topic", metric="coverage_score", target=">=0.9", weight=0.4, ), # 3-5 success criteria total ], constraints=[ Constraint( id="accuracy", description="All i

What's inside
Steps it walks through
  1. Architecture: Python Services (Not JSON Configs)
  2. Core Concepts
  3. Goal
  4. Node
  5. Edge
  6. Client-Facing Nodes
  7. Node Design: Fewer, Richer Nodes
  8. nullableoutputkeys for Cross-Edge Inputs
  9. Event Loop Architecture Concepts
  10. How EventLoopNode Works
  11. EventLoopNode Runtime
  12. setoutput
  13. JudgeProtocol
  14. LoopConfig
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the hive-concepts skill do?

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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill hive-concepts-aden-hive-hive --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going