hive-patterns
目標達成型のAIエージェント構築に役立つ、顧客対応、フィードバック、判断、分散処理、状況管理などのベストプラクティスやパターン、アンチパターンをまとめた実践的なノウハウを提供するSkill。
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
目標達成型のAIエージェント構築に役立つ、顧客対応、フィードバック、判断、分散処理、状況管理などのベストプラクティスやパターン、アンチパターンをまとめた実践的なノウハウを提供するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o hive-patterns.zip https://jpskill.com/download/9610.zip && unzip -o hive-patterns.zip && rm hive-patterns.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9610.zip -OutFile "$d\hive-patterns.zip"; Expand-Archive "$d\hive-patterns.zip" -DestinationPath $d -Force; ri "$d\hive-patterns.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
hive-patterns.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
hive-patternsフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
エージェントの構築 - パターンとベストプラクティス
堅牢な目標駆動型エージェントを構築するためのデザインパターン、例、およびベストプラクティス。
前提条件: hive-create を使用したエージェント構造の完成。
実践的な例: ハイブリッドワークフロー
直接ファイル書き込みとオプションの MCP 検証の両方を使用してノードを構築する方法:
# 1. 最初にファイルに書き込む (プライマリ - 可視化する)
node_code = '''
search_node = NodeSpec(
id="search-web",
node_type="event_loop",
input_keys=["query"],
output_keys=["search_results"],
system_prompt="Search the web for: {query}. Use web_search, then call set_output to store results.",
tools=["web_search"],
)
'''
Edit(
file_path="exports/research_agent/nodes/__init__.py",
old_string="# Nodes will be added here",
new_string=node_code
)
# 2. オプションで MCP で検証する (セカンダリ - 記録)
validation = mcp__agent-builder__test_node(
node_id="search-web",
test_input='{"query": "python tutorials"}',
mock_llm_response='{"search_results": [...mock results...]}'
)
ユーザーエクスペリエンス:
- ユーザーはエディターでノードをすぐに確認できます (ステップ 1 から)
- 検証フィードバックを取得します (ステップ 2 から)
- 必要に応じてファイルを直接編集できます
複数ターンのインタラクションパターン
ユーザーとの複数ターンの会話が必要なエージェントの場合は、event_loop ノードで client_facing=True を使用します。
クライアント対応ノード
クライアント対応ノードは、LLM の出力をユーザーにストリーミングし、会話のターン間でユーザー入力をブロックします。これは、古い pause/resume パターンを置き換えるものです。
# STEP 1/STEP 2 プロンプトパターンを持つクライアント対応ノード
intake_node = NodeSpec(
id="intake",
name="Intake",
description="Gather requirements from the user",
node_type="event_loop",
client_facing=True,
input_keys=["topic"],
output_keys=["research_brief"],
system_prompt="""\
You are an intake specialist.
**STEP 1 — Read and respond (text only, NO tool calls):**
1. Read the topic provided
2. If it's vague, ask 1-2 clarifying questions
3. If it's clear, confirm your understanding
**STEP 2 — After the user confirms, call set_output:**
- set_output("research_brief", "Clear description of what to research")
""",
)
# 内部ノードはユーザーインタラクションなしで実行されます
research_node = NodeSpec(
id="research",
name="Research",
description="Search and analyze sources",
node_type="event_loop",
input_keys=["research_brief"],
output_keys=["findings", "sources"],
system_prompt="Research the topic using web_search and web_scrape...",
tools=["web_search", "web_scrape", "load_data", "save_data"],
)
仕組み:
- クライアント対応ノードは、LLM テキストをユーザーにストリーミングし、各応答後にユーザー入力をブロックします
- ユーザー入力は
node.inject_event(text)を介して挿入されます - LLM が
set_outputを呼び出して構造化された出力を生成すると、judge が評価して ACCEPT します - 内部ノード (非クライアント対応) は、ブロックせずにループ全体を実行します
set_outputは合成ツールです。set_output呼び出しのみ (実際のツールなし) のターンは、ユーザー入力のブロックをトリガーします
STEP 1/STEP 2 パターン: クライアント対応のプロンプトは常に明示的なフェーズで構成してください。STEP 1 はテキストのみの会話です。STEP 2 は、ユーザーの確認後に set_output を呼び出します。これにより、LLM がユーザーが応答する前に set_output を時期尚早に呼び出すのを防ぎます。
client_facing を使用するタイミング
| シナリオ | client_facing | 理由 |
|---|---|---|
| ユーザー要件の収集 | Yes | ユーザー入力が必要 |
| ヒューマンレビュー/承認チェックポイント | Yes | 人間の判断が必要 |
| データ処理 (スキャン、スコアリング) | No | 自律的に実行されます |
| レポート生成 | No | ユーザー入力は不要 |
| アクション前の最終確認 | Yes | 明示的な承認が必要 |
レガシーノート:
pause_nodes/entry_pointsパターンは下位互換性のために引き続き機能しますが、新しいエージェントではclient_facing=Trueが推奨されます。
エッジベースのルーティングとフィードバックループ
条件付きエッジルーティング
同じソースからの複数の条件付きエッジは、古い router ノードタイプを置き換えます。各エッジは、ノードの出力に対する条件をチェックします。
# 相互に排他的な出力を持つノード
review_node = NodeSpec(
id="review",
name="Review",
node_type="event_loop",
client_facing=True,
output_keys=["approved_contacts", "redo_extraction"],
nullable_output_keys=["approved_contacts", "redo_extraction"],
max_node_visits=3,
system_prompt="Present the contact list to the operator. If they approve, call set_output('approved_contacts', ...). If they want changes, call set_output('redo_extraction', 'true').",
)
# フォワードエッジ (正の優先度、最初に評価)
EdgeSpec(
id="review-to-campaign",
source="review",
target="campaign-builder",
condition=EdgeCondition.CONDITIONAL,
condition_expr="output.get('approved_contacts') is not None",
priority=1,
)
# フィードバックエッジ (負の優先度、フォワードエッジの後に評価)
EdgeSpec(
id="review-feedback",
source="review",
target="extractor",
condition=EdgeCondition.CONDITIONAL,
condition_expr="output.get('redo_extraction') is not None",
priority=-1,
)
キーコンセプト:
nullable_output_keys: 設定されない可能性のある出力キーをリストします。ノードは、実行ごとに相互に排他的なキーのいずれか 1 つだけを設定します。max_node_visits: フィードバックターゲット (extractor) で >1 である必要があります。これにより、再実行できます。デフォルトは 1 です。priority: 正 = フォワードエッジ (最初に評価)。負 = フィードバックエッジ。executor は最初にフォワードエッジを試します。一致するものがない場合は、フィードバックエッジにフォールバックします。
ルーティング決定テーブル
| パターン | 古いアプローチ | 新しいアプローチ |
|---|---|---|
| Conditiona |
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Building Agents - Patterns & Best Practices
Design patterns, examples, and best practices for building robust goal-driven agents.
Prerequisites: Complete agent structure using hive-create.
Practical Example: Hybrid Workflow
How to build a node using both direct file writes and optional MCP validation:
# 1. WRITE TO FILE FIRST (Primary - makes it visible)
node_code = '''
search_node = NodeSpec(
id="search-web",
node_type="event_loop",
input_keys=["query"],
output_keys=["search_results"],
system_prompt="Search the web for: {query}. Use web_search, then call set_output to store results.",
tools=["web_search"],
)
'''
Edit(
file_path="exports/research_agent/nodes/__init__.py",
old_string="# Nodes will be added here",
new_string=node_code
)
# 2. OPTIONALLY VALIDATE WITH MCP (Secondary - bookkeeping)
validation = mcp__agent-builder__test_node(
node_id="search-web",
test_input='{"query": "python tutorials"}',
mock_llm_response='{"search_results": [...mock results...]}'
)
User experience:
- Immediately sees node in their editor (from step 1)
- Gets validation feedback (from step 2)
- Can edit the file directly if needed
Multi-Turn Interaction Patterns
For agents needing multi-turn conversations with users, use client_facing=True on event_loop nodes.
Client-Facing Nodes
A client-facing node streams LLM output to the user and blocks for user input between conversational turns. This replaces the old pause/resume pattern.
# Client-facing node with STEP 1/STEP 2 prompt pattern
intake_node = NodeSpec(
id="intake",
name="Intake",
description="Gather requirements from the user",
node_type="event_loop",
client_facing=True,
input_keys=["topic"],
output_keys=["research_brief"],
system_prompt="""\
You are an intake specialist.
**STEP 1 — Read and respond (text only, NO tool calls):**
1. Read the topic provided
2. If it's vague, ask 1-2 clarifying questions
3. If it's clear, confirm your understanding
**STEP 2 — After the user confirms, call set_output:**
- set_output("research_brief", "Clear description of what to research")
""",
)
# Internal node runs without user interaction
research_node = NodeSpec(
id="research",
name="Research",
description="Search and analyze sources",
node_type="event_loop",
input_keys=["research_brief"],
output_keys=["findings", "sources"],
system_prompt="Research the topic using web_search and web_scrape...",
tools=["web_search", "web_scrape", "load_data", "save_data"],
)
How it works:
- Client-facing nodes stream LLM text to the user and block for input after each response
- User input is injected via
node.inject_event(text) - When the LLM calls
set_outputto produce structured outputs, the judge evaluates and ACCEPTs - Internal nodes (non-client-facing) run their entire loop without blocking
set_outputis a synthetic tool — a turn with onlyset_outputcalls (no real tools) triggers user input blocking
STEP 1/STEP 2 pattern: Always structure client-facing prompts with explicit phases. STEP 1 is text-only conversation. STEP 2 calls set_output after user confirmation. This prevents the LLM from calling set_output prematurely before the user responds.
When to Use client_facing
| Scenario | client_facing | Why |
|---|---|---|
| Gathering user requirements | Yes | Need user input |
| Human review/approval checkpoint | Yes | Need human decision |
| Data processing (scanning, scoring) | No | Runs autonomously |
| Report generation | No | No user input needed |
| Final confirmation before action | Yes | Need explicit approval |
Legacy Note: The
pause_nodes/entry_pointspattern still works for backward compatibility butclient_facing=Trueis preferred for new agents.
Edge-Based Routing and Feedback Loops
Conditional Edge Routing
Multiple conditional edges from the same source replace the old router node type. Each edge checks a condition on the node's output.
# Node with mutually exclusive outputs
review_node = NodeSpec(
id="review",
name="Review",
node_type="event_loop",
client_facing=True,
output_keys=["approved_contacts", "redo_extraction"],
nullable_output_keys=["approved_contacts", "redo_extraction"],
max_node_visits=3,
system_prompt="Present the contact list to the operator. If they approve, call set_output('approved_contacts', ...). If they want changes, call set_output('redo_extraction', 'true').",
)
# Forward edge (positive priority, evaluated first)
EdgeSpec(
id="review-to-campaign",
source="review",
target="campaign-builder",
condition=EdgeCondition.CONDITIONAL,
condition_expr="output.get('approved_contacts') is not None",
priority=1,
)
# Feedback edge (negative priority, evaluated after forward edges)
EdgeSpec(
id="review-feedback",
source="review",
target="extractor",
condition=EdgeCondition.CONDITIONAL,
condition_expr="output.get('redo_extraction') is not None",
priority=-1,
)
Key concepts:
nullable_output_keys: Lists output keys that may remain unset. The node sets exactly one of the mutually exclusive keys per execution.max_node_visits: Must be >1 on the feedback target (extractor) so it can re-execute. Default is 1.priority: Positive = forward edge (evaluated first). Negative = feedback edge. The executor tries forward edges first; if none match, falls back to feedback edges.
Routing Decision Table
| Pattern | Old Approach | New Approach |
|---|---|---|
| Conditional branching | router node |
Conditional edges with condition_expr |
| Binary approve/reject | pause_nodes + resume |
client_facing=True + nullable_output_keys |
| Loop-back on rejection | Manual entry_points | Feedback edge with priority=-1 |
| Multi-way routing | Router with routes dict | Multiple conditional edges with priorities |
Judge Patterns
Core Principle: The judge is the SOLE mechanism for acceptance decisions. Never add ad-hoc framework gating to compensate for LLM behavior. If the LLM calls set_output prematurely, fix the system prompt or use a custom judge. Anti-patterns to avoid:
- Output rollback logic
_user_has_respondedflags- Premature set_output rejection
- Interaction protocol injection into system prompts
Judges control when an event_loop node's loop exits. Choose based on validation needs.
Implicit Judge (Default)
When no judge is configured, the implicit judge ACCEPTs when:
- The LLM finishes its response with no tool calls
- All required output keys have been set via
set_output
Best for simple nodes where "all outputs set" is sufficient validation.
SchemaJudge
Validates outputs against a Pydantic model. Use when you need structural validation.
from pydantic import BaseModel
class ScannerOutput(BaseModel):
github_users: list[dict] # Must be a list of user objects
class SchemaJudge:
def __init__(self, output_model: type[BaseModel]):
self._model = output_model
async def evaluate(self, context: dict) -> JudgeVerdict:
missing = context.get("missing_keys", [])
if missing:
return JudgeVerdict(
action="RETRY",
feedback=f"Missing output keys: {missing}. Use set_output to provide them.",
)
try:
self._model.model_validate(context["output_accumulator"])
return JudgeVerdict(action="ACCEPT")
except ValidationError as e:
return JudgeVerdict(action="RETRY", feedback=str(e))
When to Use Which Judge
| Judge | Use When | Example |
|---|---|---|
| Implicit (None) | Output keys are sufficient validation | Simple data extraction |
| SchemaJudge | Need structural validation of outputs | API response parsing |
| Custom | Domain-specific validation logic | Score must be 0.0-1.0 |
Fan-Out / Fan-In (Parallel Execution)
Multiple ON_SUCCESS edges from the same source trigger parallel execution. All branches run concurrently via asyncio.gather().
# Scanner fans out to Profiler and Scorer in parallel
EdgeSpec(id="scanner-to-profiler", source="scanner", target="profiler",
condition=EdgeCondition.ON_SUCCESS)
EdgeSpec(id="scanner-to-scorer", source="scanner", target="scorer",
condition=EdgeCondition.ON_SUCCESS)
# Both fan in to Extractor
EdgeSpec(id="profiler-to-extractor", source="profiler", target="extractor",
condition=EdgeCondition.ON_SUCCESS)
EdgeSpec(id="scorer-to-extractor", source="scorer", target="extractor",
condition=EdgeCondition.ON_SUCCESS)
Requirements:
- Parallel event_loop nodes must have disjoint output_keys (no key written by both)
- Only one parallel branch may contain a
client_facingnode - Fan-in node receives outputs from all completed branches in shared memory
Context Management Patterns
Tiered Compaction
EventLoopNode automatically manages context window usage with tiered compaction:
- Pruning — Old tool results replaced with compact placeholders (zero-cost, no LLM call)
- Normal compaction — LLM summarizes older messages
- Aggressive compaction — Keeps only recent messages + summary
- Emergency — Hard reset with tool history preservation
Spillover Pattern
The framework automatically truncates large tool results and saves full content to a spillover directory. The LLM receives a truncation message with instructions to use load_data to read the full result.
For explicit data management, use the data tools (real MCP tools, not synthetic):
# save_data, load_data, list_data_files, serve_file_to_user are real MCP tools
# data_dir is auto-injected by the framework — the LLM never sees it
# Saving large results
save_data(filename="sources.json", data=large_json_string)
# Reading with pagination (line-based offset/limit)
load_data(filename="sources.json", offset=0, limit=50)
# Listing available files
list_data_files()
# Serving a file to the user as a clickable link
serve_file_to_user(filename="report.html", label="Research Report")
Add data tools to nodes that handle large tool results:
research_node = NodeSpec(
...
tools=["web_search", "web_scrape", "load_data", "save_data", "list_data_files"],
)
data_dir is a framework context parameter — auto-injected at call time. GraphExecutor.execute() sets it per-execution via ToolRegistry.set_execution_context(data_dir=...) (using contextvars for concurrency safety), ensuring it matches the session-scoped spillover directory.
Anti-Patterns
What NOT to Do
- Don't rely on
export_graph— Write files immediately, not at end - Don't hide code in session — Write to files as components are approved
- Don't wait to write files — Agent visible from first step
- Don't batch everything — Write incrementally, one component at a time
- Don't create too many thin nodes — Prefer fewer, richer nodes (see below)
- Don't add framework gating for LLM behavior — Fix prompts or use judges instead
Fewer, Richer Nodes
A common mistake is splitting work into too many small single-purpose nodes. Each node boundary requires serializing outputs, losing in-context information, and adding edge complexity.
| Bad (8 thin nodes) | Good (4 rich nodes) |
|---|---|
| parse-query | intake (client-facing) |
| search-sources | research (search + fetch + analyze) |
| fetch-content | review (client-facing) |
| evaluate-sources | report (write + deliver) |
| synthesize-findings | |
| write-report | |
| quality-check | |
| save-report |
Why fewer nodes are better:
- The LLM retains full context of its work within a single node
- A research node that searches, fetches, and analyzes keeps all source material in its conversation history
- Fewer edges means simpler graph and fewer failure points
- Data tools (
save_data/load_data) handle context window limits within a single node
MCP Tools - Correct Usage
MCP tools OK for:
test_node— Validate node configuration with mock inputsvalidate_graph— Check graph structureconfigure_loop— Set event loop parameterscreate_session— Track session state for bookkeeping
Just don't: Use MCP as the primary construction method or rely on export_graph
Error Handling Patterns
Graceful Failure with Fallback
edges = [
# Success path
EdgeSpec(id="api-success", source="api-call", target="process-results",
condition=EdgeCondition.ON_SUCCESS),
# Fallback on failure
EdgeSpec(id="api-to-fallback", source="api-call", target="fallback-cache",
condition=EdgeCondition.ON_FAILURE, priority=1),
# Report if fallback also fails
EdgeSpec(id="fallback-to-error", source="fallback-cache", target="report-error",
condition=EdgeCondition.ON_FAILURE, priority=1),
]
Handoff to Testing
When agent is complete, transition to testing phase:
Pre-Testing Checklist
- [ ] Agent structure validates:
uv run python -m agent_name validate - [ ] All nodes defined in nodes/init.py
- [ ] All edges connect valid nodes with correct priorities
- [ ] Feedback edge targets have
max_node_visits > 1 - [ ] Client-facing nodes have meaningful system prompts
- [ ] Agent can be imported:
from exports.agent_name import default_agent
Related Skills
- hive-concepts — Fundamental concepts (node types, edges, event loop architecture)
- hive-create — Step-by-step building process
- hive-test — Test and validate agents
- hive — Complete workflow orchestrator
Remember: Agent is actively constructed, visible the whole time. No hidden state. No surprise exports. Just transparent, incremental file building.