用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Integralist/agent-skills --skill delegate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MANDATORY for any work on Go files (*.go). Load this before editing, reviewing, or creating any *.go file. Go coding conventions and style guide covering naming, error handling, testing, HTTP handlers, caching, concurrency, and observability.
Rewrite text to be more concise, clear, and direct without losing critical information. Inventories load-bearing details first, rewrites, then audits the rewrite to verify nothing essential was dropped — for a plan, technical guide, agent instructions, or any prose too long or hard to follow.
Write or improve technical documentation. Applies documentation best practices: brevity, focusing on why and what rather than how, simple visualizations, modularization, and decoupling from volatile code. Use when writing new documentation from scratch, or editing, or reviewing and rewriting existing documents for clarity and quality.
基于 SOC 职业分类
正在显示 SKILL.md
| name | delegate |
| description | Spawn an appropriate subagent to handle a task. |
| disable-model-invocation | true |
| argument-hint | <task description> |
Delegate the task to a subagent. Do not execute work directly.
/delegate as the task descriptionRoute to the subagent that best matches the task. The roles below are descriptions, not agent names — use your platform's actual agent names.
| Task Type | Subagent Role |
|---|---|
| Find code/files, trace deps | Exploration / investigation |
| Design approach, architecture | Planning |
| Commands, multi-step work, refactor | General-purpose / workhorse |
| Code review * | Review specialist |
| Web research * | Research specialist |
* Fall back to your platform's general-purpose / workhorse agent if no specialist is available.
A fire-and-forget subagent is fine for read-only work (find, trace, review, research) — you consume the result at the end. For editing or iterative tasks (refactor, multi-step implementation), a subagent the user can't interrupt ploughs ahead while objections pile up, leaving a large diff to unwind.
For those, prefer a primitive the user can talk to mid-flight — a
named teammate (below) if the harness supports it, otherwise keep
the work in the main thread rather than a sealed subagent. See
shared/SUBAGENT-STEERABILITY.md
for the full rule.
For editing or iterative tasks, spawn the delegate as a named teammate the user can chat with directly:
delegate-{short-slug} (a 2-3 word
kebab-case summary of the task, e.g. delegate-fix-auth).docs/**/*.md or **/README.md
when behavior, public APIs, or usage patterns change.See shared/AGENT-TEAMS.md for
enablement instructions.