assign

assign is a skill for Claude Code, Codex from yimwoo/codex-agenteam. It costs 13 tokens per session (1,604 once invoked), scanned A, original, MIT.

A task-routing command for sending work to a named role on an AgenTeam, a configured group of coding agents.

In plain words
What is it for?
Assign reviews, research, planning, or coding tasks to roles such as an architect, reviewer, or project manager.
Why use it?
It lets you request work from a specific role and checks that the role and its ability to change files are configured.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Codex.

Good fit Assign reviews, research, planning, or coding tasks to roles such as an architect, reviewer, or project manager.

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

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 assign

README.md
[![agentmods](https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/assign.svg)](https://agentmods.dev/skills/yimwoo/codex-agenteam/assign)
Your own site
<a href="https://agentmods.dev/skills/yimwoo/codex-agenteam/assign"><img src="https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/assign.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 1,604 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.01604
Opus 5 $0.00006 $0.00802
Sonnet 5 $0.00003 $0.00321
Haiku 4.5 $0.00001 $0.00160

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

Security

Grade A, and why

assign 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 7d 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.

skills/assign/SKILL.md · 164 lines

How it starts

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

AgenTeam Assign

Assign a task to a specific team member, independent of the pipeline.

Process

1. Auto-Init Guard

Check for .agenteam/config.yaml, .agenteam.team/config.yaml, or legacy agenteam.yaml in the project root. If all are missing:

  • Create config dir: mkdir -p .agenteam
  • Copy the template: cp <plugin-dir>/templates/agenteam.yaml.template .agenteam/config.yaml
  • Set the team name to the project directory name
  • Generate agents: python3 <runtime>/agenteam_rt.py generate
  • Tell the user: "AgenTeam auto-initialized with default roles. Edit .agenteam/config.yaml to customize."

2. Accept Input

Get the role name and task from the user. Examples:

  • $ateam:assign architect "Review this API design"
  • $ateam:assign reviewer "Check auth logic in src/auth.py"
  • @ateam assign researcher to investigate caching strategies
  • @ateam ask pm what we should build next

If role or task is missing, ask.

3. Validate Role

python3 <runtime>/agenteam_rt.py roles show <role-name>

If the role doesn't exist, show available roles:

python3 <runtime>/agenteam_rt.py roles list

4. Check Write Policy

If the role has can_write: true, check for active write locks:

python3 <runtime>/agenteam_rt.py status

If a write lock is active and the role needs to write:

  • Inform the user: "Write lock held by <active_role>. Wait for completion or override with confirmation."
  • Do not proceed without user approval.

5. Branch Isolation

If the role has can_write: true, isolate the work on a dedicated branch or worktree. Assign ALWAYS applies isolation regardless of pipeline mode (even pipeline: hotl), because assign is user-initiated and outside HOTL's execution flow.

  1. Preflight:
    bash <plugin-dir>/scripts/git-isolate.sh preflight
    
    • If not-a-git-repo: skip isolation (non-git projects work without it)
    • If dirty-worktree and mode is serial or worktree: block. Tell user: "Uncommitted changes detected. Please stash or commit before assigning a writing task, to ensure branch isolation."
    • If detached-head: block. Tell user: "You are in detached HEAD state. Please checkout a branch before assigning a writing task."

Read the full file on GitHub · 164 lines

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. 7d ago First seen · 164 lines · 13 tokens per session scan A f08db2de8779

Subscribe to this mod's changes

assign is a skill published in the GitHub repository yimwoo/codex-agenteam (13 stars, last pushed 2mo ago), licensed MIT. It adds 13 tokens to every session and 1,604 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-30.