Source profileQuality 93/100

zereight/gitlab-mcp/.github/skills/team/SKILL.md

team

N coordinated agents on shared task list with staged pipeline. Activate when user says: team, spawn agents, parallel agents, coordinate agents, multi-agent, swarm, work together.

Source repository stars
1,918
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-25

Decision brief

What it does: where it fits

Spawn N coordinated agents working on a shared task list. Uses VS Code's native subagent system for team management, inter-agent messaging, and task dependencies.

Best for

  • Task is decomposable into independent subtasks
  • Multiple files/modules need parallel work
  • Large-scale refactoring, migration, or multi-service work

Not for

  • Single-file changes → use /omg-autopilot or direct editing
  • Sequential pipeline → use /omg-autopilot

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/zereight/gitlab-mcp --skill ".github/skills/team"
Safe inspection promptEditorial

Inspect the Agent Skill "team" from https://github.com/zereight/gitlab-mcp/blob/1f7e8f4a6adacf9bee3a89b9e8694d2872a39c60/.github/skills/team/SKILL.md at commit 1f7e8f4a6adacf9bee3a89b9e8694d2872a39c60. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Usage

    N — Number of agents (1-20). Defaults to auto-sizing.

    N — Number of agents (1-20). Defaults to auto-sizing.agent-type — Agent for team-exec stage (executor, debugger, designer, etc.). Defaults to stage-aware routing.ralph — Wraps team in Ralph's persistence loop (retry on failure, verification before completion).
  2. 02

    Stage Agent Routing

    Each stage uses specialized agents — not just executors:

    Lead picks agents per stage, not the user. User's N:agent-type only overrides team-exec workers.Specialist agents complement executors. Route analysis to @architect, UI to @designer.Security-sensitive or 20 file changes must include @security-reviewer + @code-reviewer in team-verify.
  3. 03

    Stage Entry/Exit Criteria

    team-plan: Entry = invocation. Exit = task graph ready.

    team-plan: Entry = invocation. Exit = task graph ready.team-prd: Entry = scope ambiguous. Exit = acceptance criteria explicit.team-exec: Entry = tasks created + workers spawned. Exit = tasks reach terminal state.
  4. 04

    Workflow

    Use @explore or @architect to analyze the codebase and break the task into N subtasks: - Each subtask should be file-scoped or module-scoped - Subtasks must be independent or have clear dependencies - Each needs a concise subject and detailed description

    Extract N (agent count, validate 1-20)Extract agent-typeExtract task description
  5. 05

    Phase 1: Parse Input

    Extract N (agent count, validate 1-20)

    Extract N (agent count, validate 1-20)Extract agent-typeExtract task description

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars1,918SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
zereight/gitlab-mcp
Skill path
.github/skills/team/SKILL.md
Commit
1f7e8f4a6adacf9bee3a89b9e8694d2872a39c60
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

Team

Spawn N coordinated agents working on a shared task list. Uses VS Code's native subagent system for team management, inter-agent messaging, and task dependencies.

When to Use

  • Task is decomposable into independent subtasks
  • Multiple files/modules need parallel work
  • Large-scale refactoring, migration, or multi-service work

When NOT to Use

  • Single-file changes → use /omg-autopilot or direct editing
  • Sequential pipeline → use /omg-autopilot
  • Just need a plan → use /plan or /ralplan

Usage

/team 3:executor "fix all TypeScript errors"
/team 4:designer "implement responsive layouts"
/team "refactor the auth module"
/team ralph "build a complete REST API"

Parameters

  • N — Number of agents (1-20). Defaults to auto-sizing.
  • agent-type — Agent for team-exec stage (executor, debugger, designer, etc.). Defaults to stage-aware routing.
  • ralph — Wraps team in Ralph's persistence loop (retry on failure, verification before completion).
  • task — High-level task to decompose and distribute.

Architecture

User: "/team 3:executor fix all TypeScript errors"
              |
              v
      [omg-coordinator (Lead)]
              |
              +-- Analyze & decompose → subtask list
              |
              +-- Create tasks with dependencies
              |
              +-- Spawn N worker agents (subagents)
              |
              +-- Monitor loop (messages + task polling)
              |
              +-- Completion → shutdown workers → cleanup

Staged Pipeline

team-plan → team-prd → team-exec → team-verify → team-fix (loop)

Stage Agent Routing

Each stage uses specialized agents — not just executors:

StageRequired AgentsOptional Agents
team-plan@explore, @planner@analyst, @architect
team-prd@analyst@critic
team-exec@executor@debugger, @designer, @writer, @test-engineer
team-verify@verifier@test-engineer, @security-reviewer, @code-reviewer
team-fix@executor@debugger

Routing rules:

  1. Lead picks agents per stage, not the user. User's N:agent-type only overrides team-exec workers.
  2. Specialist agents complement executors. Route analysis to @architect, UI to @designer.
  3. Security-sensitive or >20 file changes must include @security-reviewer + @code-reviewer in team-verify.

Stage Entry/Exit Criteria

  • team-plan: Entry = invocation. Exit = task graph ready.
  • team-prd: Entry = scope ambiguous. Exit = acceptance criteria explicit.
  • team-exec: Entry = tasks created + workers spawned. Exit = tasks reach terminal state.
  • team-verify: Entry = execution pass done. Exit (pass) = gates pass. Exit (fail) = fix tasks generated.
  • team-fix: Entry = defects found. Exit = fixes done, return to team-verify.

Verify/Fix Loop

Continue team-exec → team-verify → team-fix until:

  1. Verification passes with no required fixes, or
  2. Max fix attempts exceeded (default: 3) → terminal failed

Workflow

Phase 1: Parse Input

  • Extract N (agent count, validate 1-20)
  • Extract agent-type
  • Extract task description
  • Check for ralph modifier

Phase 2: Analyze & Decompose

Use @explore or @architect to analyze the codebase and break the task into N subtasks:

  • Each subtask should be file-scoped or module-scoped
  • Subtasks must be independent or have clear dependencies
  • Each needs a concise subject and detailed description

Phase 3: Create Team

Write team state via omg_write_state:

{
  "mode": "team",
  "active": true,
  "team_name": "fix-ts-errors",
  "agent_count": 3,
  "current_phase": "team-plan",
  "task": "fix all TypeScript errors"
}

Phase 4: Create Tasks

Create subtasks with dependencies. Pre-assign owners to avoid race conditions.

Phase 5: Spawn Workers

Spawn N subagents in parallel using the agents field references:

  • Each worker gets team preamble + assigned tasks
  • Workers execute independently and report back

Phase 6: Monitor

Monitor via two channels:

  1. Inbound messages — workers report completion or need help
  2. Task polling — check overall progress periodically

Coordination actions:

  • Unblock a worker with guidance
  • Reassign work if a worker finishes early
  • Handle failures — reassign or spawn replacement

Watchdog policy:

  • Task stuck >5 min without messages → send status check
  • No messages >10 min → reassign task
  • Worker fails 2+ tasks → stop assigning to it

Phase 7: Stage Transitions

Update state on every stage transition via omg_write_state.

Phase 8: Completion

  1. Signal shutdown to all workers
  2. Wait for responses (15s timeout)
  3. Clean up team resources and state
  4. Report summary

Stage Handoff Convention

Each stage produces a handoff document before transitioning:

## Handoff: <current-stage> → <next-stage>
- **Decided**: [key decisions]
- **Rejected**: [alternatives and why]
- **Risks**: [identified risks]
- **Files**: [key files modified]
- **Remaining**: [items for next stage]

Handoffs saved to .omc/handoffs/<stage-name>.md. Survive cancellation for resume.

Team + Ralph Composition

When ralph modifier is present:

  1. Ralph creates PRD with stories
  2. Each story executed as a team pipeline
  3. Team verify/fix loop satisfies story acceptance criteria
  4. Ralph verifies story completion
  5. Next story begins

State Tracking

Track in .omc/state/team-state.json via omg_write_state/omg_read_state.

Resume and Cancel

  • Resume: Restart from last non-terminal stage using state + handoffs
  • Cancel: /cancel → graceful shutdown → cleanup → state preserved/cleared per policy

Frequently asked questions

What to verify before installation and use

What does the team source document cover?

Spawn N coordinated agents working on a shared task list. Uses VS Code's native subagent system for team management, inter-agent messaging, and task dependencies.

How do I install team?

The source record exposes this install command: npx skills add https://github.com/zereight/gitlab-mcp --skill ".github/skills/team". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 9438,780

Yeachan-Heo/oh-my-claudecode

team

N coordinated agents on shared task list using Claude Code implicit agent teams

Computed 10024,921

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 10015,122

wanshuiyin/Auto-claude-code-research-in-sleep

citation-audit

Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

Computed 10014,671

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance