run

run is a skill for Claude Code, Codex from yimwoo/codex-agenteam. It costs 25 tokens per session (8,486 once invoked), scanned A, original, MIT.

A command for running a complete AgenTeam pipeline, where different roles handle stages such as research, planning, implementation, testing, and review. It can also create the project's default team configuration when none exists.

In plain words
What is it for?
Use it to initialize AgenTeam in a project, choose a pipeline profile, dispatch a task through its stages, and run the team either independently or with human oversight.
Why use it?
It coordinates the full development process in one run instead of requiring you to start and track each specialist and stage separately.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. 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/run
Any agent
npx skills add yimwoo/codex-agenteam --skill run
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 run

README.md
[![agentmods](https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/run.svg)](https://agentmods.dev/skills/yimwoo/codex-agenteam/run)
Your own site
<a href="https://agentmods.dev/skills/yimwoo/codex-agenteam/run"><img src="https://agentmods.dev/badge/skills/yimwoo/codex-agenteam/run.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,486 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00025 $0.08486
Opus 5 $0.00013 $0.04243
Sonnet 5 $0.00005 $0.01697
Haiku 4.5 $0.00003 $0.00849

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

Security

Grade A, and why

run 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.

skills/run/SKILL.md · 887 lines

How it starts

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

AgenTeam Run

Orchestrate a full team pipeline for a task. This is the main entry point for collaborative AI-assisted development. You are the lead; AgenTeam dispatches your specialists.

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."
  • Then continue with the requested run in the same turn. Auto-init is a prerequisite, not the end of the workflow.

2. Accept Task

Get the task description from the user. If not provided, ask: "What task should the team work on?"

2b. Select Profile

If the project config defines pipeline profiles, select one before init:

  1. Read pipeline.profiles from config (check if pipeline key is a dict with a profiles sub-key). If no profiles defined, skip this step.
  2. If the user already specified --profile <name> in their request, use it directly and skip classification.
  3. If profiles are defined:
    • Read each profile's hints list (advisory examples of task shape)
    • Select the best-fit profile using judgment over the task description and hints. Do not keyword-match — use hints as examples of the kind of task each profile is designed for.
    • Announce: "Using profile quick (one-line fix). Override with --profile standard if needed."
    • Do not pause for confirmation unless confidence is low or the profile materially shortens the pipeline (e.g., skipping 5 of 7 stages).
  4. If uncertain which profile fits, default to full (all stages). Misclassification fails safe.
  5. Pass --profile <name> to the init command in step 3.3:
    python3 <runtime>/agenteam_rt.py init --task "<task>" --profile <name>
    

Read the full file on GitHub · 887 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 · 887 lines · 25 tokens per session scan A 74c3c5d2f0c4

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

oh-my-dynamic

Multi-agent orchestration engine for complex tasks. Use when you need to break a complex query into subtasks, run them in parallel with a DAG engine, and synthesize results. Triggers on: multi-agent, parallel execution, orchestrate, DAG, decompose task, dynamic workflow.

PIGU-PPPgu/oh-my-Dynamic · 63 tokens

multi-agent-run

Run a multi-agent workflow on any complex task. One command to decompose, parallelize, and synthesize. Triggers on: run agents, parallel analysis, multi-agent, decompose and run, orchestrate task.

PIGU-PPPgu/oh-my-Dynamic · 49 tokens

skill-creator

Create, install, or update skills in the workspace. Use when (1) installing a skill from a URL or remote source, (2) creating a new skill from scratch, (3) updating or restructuring existing skills. Always use this skill for any skill installation or creation task.

zhayujie/CowAgent · 61 tokens

image-generation

Generate or edit images from text prompts. Use when the user asks to create, draw, design, or edit an image, illustration, photo, icon, poster, or any visual content.

zhayujie/CowAgent · 41 tokens

implementation-final-review

Perform the repository's risk-tiered independent final review before implementation completion. Use only when explicitly invoked or when repository instructions require it after behavior-impacting implementation work; audit the complete task diff, supported contracts, lifecycle and security boundaries, complexity, and…

openai/openai-agents-python · 58 tokens

pydantic-ai

Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.

davila7/claude-code-templates · 32 tokens