TopRank Skills

Home / Claw Skills / Autres / intelligent-delegation
Official OpenClaw rules 15%

intelligent-delegation

A 5-phase framework for reliable AI-to-AI task delegation, inspired by Google DeepMind's "Intelligent AI Delegation" paper (arXiv 2602.11865). Includes task tracking, sub-agent performance logging, automated verification, fallback chains, and multi-axis task scoring.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 intelligent-delegation 技能。 若已安装,则直接安装 intelligent-delegation 技能。

Overview

Skill Key
hogpile/intelligent-delegation
Author
Kai (@Kai954963046221)
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/hogpile/intelligent-delegation
Latest Commit SHA
b5ea83e170496cf3297361781eed8bb99fb31a07

Extracted Content

SKILL.md excerpt

# Intelligent Delegation Framework

A practical implementation of concepts from [Intelligent AI Delegation](https://arxiv.org/abs/2602.11865) (Google DeepMind, Feb 2026) for OpenClaw agents.

## The Problem

When AI agents delegate tasks to sub-agents, common failure modes include:
- **Lost tasks** — background work completes silently, no follow-up
- **Blind trust** — passing through sub-agent output without verification
- **No learning** — repeating the same delegation mistakes
- **Brittle failure** — one error kills the whole workflow
- **Gut-feel routing** — no systematic way to choose which agent handles what

## The Solution: 5 Phases

### Phase 1: Task Tracking & Scheduled Checks

**Problem:** "I'll ping you when it's done" → never happens.

**Solution:** 
1. Create a `TASKS.md` file to log all background work
2. For every background task, schedule a one-shot cron job to check on completion
3. Update your `HEARTBEAT.md` to check `TASKS.md` first

**TASKS.md template:**
```markdown
# Active Tasks

### [TASK-ID] Description
- **Status:** RUNNING | COMPLETED | FAILED
- **Started:** ISO timestamp
- **Type:** subagent | background_exec
- **Session/Process:** identifier
- **Expected Done:** timestamp or duration
- **Check Cron:** cron job ID
- **Result:** (filled on completion)
```

**Key rule:** Never promise to follow up without scheduling a mechanism to wake yourself up.

---

### Phase 2: Sub-Agent Performance Tracking

**Problem:** No memory of which agents succeed or fail at which tasks.

**Solution:** Create `memory/agent-performance.md` to track:
- Success rate per agent
- Quality scores (1-5) per task
- Known failure modes
- "Best for" / "Avoid for" heuristics

**After every delegation:**
1. Log the outcome (success/partial/failed/crashed)
2. Note runtime and token cost
3. Record lessons learned

**Before every delegation:**
1. Check if this agent has failed on similar tasks
2. Consult the "decision heuristics" section

Example entry:
```markdown
#### 2026-...

Related Claw Skills