using-ateam

using-ateam is a skill for Codex from yimwoo/codex-agenteam. It costs 21 tokens per session (1,793 once invoked), scanned B, original, MIT.

A routing skill for AgenTeam, an AI development team manager. It maps a user’s request to the right team operation, role, or workflow and creates the basic project configuration when none exists.

In plain words
What is it for?
Use it to initialize AgenTeam, run team-level operations, check status, or direct work to roles such as an architect, reviewer, or project manager.
Why use it?
It removes the need to know which team role or setup step to invoke first.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: mentions subagents; mentions Codex.

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.

agentmods
npx agentmods add skills/yimwoo/codex-agenteam/using-ateam
Any agent
npx skills add yimwoo/codex-agenteam --skill using-ateam
Clone the repo
git clone --depth 1 https://github.com/yimwoo/codex-agenteam

Made for: 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 using-ateam

README.md
[![agentmods](https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/using-ateam.svg)](https://agentmods.dev/skills/yimwoo/codex-agenteam/using-ateam)
Your own site
<a href="https://agentmods.dev/skills/yimwoo/codex-agenteam/using-ateam"><img src="https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/using-ateam.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,793 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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.00021 $0.01793
Opus 5 $0.00010 $0.00897
Sonnet 5 $0.00004 $0.00359
Haiku 4.5 $0.00002 $0.00179

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

Security

Grade B, and why

using-ateam scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

RUNTIME_PATH="$(find ~/.codex/plugins/cache -type f \
skills/using-ateam/SKILL.md · 162 lines

How it starts

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

AgenTeam Router

You manage an AI development team. Individual roles are available as Codex agents (@Architect, @Reviewer, @Pm, etc.) -- users can talk to them directly. Your job as @ATeam is to handle team-level operations: running the pipeline, showing status, and managing roles.

Step 1: Auto-Init

Check if any AgenTeam config exists in the project root:

  1. .agenteam/config.yaml (personal)
  2. .agenteam.team/config.yaml (team shared)
  3. Legacy agenteam.yaml

If ANY of these exist, config is present — skip auto-init.

If ALL are missing, initialize immediately:

RUNTIME_PATH="$(find ~/.codex/plugins/cache -type f \
  \( -path '*/ateam/*/runtime/agenteam_rt.py' \
     -o -path '*/ateam/*/local/runtime/agenteam_rt.py' \) \
  2>/dev/null | sort -V | tail -1)"
PLUGIN_DIR="${RUNTIME_PATH%/runtime/agenteam_rt.py}"
test -f "$PLUGIN_DIR/runtime/agenteam_rt.py"
test -f "$PLUGIN_DIR/templates/agenteam.yaml.template"
mkdir -p .agenteam
cp "$PLUGIN_DIR/templates/agenteam.yaml.template" .agenteam/config.yaml
python3 "$PLUGIN_DIR/runtime/agenteam_rt.py" generate

Keep auto-init on the fast path:

  • Do not inspect unrelated files before creating the default config.
  • Do not ask setup questions unless the user asked for customization.
  • Do not run init --task during team setup; that creates run state and is not needed just to make the team available.
  • The goal of auto-init is to get the team usable quickly, then continue the user's original request in the same turn.

Then decide what to do next:

  • If the user's request was team setup or "show my team", show the team roster and stop.
  • Otherwise, briefly tell the user that AgenTeam was auto-initialized, then continue to Step 2 and route the original request in the same turn. Do not stop after setup.

If Step 1 already handled a first-time team-setup request, do not invoke $ateam:init afterward.

If you are showing the team, use the roster block below, followed by starter examples. Choose examples based on a lightweight project check:

Read the full file on GitHub · 162 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. 6d ago First seen · 162 lines · 21 tokens per session scan B 2df876b92fda

Subscribe to this mod's changes

using-ateam is a skill published in the GitHub repository yimwoo/codex-agenteam (13 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 1,793 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.