with one click
team
// Run the autonomous Crypto Master agent team through planning, coding, testing, and documentation.
// Run the autonomous Crypto Master agent team through planning, coding, testing, and documentation.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | team |
| description | Run the autonomous Crypto Master agent team through planning, coding, testing, and documentation. |
Runs the autonomous Crypto Master agent team to advance the project by one sub-task. Use when the user wants the team to find the next thing to do and run it through plan ā code ā test ā document.
Architecture note. Claude Code blocks subagent nesting at runtime ā a spawned subagent cannot spawn siblings, regardless of its
tools:frontmatter. So the team-lead role is not a subagent. You (the parent assistant who received/team) are the team lead. You dispatch the specialist subagents (product-planner,quant-trader-expert,senior-developer,qa-reviewer,docs-auditor) yourself via theAgenttool. Do not try to spawn ateam-leadsubagent ā it does not exist in.claude/agents/.
$ARGUMENTS ā (optional)team-lead-algorithm.md: critical TECH-DEBT ā docs/team-priorities.md open queue ā cross-check gaps ā construction plans ā session follow-ups.
<unit> or <task> ā force the team onto a specific AI-DLC unit or bounded task.from-tech-debt ā bias toward escalated TECH-DEBT items first.cross-check N ā ask the auditor to run the cross-check for a completed phase.For one-off requests that aren't in the construction plan queue ("verify why nothing's trading on Fly", "audit the auto-approve threshold against last week's data"), add a one-line item to docs/team-priorities.md. You (as lead) pick the first unchecked item every cycle, map it through aidlc-docs/inception/requirements/, aidlc-docs/inception/user-stories/, and aidlc-docs/inception/application-design/unit-of-work-story-map.md, process it through the appropriate specialists, and the docs-auditor flips the box and moves it to the Done section with a one-line outcome.
This is the seam that makes /loop /team actually useful for autonomous iteration:
aidlc-docs/construction/plans/.You don't have to edit the file by hand ā just say "add this to team priorities: " and the assistant will append it for you.
Run one cycle of the team:
product-planner (only if the spec is missing) and/or quant-trader-expert (only if trading correctness is at stake) provide upfront analysis ā dispatch in parallel when both are needed.senior-developer implements.qa-reviewer runs pytest / ruff / mypy and reviews the diff.docs-auditor writes the session log, updates TECH-DEBT, runs the phase cross-check if a phase just completed.Halt and ask the user when:
You (the parent assistant) are the lead. Concretely:
team-lead-algorithm.md (sibling file in this skill folder) ā it's the lead's playbook (survey order, priority rules, specialist-selection table, report format, anti-patterns).docs/team-design.md for the team shape and ownership map.aidlc-docs/inception/requirements/requirements.md,
aidlc-docs/inception/user-stories/stories.md, and
aidlc-docs/inception/application-design/unit-of-work-story-map.md.Read / Bash, pick the next sub-task per the priority order, decide which specialists are needed, and dispatch them via the Agent tool (parallel calls in one message when independent).team-lead-algorithm.md).Do not try to spawn a
team-leadsubagent. There is no.claude/agents/team-lead.mdā the role lives in the parent. If a future Claude Code release lifts the subagent-nesting restriction, this skill can be re-architected; until then, parent-as-lead is the only working pattern.
/team invocation = one cycle. The user decides whether to invoke again./team
ā team picks the next sub-task. With docs/team-priorities.md open queue empty, it resumes the first unchecked construction-plan step. With one queued, it processes the queued item first.
/loop /team
ā continuous iteration. Each cycle: priority queue ā construction plans ā cross-check ā done. User can add a priority mid-loop and it leapfrogs the construction plan queue on the next cycle. Loop self-paces between cycles. Stops when a user-gate trigger fires (live credentials / mainnet money / unit-completion gap / qa š“) ā surfaces the question and waits.
/team proposal-runtime stale quote audit
ā team maps the task through requirements, stories, and unit ownership before working.
/team from-tech-debt
ā team prioritises escalated TECH-DEBT (overrides priority queue).
/team cross-check 9
ā auditor produces the Phase 9 cross-check (already exists; would refresh).
/dev-crypto directly)/dev-crypto is a single-agent linear workflow. /team is the same workflow split across specialists, which buys:
qa-reviewer reads the dev's diff cold, catching defects the author would miss.quant-trader-expert won't approve a generic indicator mashup; the generalist will.For trivial sub-tasks (one-line config edit), /dev-crypto is faster. For anything trading-domain or phase-completing, /team is better.