ceo-delegation

ceo-delegation is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 59 tokens per session (1,389 once invoked), scanned A, original, MIT.

A task-delegation workflow that tells an agent to assign work to sub-agents, monitor their progress, and review their results rather than doing the work itself.

In plain words
What is it for?
It helps coordinate parallel tasks, select workers, track their sessions, gather progress reports, and verify completed work.
Why use it?
It gives multi-step work a defined process for delegation, status updates, and separate acceptance checks.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agi-super-team plugin — 194 skills, 1 agent shipped together

Good fit It helps coordinate parallel tasks, select workers, track their sessions, gather progress reports, and verify completed work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/ceo-delegation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aAAaqwq/AGI-Super-Team --skill ceo-delegation
Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 194 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ceo-delegation

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/ceo-delegation/github.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/ceo-delegation)
Your own site
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/ceo-delegation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/ceo-delegation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ceo-delegation

Your own site · 80×15
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/ceo-delegation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/ceo-delegation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,389 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01389
Opus 5 $0.00030 $0.00694
Sonnet 5 $0.00012 $0.00278
Haiku 4.5 $0.00006 $0.00139

Measured 6d ago against content hash 1a4449f1d8c4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ceo-delegation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/monitor.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ceo-delegation/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CEO Delegation - CEO式任务委派

你是最高级别私人助理/总经理。永远不要亲自执行具体任务,而是像CEO管理公司一样:分派、监控、汇报、验收。

核心原则

  1. 不亲自动手 - 所有具体任务都派给子代理
  2. 专注全局 - 你的工作是协调、监控、决策
  3. 双重验收 - 执行者和验收者必须是不同的代理
  4. 实时汇报 - 每分钟向主人更新进度

标准工作流程

┌─────────────────────────────────────────────────────┐
│  1. 接收任务                                          │
│     └→ 理解需求,确认细节                              │
├─────────────────────────────────────────────────────┤
│  2. RAG 搜索经验                                      │
│     └→ memory_search 查找过往成功案例                  │
├─────────────────────────────────────────────────────┤
│  3. 派发执行者                                        │
│     └→ sessions_spawn 创建子代理执行任务               │
│     └→ 选择合适模型(编程用 Opus,其他用 GLM-4.6)       │
├─────────────────────────────────────────────────────┤
│  4. 监控进度(每1分钟)                                │
│     └→ sessions_list 查看状态                         │
│     └→ sessions_history 获取详细进度                   │
│     └→ 向主人汇报进度                                  │
├─────────────────────────────────────────────────────┤
│  5. 执行完成                                          │
│     └→ 收到子代理完成通知                              │
├─────────────────────────────────────────────────────┤
│  6. 派发验收者                                        │
│     └→ sessions_spawn 创建另一个子代理验收             │
│     └→ 验收者检查质量、完整性                          │
├─────────────────────────────────────────────────────┤
│  7. 交付结果                                          │
│     └→ 验收通过后向主人报告完成                         │
│     └→ 记录经验到 memory                              │
└─────────────────────────────────────────────────────┘

模型选择指南

任务类型 推荐模型 别名
编程/代码 claude-opus-4-5-thinking opus
写作/创作 claude-opus-4-5-thinking opus
安装/配置 iflow/glm-4.6 glm
文件操作 iflow/glm-4.6 glm
验收检查 iflow/glm-4.6 glm

派发任务示例

派发执行者

sessions_spawn({
  task: "写小说第20章,主角苏尘...",
  model: "opus",  // 创作任务用 Opus
  label: "chapter-20-writer",
  runTimeoutSeconds: 600
})

Read the full file on GitHub · 133 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 133 lines · 59 tokens per session scan A 1a4449f1d8c4

Subscribe to this mod's changes

ceo-delegation is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed yesterday), licensed MIT. It adds 59 tokens to every session and 1,389 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

mission-control

Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.

builderz-labs/mission-control · 34 tokens

triage

Triage a GitHub repository's open issues by finding exact duplicates, rejecting evidenceably off-base requests, requesting concrete clarification, applying only existing labels, and opening a linked root-cause issue when multiple reports share one underlying invariant failure. Use when a maintainer asks to triage…

arcee-ai/nac · 65 tokens

dos-goal-fleet

Launch multiple goal-scoped workers in waves, each with a witness-gated stop condition and dos arbitrate file-tree safety. Use when an operator asks to run several independent goals in parallel and fold only verified ships.

anthony-chaudhary/dos-kernel · 51 tokens

flo

MoFlo ticket spell - analyze and execute GitHub issues.

eric-cielo/moflo · 13 tokens

dos-next-up

Snapshot the repo's phased-plan portfolio into a dispatch packet: audit candidates with dos verify, render who-does-what, and emit a dos gate verdict. Use when you need the current next-work view before dispatching agents.

anthony-chaudhary/dos-kernel · 53 tokens

dos-dispatch

Plan and ship the next batch on one lane: run dos-next-up, acquire a lease with dos arbitrate, gate empty work, dispatch the packet, and archive the run. Use when a single lane should move end to end with collision safety.

anthony-chaudhary/dos-kernel · 56 tokens