Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

delegatedelegate 搜索

Agent Skill

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

总安装

549

周安装

22

GitHub Stars

8

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:delegate(delegate 搜索)
来源仓库:https://github.com/phrazzld/claude-config
仓库路径:skills/delegate
安装命令:
npx skills add https://github.com/phrazzld/claude-config --skill delegate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill delegate

简介

delegate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前分类为研究检索,支持主流 Agent 宿主平台。

SKILL.md

/delegate

You orchestrate. Specialists do the work.

Reference pattern for invoking multiple AI tools and synthesizing their outputs.

Your Role

You don't analyze/review/audit yourself. You:

  1. Route — Send work to appropriate specialists
  2. Collect — Gather their outputs
  3. Curate — Validate, filter, resolve conflicts
  4. Synthesize — Produce unified output

Your Team

Codex CLI — Implementation Agent

Fire-and-forget delegation for implementation work:

codex exec --full-auto "Implement X following the pattern in Y. Run pnpm typecheck after." \
  --output-last-message /tmp/codex-out.md 2>/dev/null
TaskReasoning Effort
Boilerplate, CRUDmedium
Features, testshigh (default)
Complex debug, securityxhigh
codex exec --full-auto -c model_reasoning_effort=xhigh "Debug this race condition"

Task Tool — Parallel Agent Spawning

For parallel work within Claude Code:

Task({ subagent_type: "general-purpose", prompt: "Backend API review" })
Task({ subagent_type: "general-purpose", prompt: "Frontend component audit" })
Task({ subagent_type: "general-purpose", prompt: "Test coverage analysis" })

Multiple Task calls in a single message run in parallel.

Gemini CLI — Researcher, deep reasoner

  • Web grounding, thinking_level control, agentic vision
  • Best at: current best practices, pattern validation, design research
  • Invocation: gemini "..." (bash)

Non-Agentic (Opinions Only)

Thinktank CLI — Expert council

  • Multiple models respond in parallel, synthesis mode
  • Best at: consensus, architecture validation, second opinions
  • Invocation: thinktank instructions.md./files --synthesis (bash)
  • Note: Cannot take action. Use for validation, not investigation.

Agent Teams — Full Claude Code Teammates

When workers need to communicate, challenge each other, or coordinate across layers.

Start a team: Describe the task and team structure in natural language. Claude handles spawning.

Lead in delegate mode: Shift+Tab after team creation. Lead coordinates only.

Plan approval: For risky work, require teammates to plan before implementing. Lead reviews and approves/rejects plans.

When to use over Codex CLI / Task tool:

SignalTeamsCodex CLI / Task
Workers must discuss findingsYESno
Competing hypotheses / debateYESno
Cross-layer (FE+BE+tests)YESno
"Implement this spec"noYES
Result-only, no coordinationnoYES

Internal Agents (Task tool)

Domain specialists for focused review:

  • go-concurrency-reviewer, react-pitfalls, security-sentinel
  • data-integrity-guardian, architecture-guardian, config-auditor

How to Delegate

Apply /llm-communication principles — state goals, not steps:

To Codex (via CLI)

Give it latitude to investigate:

"Investigate this stack trace. Find root cause. Propose fix with file:line."

NOT:

"Step 1: Read file X. Step 2: Check line Y. Step 3: ..."

To Thinktank (Non-Agentic)

Provide context, ask for judgment:

"Here's the code and proposed fix. Is this approach sound?
What are we missing? Consensus and dissent."

Parallel Execution

Run independent reviews in parallel:

  • Multiple Task tool calls in same message
  • Gemini + Thinktank can run concurrently (both bash)

Dependency-Aware Orchestration

For large work (10+ subtasks, multiple phases), use DAG-based scheduling:

The Pattern

Phase 1 (no deps):    Task 01, 02, 03 → run in parallel
Phase 2 (deps on P1): Task 04, 05     → blocked until P1 complete
Phase 3 (deps on P2): Task 06, 07, 08 → blocked until P2 complete

Key principles:

  1. Task decomposition — Break feature into atomic subtasks
  2. Dependency graph — DAG defines execution order
  3. Parallel execution — Independent tasks run simultaneously
  4. Fresh context — Each subagent starts clean (~40-75k tokens)

Step 1: Decompose

Split feature into atomic tasks. Ask:

  • What can run independently? → Same phase
  • What requires prior output? → Blocked

Step 2: Declare Dependencies

Use TaskCreate/TaskUpdate primitives:

TaskCreate({subject: "Install packages", activeForm: "Installing packages"})
TaskCreate({subject: "cRPC builder", activeForm: "Building cRPC"})
TaskUpdate({taskId: "2", addBlockedBy: ["1"]})  # Task 2 waits for Task 1

Step 3: Execute Phases

Spawn all unblocked tasks in single message:

# Phase 1 - all parallel via Task tool
Task({ subagent_type: "general-purpose", prompt: "Task 1: ..." })
Task({ subagent_type: "general-purpose", prompt: "Task 2: ..." })
Task({ subagent_type: "general-purpose", prompt: "Task 3: ..." })

Step 4: Progress

After each phase:

  1. Mark completed tasks: TaskUpdate({taskId: "1", status: "completed"})
  2. Check newly-unblocked: TaskList()
  3. Spawn next phase

When to Use DAG Orchestration

ScenarioUse DAG?
Large migration (10+ files, phases)✅ Yes
Multi-feature release✅ Yes
Single feature (1-5 files)❌ Overkill
Quick fix❌ Overkill

For typical feature work, simple parallel spawning is sufficient.

Curation (Your Core Job)

For each finding:

Validate: Real issue or false positive? Applies to our context? Filter: Generic advice, style preferences contradicting conventions Resolve Conflicts: When tools disagree, explain tradeoff, make recommendation

Output Template

## [Task]: [subject]

### Action Plan

#### Critical
- [ ] `file:line` — Issue — Fix: [action] (Source: [tool])

#### Important
- [ ] `file:line` — Issue — Fix: [action] (Source: [tool])

#### Suggestions
- [ ] [improvement] (Source: [tool])

### Synthesis

**Agreements** — Multiple tools flagged:
- [issue]

**Conflicts** — Differing opinions:
- [Tool A] vs [Tool B]: [your recommendation]

**Research** — From Gemini:
- [finding with citation]

When to Use

  • Code review — Multiple perspectives on changes
  • Incident investigation — Agentic tools investigate, Thinktank validates fix
  • Architecture decisions — Thinktank for consensus
  • Audit/check tasks — Parallel investigation across domains

Note

Codex delegation uses the CLI (codex exec). For parallel work within Claude Code, use the Task tool with subagent_type: "general-purpose".

Related

  • /llm-communication — Prompt writing principles
  • /review-branch — Example implementation
  • /thinktank — Multi-model synthesis
  • /codex-coworker — Codex delegation patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.15%
按下载量换算68

Claude

28.76%
按下载量换算51

Cursor

19.21%
按下载量换算34

Gemini CLI

8.48%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/phrazzld/claude-config --skill delegate 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills