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.
npx agentmods add skills/yimwoo/codex-agenteam/using-ateamnpx skills add yimwoo/codex-agenteam --skill using-ateamgit clone --depth 1 https://github.com/yimwoo/codex-agenteamWrote 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.
[](https://agentmods.dev/skills/yimwoo/codex-agenteam/using-ateam)<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>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.
| Model | Per session | Once 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 |
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 \ 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:
.agenteam/config.yaml(personal).agenteam.team/config.yaml(team shared)- 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 --taskduring 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:
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.
- 6d ago First seen · 162 lines · 21 tokens per session scan B 2df876b92fda
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.
Other skills, from other repositories
boss-advanced
Advanced Boss orchestration patterns — Agent Teams leadership, 6-section delegation template, Skill vs Agent conflict resolution, Guardian pattern, and AI-slop detection.
gstack-sprint
3-Phase Sprint workflow — design → execute → review with user interaction at decision points.
boss-briefing
Vault health check — workflow pattern analysis, profile sync, session gap recovery, persona rule proposals.
briefing-vault
Initialize, manage, and search the per-project .briefing/ vault. Obsidian-compatible persistent knowledge base.
lookup-topic
Look up a help topic with progressive depth. First call returns concept, repeat calls escalate to task then reference. Triggers on: look up topic, open template, tell me more, go deeper, start over.
lookup
Look up help topics with progressive depth. Pair with attune-ai for the full author-and-read workflow. Triggers on: lookup, look up, depth, topic, help topic, tell me more.