delegation

delegation is a skill for Claude Code, Codex from aksika/abtars. It costs 13 tokens per session (424 once invoked), scanned A, original, Apache-2.0.

A background-task skill for starting independent agent sessions while the main conversation continues. Each session can be checked, updated, or stopped later.

In plain words
What is it for?
Use it to run research, file operations, refactoring, tests, or other independent coding tasks in parallel.
Why use it?
It removes the need to wait for every long or independent task before continuing with other work. It is intended for tasks that do not need interaction with the user midway through.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to run research, file operations, refactoring, tests, or other independent…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aksika/abtars/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 aksika/abtars --skill delegation
Clone the repo
git clone --depth 1 https://github.com/aksika/abtars

Made for: Claude Code, Codex.

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 delegation

README.md
[![agentmods](https://agentmods.dev/badge/skills/aksika/abtars/delegation.svg)](https://agentmods.dev/skills/aksika/abtars/delegation)
Your own site
<a href="https://agentmods.dev/skills/aksika/abtars/delegation"><img src="https://agentmods.dev/badge/skills/aksika/abtars/delegation.svg" alt="Measured on agentmods" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 424 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.
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.00013 $0.00424
Opus 5 $0.00006 $0.00212
Sonnet 5 $0.00003 $0.00085
Haiku 4.5 $0.00001 $0.00042

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

Security

Grade A, and why

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.

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.

templates/skills/delegation/SKILL.md · 49 lines

What it actually says

Background Delegation

You can spawn independent background sessions that work on tasks while you continue the conversation.

Tools

  • spawn_session(type, goal, context?) — start a background worker. Returns task_id immediately.
  • check_session(task_id) — check status: running / done / failed / terminated
  • send_to_session(task_id, message) — send a follow-up instruction to a running child
  • terminate_session(task_id) — stop a running background session

When to use

  • User asks for something that requires many tool calls (research, file operations, code refactoring) AND also wants a quick answer to something else
  • A task is independent and doesn't need your active attention (e.g. "run these tests in the background")
  • You want to parallelize: spawn one session for task A, respond about task B yourself

When NOT to use

  • Simple tasks you can do inline in 1-3 tool calls
  • Tasks that need user interaction mid-way (children can't talk to the user)
  • Tasks where you need the result before responding (just do it inline)

Flow

  1. Spawn: spawn_session(type: "code", goal: "refactor auth module to use JWT")
  2. Continue responding to the user normally
  3. On your next turn, completed results appear automatically in your context as [Background session ... completed]
  4. Incorporate the result into your response

Types

  • code — coding tasks (gets coding model/prompt)
  • browse — web research (gets browser tools)
  • task — general tasks

Limits

  • Max 3 concurrent background sessions
  • 10 minute timeout per session
  • Children cannot talk to the user — only you can
  • Children have the same tools as you (bash, memory, web)
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 · 49 lines · 13 tokens per session scan A aff78bb20062

Subscribe to this mod's changes

delegation is a skill published in the GitHub repository aksika/abtars (9 stars, last pushed 2d ago), licensed Apache-2.0. It adds 13 tokens to every session and 424 once invoked, about $0.0001 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-08-31.

Related

Other skills, from other repositories

create-custom-grader

Use when converting an existing benchmark, rubric, verifier, task YAML/JSON, or domain check into SkillEvaluator BYOG/BYOT custom evaluation.

NVIDIA/SkillEvaluator · 35 tokens

EMILIA Trust Verification

Verify the authenticity of AI-agent authorization receipts and human-device signoffs. Use this whenever a user shares a "trust receipt", an "authorization receipt", a "signoff", or WebAuthn/passkey approval evidence and asks whether it is valid, genuine, or tampered with. Pairs with the public EMILIA Protocol MCP…

emiliaprotocol/emilia-protocol · 94 tokens

agent-safety

Use when bounding an LLM agent that already runs — scoping its task domain, gating tools to least privilege, defending against prompt injection in untrusted web/email/RAG text, requiring human approval on irreversible actions, capping runtime and cost, or triaging what it already did. NOT building the loop, tools, or…

ericrisco/rsc-harness · 79 tokens

cva-analysis

Systematic abstraction discovery using Commonality Variability Analysis. Build matrix of what varies vs what's constant, then let patterns emerge. Prevents wrong abstractions by deferring pattern selection until requirements are analyzed. Use when facing multiple similar requirements and need to discover natural…

rjmurillo/ai-agents · 58 tokens

programming-advisor

Evaluate existing solutions (libraries, SaaS, open source) AND internal prior-art before custom development to avoid reinventing the wheel. Use when considering building new features, asking "should I build or use existing", "do we already have this", "is there existing code for X in this repo", "is there a library…

rjmurillo/ai-agents · 113 tokens

world-model-diagnostic

Twenty-minute diagnostic mapping a team to a world-model paradigm (vector DB, structured ontology, signal-fidelity). Use when you say "run the world model diagnostic", "audit our world model", "which world model architecture fits us", or "audit where we automate judgment". Use for AI readiness assessments and…

rjmurillo/ai-agents · 94 tokens