Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

agent-guru特工大师

Agent Skill

agent-guru 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,863

周安装

123

GitHub Stars

公开资料未说明

下载量

1,004
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-guru(特工大师)
来源仓库:https://github.com/weixuanjiang/agent-guru
安装命令:
openclaw skills install agent-guru
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agent-guru

简介

指导多代理系统的生产级架构设计与实施。agent-guru 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 提供路由代理、权限管理和工具编排能力。
  • 适用于复杂代理团队的协同开发和部署场景。
  • 通过 clawhub 安装,适用于 OpenClaw 宿主环境。
  • 建议结合项目规模选择合适的代理分工和通信协议。

SKILL.md

name
production-agent-design
description
Use when building, designing, or reviewing a multi-agent system for production — routing agents, orchestrating subagents, guarding tools with permissions, managing memory and context windows, adding observability and cost tracking, handling errors, or setting up session persistence.
compatibility
Designed for agentic frameworks (LangGraph, Strands, or similar). Examples use LangGraph. pip install langgraph langgraph-supervisor.
metadata
version
1.0

Production Agent Design

Core Principle

The LLM is the reasoning engine. Your code is the execution engine. The loop is the contract between them.

Every production concern — safety, cost, retries, logging, permissions — lives in the harness, not the prompt. A prompt that says "be careful with deletions" is a suggestion. A GuardedToolNode that intercepts delete_* calls is a guarantee.

When to Use This Skill

  • Designing a new multi-agent system from scratch
  • Adding safety, cost controls, or observability to an existing agent
  • Debugging runaway cost, infinite loops, or context window exhaustion
  • Choosing between single-agent vs multi-agent topology
  • Implementing human-in-the-loop (HITL) for irreversible actions
  • Setting up session persistence and resumption

Architecture at a Glance

INGRESS (HTTP / CLI / Webhook / Schedule)
    │
ROUTER LAYER          — classify intent, dispatch cheaply
    │
ORCHESTRATOR          — decompose tasks, delegate to specialists
    ├── Agent A (scoped tools)
    └── Agent B (scoped tools)
         │
TOOL LAYER            — validate schema → check permission → execute → truncate
         │
CROSS-CUTTING CONCERNS
    ├── MEMORY         (short-term / working / long-term)
    ├── OBSERVABILITY  (traces, cost, session replay)
    └── RESILIENCE     (retry, circuit breaker, loop guard)
         │
PERSISTENCE           — checkpoints (Redis / Postgres) + audit log

Single Agent vs Multi-Agent

Task scoped to ONE domain?
  YES → Single ReAct agent with appropriate tools
  NO  → Independent subtasks?
          YES → Parallel multi-agent (supervisor + specialists)
          NO  → Sequential / hierarchical orchestrator
                  │
              Any irreversible step requiring human review?
                YES → Plan-then-execute with HITL interrupt
                NO  → Orchestrator with auto-delegation

Rule: Start with a single agent. Add multi-agent complexity only when you hit a concrete limit — context window size, tool set sprawl, latency, or accuracy.

Framework Selection

NeedUse
Complex branching, HITL, durable persistence, fine-grained controlLangGraph
Simple loop, minimal boilerplate, rapid prototype, leaf agentsStrands
Orchestration graph + simple leaf agentsLangGraph + Strands hybrid

Reference Files

Load these on demand using the triggers listed below. Do not load all of them upfront.

FileLoad when...
references/router-layer.mdDesigning intent routing, building a classifier node, handling misrouting
references/orchestrator-layer.mdDecomposing tasks, spawning subagents, implementing plan-then-execute
references/tool-safety-layer.mdDesigning tools, adding permission rules, implementing HITL or killswitch
references/memory-layer.mdContext window approaching limit, adding long-term memory, injecting project context
references/observability-layer.mdAdding tracing, tracking token cost, debugging agent behavior, setting up alerts
references/resilience-layer.mdAdding retry logic, circuit breakers, preventing infinite loops
references/persistence-layer.mdChoosing a checkpointer, implementing session resume, session branching
references/production-checklist.mdBefore deploying to production — full ~40-point readiness checklist

Quick Reference

PatternKey implementationReference
Intent routingconditional_edges + confidence thresholdrouter-layer.md
Scoped subagentscreate_react_agent with tool subsetorchestrator-layer.md
Plan-then-executeTwo nodes, read-only tools in plan phaseorchestrator-layer.md
Tool schemaargs_schema=PydanticModel on @tooltool-safety-layer.md
Permission guardGuardedToolNode with PermissionRule listtool-safety-layer.md
HITL interruptinterrupt() + Command(resume=...)tool-safety-layer.md
Runtime concurrencyis_concurrency_safe(input) per tool calltool-safety-layer.md
Abort hierarchyQuery-level abort + sibling-level child aborttool-safety-layer.md
Tiered compactionbudget → snip → microcompact → autocompactmemory-layer.md
Auto-compactionSummarization node at 80% contextmemory-layer.md
Context injectionAGENT.md loaded into system promptmemory-layer.md
Full traceBaseCallbackHandler + structured eventsobservability-layer.md
Cost trackingPer-turn token accounting in callbackobservability-layer.md
Config snapshotFreeze all feature flags at query entryobservability-layer.md
Diminishing returnsTrack token deltas; stop if delta < 500 × 2resilience-layer.md
Output limit escalationEscalate to 64k tokens before compactionresilience-layer.md
Streaming cleanupTombstone partial messages on fallbackresilience-layer.md
Error-as-observationtry/exceptToolMessageresilience-layer.md
Circuit breakerState machine wrapping tool fnresilience-layer.md
Session resumeCheckpointer + stable thread_idpersistence-layer.md

Gotchas

  • Safety rules must be code, not prompts. A prompt saying "don't delete production data" is not a safety control.
  • Never dump the full parent message history into a subagent. Pass only the specific task and relevant data — context pollution degrades performance and wastes tokens.
  • InMemorySaver is for development only. Use Redis or Postgres checkpointers in production.
  • interrupt() pauses the graph. Resume it by calling graph.invoke(Command(resume=...), config=config) — forgetting this leaves the agent stuck.
  • Tool result truncation is mandatory. Large tool outputs (file reads, search results) will exhaust the context window if not truncated before returning.
  • Always set max_iterations. Without a loop guard, a miscalibrated agent runs indefinitely and incurs unbounded cost.
  • Apply compaction in tiers. Budget tool results → snip → microcompact → autocompact. Jumping straight to full summarization wastes tokens when a cheaper step would suffice.
  • Track diminishing returns, not just token budget. An agent can burn through its iteration budget producing nearly empty continuations. Stop when the last 2 deltas are both below ~500 tokens.
  • Snapshot config at query entry. Never re-read feature flags or env vars mid-turn — a remote config change during a 30-second response causes inconsistent behavior within a single turn.
  • Concurrency safety must be checked at runtime. Schema metadata cannot determine if a bash command is safe — inspect the actual input string at call time. Fail conservatively (serial) if parsing fails.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.07%
按下载量换算955

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills