From forwward-teams
Orchestrates multi-agent engineering and business teams by analyzing tasks, selecting team shapes, assigning specialist roles, and coordinating parallel agent work with skill dispatch.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forwward-teams:team-leadThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze a task, pick the right team shape, spawn agents with the right skills, coordinate work.
Analyze a task, pick the right team shape, spawn agents with the right skills, coordinate work.
Before spawning agents, check for .claude/project.local.json (local override) then .claude/project.json (build commands) and read CLAUDE.md / AGENTS.md for project conventions. Then detect the stack:
${CLAUDE_PLUGIN_ROOT}/scripts/cli init # creates .claude/project.json if missing
All spawned agents read this file — no per-agent re-detection needed.
| Tier | Model | Use for |
|---|---|---|
| Think | sonnet | Planning, architecture, debugging, review, decisions |
| Execute | haiku | Implementation, commands, edits, fixes, formatting |
Default to haiku. Use sonnet only when reasoning depth matters.
Each role maps to a skill. Spawn the agent and tell it which skill to use.
| Role | Skill | Owns |
|---|---|---|
| Architect | /architect | System design, DB selection, API contracts, project structure |
| Backend | /buildit | API routes, services, business logic, background jobs |
| Frontend | /buildit + /design | Components, UI state, client-side logic, responsiveness |
| Database | /architect | Schema design, migrations, query optimization, indexes |
| API | /buildit + /architect | Endpoint design, versioning, auth, request/response contracts |
| UI/UX | /design | Layout, component patterns, accessibility, visual consistency |
| Reviewer | /review | Cross-cutting quality gate — trust boundaries, N+1s, races |
| DevOps | /devops | CI/CD, Docker, infra, monitoring, deployment |
| Security | /security | Auth, OWASP, compliance, encryption |
| Role | Skill | Owns |
|---|---|---|
| Strategist | /strategy | ICP, competitive intel, positioning, pricing |
| Growth | /gtm | Launch, viral loops, acquisition |
| Copywriter | /pcp-engine + /voice | Landing pages, email sequences, conversion |
| Finance | /finance | Unit economics, burn, runway, models |
| Sales | /sales | Outreach, demos, objection handling |
Trigger: New features touching UI + API + DB.
| Name | Model | Role | Skill |
|---|---|---|---|
| architect | sonnet | API contracts, shared types, system design | /architect |
| backend | haiku | Routes, services, DB | /buildit |
| frontend | haiku | Components, UI (blocked by backend API contract) | /buildit + /design |
| reviewer | sonnet | Quality gate after both ship | /review |
Trigger: Backend features, API design, DB changes.
| Name | Model | Role | Skill |
|---|---|---|---|
| backend | sonnet | Design + implement | /architect + /buildit |
| reviewer | haiku | Review after done | /review |
Trigger: UI overhaul, component library, design system work.
| Name | Model | Role | Skill |
|---|---|---|---|
| designer | sonnet | Layout, patterns, component spec | /design |
| frontend | haiku | Implement (blocked by designer) | /buildit |
Trigger: Tech debt, security audit, pre-release review.
| Name | Model | Role | Skill |
|---|---|---|---|
| reviewer | sonnet | Correctness, security, patterns | /review + /security |
| debt | haiku | Duplicates, dead code, over-engineering | /buildit |
Trigger: Bug fixes, debugging, production incidents.
| Name | Model | Role | Skill |
|---|---|---|---|
| investigator | sonnet | Root cause, reproduction | /review |
| fixer | haiku | Implement fix (blocked by investigator) | /buildit |
Trigger: Market research, fundraising, competitive analysis, OKR planning.
| Name | Model | Role | Skill |
|---|---|---|---|
| researcher | sonnet | Market intelligence, competitors | /strategy |
| strategist | sonnet | Prioritization, roadmap (blocked by researcher) | /cto or /ceo |
| synthesizer | sonnet | Decisions, OKRs, resource calls (blocked by strategist) | /ceo |
TeamCreate, then TaskCreate for each work itemAgent tool with model tier, role, skill instruction, and team nameTaskUpdate to assign, SendMessage for blockers and handoffs/gate before declaring done/team-memory to consolidate/shipit to push and open PRWhen spawning, include the skill in the agent's prompt:
You are the backend engineer on this team. Use /buildit to implement the payments API.
Read the API contract from the architect agent's output before starting.
Run /gate before declaring done.
The agent will invoke the skill by name — no additional wiring needed.
mode: "acceptEdits" for builders and fixers, mode: "default" for reviewers.npx claudepluginhub iankiku/forwward-teamsComposes and deploys Claude Code Agent Teams by analyzing requirements, auto-selecting skills/agents across scopes, generating task dependency graphs, and orchestrating lifecycle. Use for complex multi-agent tasks with parallel work.
Sets up multi-agent teams for complex projects with file-based planning, per-agent directories, and teammate spawning. Triggers on team/swarm/start-project requests.
Orchestrates parallel agent teams from the bopen-tools roster to break large tasks into sub-tasks handled by domain experts. Requires CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1.