Provision team
The mod pack for AI coding agents. 12 battle-tested skills. One install. Seven platforms.
npx -y skills add MyAiFreedomSystems/incredagents --skill provision-teamAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 14 days oldThe repository was created 14 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Provision a new agent team with identity, composition, governance, and orchestration protocol. Creates TEAM_IDENTITY.md, TEAM_COMPOSITION.md, TEAM_GOVERNANCE.md, and registers the team in the governance nucleus. Use when assembling multiple agents into a coordinated team for a shared purpose — code review squads, build teams, research panels, or any multi-agent workflow.
SKILL.md
8.0 KB, ~1.9k tokens by cl100k_base, as published. Nobody here has run it
Provision a Team
This skill creates a fully provisioned team folder that coordinates multiple agents
toward a shared purpose. The team inherits governance from $GOVERNANCE_HOME and
references existing orchestration infrastructure — it does not reinvent it.
When to invoke
Invoke when the user says any of:
- "Provision a new team called X."
- "Create team X for Y."
- "Stand up team X."
- "Scaffold a new team at
<path>/X." - "Initialize X as a team."
Do NOT invoke for:
- A single agent (use
provision-agentinstead). - A plain project folder (use
provision-projectinstead). - A team folder that already has
TEAM_IDENTITY.mdandTEAM_COMPOSITION.md— it's already provisioned.
Prerequisites
GOVERNANCE_HOMEmust be set.- Each agent in the team composition must already be provisioned via
provision-agent.
Inputs
- Team name — Preserve casing. Examples:
BuildTeam,ResearchSquad,GrowthTeam. - Purpose — One paragraph: what this team collectively accomplishes.
- Agent composition — List of agent names that form the team (each should already be provisioned).
- Orchestration protocol — How agents hand work to each other. Default: sequential dispatch with convergence voting. Specify if custom.
If any required input is missing, ask once. Do not provision with a guessed composition.
The steps
Execute completely and autonomously.
Step 1 — Verify nothing is already provisioned
TARGET="<TeamPath>"
if [ -d "$TARGET" ] && [ -f "$TARGET/TEAM_IDENTITY.md" ] && [ -f "$TARGET/TEAM_COMPOSITION.md" ]; then
echo "ALREADY PROVISIONED: $TARGET"
exit 1
fi
Step 2 — Create the team directory skeleton
TEAM_PATH="<TeamPath>"
LOGS_SUBDIR=$(basename "$TEAM_PATH" | tr '[:upper:] ' '[:lower:]-')
mkdir -p "$TEAM_PATH/handoffs" \
"$TEAM_PATH/logs/$LOGS_SUBDIR" \
"$TEAM_PATH/.backups" \
"$TEAM_PATH/.remember"
Step 3 — Create the core team files
| File | Content |
|---|---|
TEAM_IDENTITY.md | Team name, purpose, shared blackboard concept, collective behavioral boundaries |
TEAM_COMPOSITION.md | Which agents are on the team, their roles, their folder paths, their skill sets |
TEAM_GOVERNANCE.md | How agents hand work to each other, approval rules, escalation paths, dispatch contract |
.env | Empty file with header comment pointing at $GOVERNANCE_HOME/.env as canonical |
.gitignore | .env, .backups/, .DS_Store, node_modules/, dist/, build/, *.log |
logs/<lowercased>/00_SESSION_LEDGER.md | Header + first entry recording this provisioning |
handoffs/<YYYY-MM-DD>_initial-provisioning.md | See Step 5 |
.remember/recent.md | Header + provisioning entry |
Step 4 — Write team files from templates
Use templates from templates/team/ as starting points. Replace all <placeholder>
values with actual team details:
| Placeholder | Replacement |
|---|---|
<TEAM_NAME> | Team name (preserve casing) |
<PURPOSE> | One-paragraph team purpose |
<AGENT_LIST> | Markdown table of agents with roles, paths, skills |
<ORCHESTRATION_PROTOCOL> | How agents coordinate (default: sequential dispatch) |
Step 5 — Write the initial handoff
Create handoffs/<YYYY-MM-DD>_initial-provisioning.md:
- Date, agent, session purpose.
- What was done (directory and file list).
- What is still pending (team purpose refinement, first coordinated task, agent additions/removals).
- Open questions (does the team need custom orchestration, what's the first task).
Step 6 — Register the team
Append or update the team entry in $GOVERNANCE_HOME/config/team_registry.yaml:
- name: <TeamName>
purpose: "<one-line purpose>"
folder_path: <TeamPath>
agents:
- <agent-1>
- <agent-2>
orchestration: "sequential-dispatch"
status: active
provisioned_date: "<YYYY-MM-DD>"
Step 7 — Self-verify
TEAM_PATH="<TeamPath>"
LOGS_SUBDIR=$(basename "$TEAM_PATH" | tr '[:upper:] ' '[:lower:]-')
for f in TEAM_IDENTITY.md TEAM_COMPOSITION.md TEAM_GOVERNANCE.md .env .gitignore \
"logs/$LOGS_SUBDIR/00_SESSION_LEDGER.md" ".remember/recent.md"; do
[ -f "$TEAM_PATH/$f" ] && echo "OK file: $f" || echo "MISSING file: $f"
done
for d in handoffs "logs/$LOGS_SUBDIR" .backups .remember; do
[ -d "$TEAM_PATH/$d" ] && echo "OK dir: $d" || echo "MISSING dir: $d"
done
Every line must print OK.
Step 8 — Hand back
Tell the user the team is ready. Give the absolute path. List which agents are on the team. Do not hand the user a list of follow-up tasks — next steps belong in the team handoff.
What this skill does NOT do
- Does not provision individual agents — each agent must be provisioned via
provision-agentfirst. - Does not reinvent orchestration — references the dispatch contract declared in
provision-project. - Does not create a Git repository or push to GitHub.
- Does not deploy the team or start a runtime.
- Does not duplicate governance documents — inherited from governance nucleus.
Scaffold layout
<TeamName>/
├── TEAM_IDENTITY.md (team name, purpose, shared blackboard — NEW)
├── TEAM_COMPOSITION.md (which agents, their roles — NEW)
├── TEAM_GOVERNANCE.md (handoff rules, approval, escalation — NEW)
├── .env
├── .gitignore
├── handoffs/
│ └── <YYYY-MM-DD>_initial-provisioning.md
├── logs/<lowercased-name>/
│ └── 00_SESSION_LEDGER.md
├── .backups/
├── .remember/
│ └── recent.md
└──
Dispatch contract
Teams use the same dispatch contract as individual projects (see provision-project
skill). The orchestrator dispatches tasks to team members, each agent reports a
convergence verdict, and the orchestrator resolves disagreements. The specific
implementation is configured per-platform, not enforced by this skill.
If the team requires custom orchestration beyond the standard dispatch contract,
document it in TEAM_GOVERNANCE.md as a pending task — do not invent it during
provisioning.
Gotchas
- Casing is load-bearing.
BuildTeam, notbuildteam. - Agents must be provisioned first. Each agent in the composition list should already exist with its own SOUL.md and TOOLS.md. If an agent doesn't exist yet, provision it first.
- No duplicated orchestration. Reference the existing dispatch contract, don't rebuild it.
- No duplicated governance documents. The team inherits governance from the nucleus.
- Timestamps in user's configured timezone. Defaults to UTC.
- Registry is append-only. Never delete a team entry. Mark status as
archivedif a team is retired. - Shared blackboard is conceptual. TEAM_IDENTITY.md describes a shared blackboard concept — the actual implementation (shared file, Notion board, dispatch queue) is determined by the orchestration protocol.
Templates
templates/team/TEAM_IDENTITY.template.md— Team identity and purpose templatetemplates/team/TEAM_COMPOSITION.template.md— Agent composition and roster templatetemplates/team/TEAM_GOVERNANCE.template.md— Handoff rules, approval, escalation template
Works best with…
provision-agent— provision individual agents before assembling them into a teamprovision-project— the base scaffold convention this skill builds onrouting-matrix— assign models to team roles via the matrix
© IncredAgents. This skill is part of the IncredAgents-Skills repository. Distributable, user-agnostic, platform-agnostic.
What ships with it: 3 files
5.5 KB alongside SKILL.md
templates/
Gives 0 of the 12 instructions most agent orchestration skills give in ~1.9k tokens
Counted across 742 of the 995 authors here whose files we hold, read 2026-08-07
- Reference existing artifacts by path or URLin 53 of 742, across 25 files
- Run the full test suite after integrating changesin 51 of 742, across 19 files
- Dispatch one agent per independent problem domainin 50 of 742, across 17 files
- Verify fixes do not conflictin 45 of 742, across 13 files
- Include a suggested skills section in the documentin 45 of 742, across 17 files
- Redact sensitive informationin 41 of 742, across 11 files
- Save to the temporary directory of the operating systemin 39 of 742, across 10 files
- Tailor the document to user-provided focus argumentsin 39 of 742, across 9 files
- Spot check agent changes for systematic errorsin 34 of 742, across 7 files
- Write a handoff document summarising the current conversationin 31 of 742, across 6 files
- Assign each agent a specific scopein 23 of 742, across 8 files
- Provide specific scope and clear goalin 23 of 742, across 5 files
Said here and by no other author read
- verify target team is not already provisioned
- create the team directory skeleton
- create core team files from templates
- replace template placeholders with team details
- register the team in the governance registry
- run the self-verification check
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.