team

team is a skill for Claude Code from hg-pyun/claude-code-marketplace. It costs 138 tokens per session (7,110 once invoked), scanned A, original, MIT.

A five-stage workflow for coordinating several coding agents on independent workstreams. It breaks a large task into stories, defines acceptance criteria, runs work in parallel, and verifies the results.

In plain words
What is it for?
Use it for large refactors or other tasks with at least three independent stories. It stops when the work is ready for a commit and does not create the commit or pull request automatically.
Why use it?
It helps manage large changes that can be split into separate pieces, while adding checks before and after implementation.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; names the TodoWrite tool.

Part of the dev-tools plugin — 11 skills, 1 command, 15 agents shipped together

Good fit Use it for large refactors or other tasks with at least three independent stories. It stops when the work is ready for a commit and does not create the commit or pull request automatically.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hg-pyun/claude-code-marketplace/team
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 hg-pyun/claude-code-marketplace --skill team
Clone the repo
git clone --depth 1 https://github.com/hg-pyun/claude-code-marketplace

Made for: Claude Code.

Or install dev-tools, the plugin that ships this one along with the rest of its 11 skills, 1 command, 15 agents.

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 team

README.md
[![agentmods](https://agentmods.dev/badge/skills/hg-pyun/claude-code-marketplace/team/github.svg)](https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/team)
Your own site
<a href="https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/team"><img src="https://agentmods.dev/badge/skills/hg-pyun/claude-code-marketplace/team/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for team

Your own site · 80×15
<a href="https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/team"><img src="https://agentmods.dev/badge/skills/hg-pyun/claude-code-marketplace/team.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,110 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.00138 $0.07110
Opus 5 $0.00069 $0.03555
Sonnet 5 $0.00028 $0.01422
Haiku 4.5 $0.00014 $0.00711

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

Security

Grade A, and why

team 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 9d 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.

plugins/dev-tools/skills/team/SKILL.md · 286 lines

How it starts

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

team differs from ralph: ralph is sequential single-track persistence with strong TDD-per-story discipline; team is parallel multi-track decomposition for tasks where multiple independent surfaces can be worked on at once.

<Use_When>

  • The task naturally decomposes into ≥ 3 independent stories that can run in parallel (different files, no shared state, no ordering dependency).
  • User says "/team", "team", "팀으로 진행", "parallel agents".
  • A plan (.dt-handoff/<slug>/plan.md) explicitly identifies workstreams that can run concurrently.
  • autopilot Phase 3 chooses team over ralph because the plan has high parallelism.
  • A large refactor touches multiple modules, each handled independently. </Use_When>

<Do_Not_Use_When>

  • The task has a strict sequential dependency chain (each story unblocks the next) — use ralph.
  • The task is a single story or single bug fix — delegate to executor directly.
  • The task is requirements capture (WHAT, not HOW) — clarify the requirements into a spec first; team executes a plan.
  • The task is consensus planning — use ralplan.
  • The user wants automatic commit/PR — refuse; team stops at "ready for commit".
  • Total story count is ≥ 20 — split into multiple ralplan sessions first. </Do_Not_Use_When>

<Why_This_Exists> Tasks that decompose into independent surfaces waste wall-clock time when run sequentially. A 6-story refactor where each story touches a different module finishes in roughly the duration of the longest story, not the sum. The pipeline makes that parallelism explicit and safe by enforcing stage boundaries: every story is decomposed before any is implemented, every implementation is verified before any is shipped, and the verify→fix loop is bounded so it cannot grind forever.

Handoff documents between stages exist because lead context must transfer cleanly across phase boundaries; without them the lead re-derives decisions every stage or carries stale assumptions across phases. One short markdown file per stage keeps the lead honest and the trail auditable.

Stage-aware worker routing (planner decomposes, executor implements, test-engineer tests, architect reviews design, verifier gates completion, code-simplifier cleans up) avoids a one-size-fits-all worker that either over-skills cheap tasks or under-skills complex ones. A dedicated verifier gate removes self-approval: the agent that produced the work is never the one that confirms it is done. </Why_This_Exists>

<Execution_Policy> Output language: handoff docs, story descriptions, progress entries use $LANGUAGE. JSON field names stay English; field values use $LANGUAGE.

TDD Iron Law (non-negotiable): every story that adds production behavior MUST have a Red test authored by test-engineer BEFORE executor runs. The Red step is sequential within a story, even though stories run in parallel.

Parallel execution rules:

  • Stages are sequential globally (plan → prd → exec → verify → fix loop). Within a story, Red → Green → Refactor is sequential.
  • Stage 3 (team-exec): independent stories' Red/Green steps run in parallel — fire N Task calls in ONE message per batch, capped by --max-parallel. Within a wave, Red→Green is pipelined per story: each story's executor fires as soon as that story's test-engineer returns (Red still precedes Green within the story — the Iron Law holds; there is no cross-story barrier between Red and Green).
  • Stage 4 verify: reviewer and critic run in parallel — the one documented exception to the "no parallel reviewers" rule, justified because they review the same final artifact independently at partitioned altitudes (reviewer owns code-level findings; critic owns spec-level gaps — not a second full code review) and it saves wall-clock. --no-critic skips critic.
  • verifier runs once per stage, NOT per wave: one call after all Stage 3 waves, one call after each Stage 5 fix round.

Read the full file on GitHub · 286 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. 9d ago First seen · 286 lines · 138 tokens per session scan A b8476d6881ff

Subscribe to this mod's changes

team is a skill published in the GitHub repository hg-pyun/claude-code-marketplace (2 stars, last pushed 2mo ago), licensed MIT. It adds 138 tokens to every session and 7,110 once invoked, about $0.0007 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