team

Execute named bundles of godmode skills with coordination patterns.

26|8|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/arbazkhan971/godmode --skill team-arbazkhan971
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team
Source: https://github.com/arbazkhan971/godmode/tree/main/skills/team
Command: npx skills add https://github.com/arbazkhan971/godmode --skill team-arbazkhan971

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Compose and run a named bundle of existing godmode skills as a single coordinated invocation so users can orchestrate multi-step workflows without rewriting or duplicating skill logic.

Core Features & Use Cases

  • Resolve a user-owned .godmode/teams/<name>.yaml bundle, read name, description, pattern, skills, optional constraints, and success_criterion.
  • Validate bundles against a whitelist of six coordination patterns, enforce a maximum of 10 skills, ensure each listed skill has a skills/<skill>/SKILL.md, and parse constraints key=value.
  • Dispatch skills according to declared patterns (Pipeline, Fan-out/Fan-in, Expert Pool, Producer-Reviewer, Supervisor, Hierarchical Delegation), apply constraints to each dispatched skill, log per-skill TSV rows, and evaluate a shell-based success_criterion as the final gate.

Quick Start

Invoke the team bundle by running the godmode team command with the bundle name, for example: /godmode:team api-backend

Frequently Asked Questions about team

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate multiple skills as a single coordinated workflow?

You can orchestrate multiple skills as a single coordinated workflow by defining a YAML bundle in .godmode/teams/ and invoking it. This resolves and dispatches up to ten existing skills using one of six coordination patterns.

What coordination patterns are available for dispatching skill bundles?

Available coordination patterns for dispatching skill bundles include Pipeline, Fan-out/Fan-in, Expert Pool, Producer-Reviewer, Supervisor, and Hierarchical Delegation. A whitelist enforces these six valid patterns during YAML validation.

How do I validate a YAML skill bundle before execution?

YAML skill bundle validation checks the bundle against a coordination pattern whitelist, enforces a maximum of 10 skills, verifies each listed skill has a SKILL.md file, and parses constraints formatted as key=value pairs.

Does this skill bundle dispatcher support applying constraints to individual skills?

Yes, the skill bundle dispatcher supports applying constraints to individual skills. It parses key=value constraints from the YAML file and applies them to each dispatched skill according to the declared coordination pattern.

What is the maximum number of skills I can include in a single team invocation?

The maximum number of skills you can include in a single team invocation is ten. The system enforces this size limit during YAML bundle validation to ensure reliable coordinated execution.

How does team orchestration determine if a dispatched workflow succeeded?

Team orchestration determines workflow success by evaluating a shell-based success_criterion as the final gate. It also logs per-skill execution details to a .godmode/team-log.tsv file for tracking.