/build-team
Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my
$ npx -y skills add kbanc85/claudia --skill build-team --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/build-team
Context preview
The summary Claude sees to decide when to auto-load this skill.
Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my
SKILL.md
build-team.SKILL.mdname: build-team
description: Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my agents", "what agents should I have", "design my team", "/build-team", or asks Claudia to tailor her team to their work. See also: `hire-agent` for proactive single-agent suggestions; `structure-generator` for folder scaffolding; `capability-suggester` for command-level additions.
argument-hint: "[optional: focus area, e.g. 'around client work']"
invocation: explicit
effort-level: high
Build Team
The user-invoked counterpart to `hire-agent`. Where `hire-agent` suggests one agent reactively when it spots a repeated pattern, `build-team` looks at the whole picture (the user's profile, judgment rules, and real task history) and proposes a tailored team in one pass. It is a Maker-Checker flow (Proposal 11, E6): Claudia proposes, an independent Checker validates, the user approves, and only then is anything written.
What this is, and is not
- It **proposes and, on approval, scaffolds** agent definitions. It never
auto-spawns agents or takes external actions.
- It **reuses the existing roster first** (the agents in `.claude/agents/`) and
adds a new role only when the user's work clearly justifies one.
- It **starts minimal.** A small team that covers the real work beats a sprawling
org chart the user will never use. Growth comes later, from `hire-agent` and the proactive team-update suggestions (Proposal 11, E7).
- It does **not** duplicate `agent-dispatcher` routing logic, and it does not
change how Claudia delegates. It only proposes which agents exist.
When to fire
Trigger phrases: "build my team", "set up my agents", "what agents should I have", "design my team", "/build-team", "tailor your team to my work".
Also the landing spot when a proactive suggestion (from `capability-suggester` or `hire-agent`) escalates from "add one agent" to "let's set up your whole team".
Do NOT fire for: adding a single agent for one observed pattern (use `hire-agent`), folder/structure changes (use `structure-generator`), or command/workflow additions (use `capability-suggester`).
The flow
Step 1: Read the profile
Gather, silently:
- `context/me.md`: role, archetype, priorities, the shape of a typical week.
- `context/judgment.yaml` (if it exists): priorities, delegation preferences,
surfacing rules. A user who said "just auto-process transcripts" wants a processing agent; a user who said "always run things by me" wants a smaller, more ask-first team.
- Recent task patterns: what the user has actually asked Claudia to do
repeatedly (lean on the same signals `hire-agent` uses, plus `memory_recall` for recurring work). The team should map to real work, not a generic template.
If `context/me.md` does not exist, the user has not onboarded. Route to onboarding first; do not propose a team into a vacuum.
Step 2: Maker proposes the team
Claudia (the Maker) drafts a team:
1. Start from the **minimal seed for the user's archetype** (see the seed table below). 2. Adjust to the user's actual work: drop a seed role they will not use, add a role a recurring task clearly needs. 3. For each role, write a one-line **rationale tied to the user's real work** ("You process client transcripts most weeks, so a Document Processor handles the extraction while I keep the judgment"). A role with no concrete rationale does not belong in the proposal. 4. Every new (non-roster) role must pass the `hire-agent` candidate test: compute-heavy, judgment-light, structured in and out, repeatable. If it needs relationship context or would take external actions, it is not an agent.
Step 3: The Checker validates (bounded)
Dispatch the `loop-checker` agent with the team proposal as the `artifact` and the team rubric below. The Checker scores independently and returns the standard verdict JSON (`verified`, `score`, `issues`, `hard_constraint_violated`).
If the Checker returns `verified: false` (most often: too large, or a role that needs judgment), the Maker **revises once** based on the issues (usually by trimming) and re-checks. Cap at **2 revisions**. This is the same bounded Maker-Checker discipline every loop follows; the team proposal is not exempt.
**The team rubric:**
| Dimension | 10 | 0 | |-----------|----|----| | Goal alignment | Every role maps to a stated priority or a recurring task in the profile | Roles are generic, not tied to this user | | Right-sized | The minimum team that covers the work (progressive, not overwhelming) | Sprawling; roles the user will not use | | Judgment-safe | Every role is compute-heavy and judgment-light | A role would take external actions or need relationship judgment | | Reuse-first | Uses existing roster agents where they fit; new roles only when justified | Invents roles that duplicate existing agents | | Tier-correct | Haiku for structured extraction, Sonnet for multi-turn research | Mismatched model tiers |
**Hard constraints** (any one forces `verified: false`): more than 5 roles in a first team, or any role that would require relationship judgment or take external actions.
Step 4: Status file + approval gate
Write `team_status.md` in the standard schema (`docs/loop-status-schema.md`): `last_input` (one-line profile summary), `maker_proposal` (the team), `score`, `checker_verdict`, `verified`, `next_action: await user approval`. Write it to the workspace, atomically (temp sibling then rename).
Then present the validated proposal to the user: each role, its model tier, and its one-line rationale, plus what is reused vs new. **Write nothing to `.claude/agents/` or `.claude/skills/` yet.** This is a Human-Approved action (see `claudia-principles.md`). Ask plainly: "Want me to set this team up?"
Step 5:
Read more
name: build-team description: Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my agents", "what agents should I have", "design my team", "/build-team", or asks Claudia to tailor her team to their work. See also: `hire-agent` for proactive single-agent suggestions; `structure-generator` for folder scaffolding; `capability-suggester` for command-level additions. argument-hint: "[optional: focus area, e.g. 'around client work']" invocation: explicit effort-level: high
Build Team
The user-invoked counterpart to `hire-agent`. Where `hire-agent` suggests one agent reactively when it spots a repeated pattern, `build-team` looks at the whole picture (the user's profile, judgment rules, and real task history) and proposes a tailored team in one pass. It is a Maker-Checker flow (Proposal 11, E6): Claudia proposes, an independent Checker validates, the user approves, and only then is anything written.
What this is, and is not
- It **proposes and, on approval, scaffolds** agent definitions. It never
auto-spawns agents or takes external actions.
- It **reuses the existing roster first** (the agents in `.claude/agents/`) and
adds a new role only when the user's work clearly justifies one.
- It **starts minimal.** A small team that covers the real work beats a sprawling
org chart the user will never use. Growth comes later, from `hire-agent` and the proactive team-update suggestions (Proposal 11, E7).
- It does **not** duplicate `agent-dispatcher` routing logic, and it does not
change how Claudia delegates. It only proposes which agents exist.
When to fire
Trigger phrases: "build my team", "set up my agents", "what agents should I have", "design my team", "/build-team", "tailor your team to my work".
Also the landing spot when a proactive suggestion (from `capability-suggester` or `hire-agent`) escalates from "add one agent" to "let's set up your whole team".
Do NOT fire for: adding a single agent for one observed pattern (use `hire-agent`), folder/structure changes (use `structure-generator`), or command/workflow additions (use `capability-suggester`).
The flow
Step 1: Read the profile
Gather, silently:
- `context/me.md`: role, archetype, priorities, the shape of a typical week.
- `context/judgment.yaml` (if it exists): priorities, delegation preferences,
surfacing rules. A user who said "just auto-process transcripts" wants a processing agent; a user who said "always run things by me" wants a smaller, more ask-first team.
- Recent task patterns: what the user has actually asked Claudia to do
repeatedly (lean on the same signals `hire-agent` uses, plus `memory_recall` for recurring work). The team should map to real work, not a generic template.
If `context/me.md` does not exist, the user has not onboarded. Route to onboarding first; do not propose a team into a vacuum.
Step 2: Maker proposes the team
Claudia (the Maker) drafts a team:
1. Start from the **minimal seed for the user's archetype** (see the seed table below). 2. Adjust to the user's actual work: drop a seed role they will not use, add a role a recurring task clearly needs. 3. For each role, write a one-line **rationale tied to the user's real work** ("You process client transcripts most weeks, so a Document Processor handles the extraction while I keep the judgment"). A role with no concrete rationale does not belong in the proposal. 4. Every new (non-roster) role must pass the `hire-agent` candidate test: compute-heavy, judgment-light, structured in and out, repeatable. If it needs relationship context or would take external actions, it is not an agent.
Step 3: The Checker validates (bounded)
Dispatch the `loop-checker` agent with the team proposal as the `artifact` and the team rubric below. The Checker scores independently and returns the standard verdict JSON (`verified`, `score`, `issues`, `hard_constraint_violated`).
If the Checker returns `verified: false` (most often: too large, or a role that needs judgment), the Maker **revises once** based on the issues (usually by trimming) and re-checks. Cap at **2 revisions**. This is the same bounded Maker-Checker discipline every loop follows; the team proposal is not exempt.
**The team rubric:**
| Dimension | 10 | 0 | |-----------|----|----| | Goal alignment | Every role maps to a stated priority or a recurring task in the profile | Roles are generic, not tied to this user | | Right-sized | The minimum team that covers the work (progressive, not overwhelming) | Sprawling; roles the user will not use | | Judgment-safe | Every role is compute-heavy and judgment-light | A role would take external actions or need relationship judgment | | Reuse-first | Uses existing roster agents where they fit; new roles only when justified | Invents roles that duplicate existing agents | | Tier-correct | Haiku for structured extraction, Sonnet for multi-turn research | Mismatched model tiers |
**Hard constraints** (any one forces `verified: false`): more than 5 roles in a first team, or any role that would require relationship judgment or take external actions.
Step 4: Status file + approval gate
Write `team_status.md` in the standard schema (`docs/loop-status-schema.md`): `last_input` (one-line profile summary), `maker_proposal` (the team), `score`, `checker_verdict`, `verified`, `next_action: await user approval`. Write it to the workspace, atomically (temp sibling then rename).
Then present the validated proposal to the user: each role, its model tier, and its one-line rationale, plus what is reused vs new. **Write nothing to `.claude/agents/` or `.claude/skills/` yet.** This is a Human-Approved action (see `claudia-principles.md`). Ask plainly: "Want me to set this team up?"
Step 5:
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Other skills on claudia.
- /auto-research
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget. Claudia edits the artifact, scores it, keeps it if better or reverts if worse, repeats. Use when user says "iterate on this",
Open skill - /brain-monitor
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on "brain monitor", "show dashboard", "memory dashboard", "terminal brain". See also: `brain` for a 3D graph view in the browser.
Open skill - /brain
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
Open skill - /capture-meeting
Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
Open skill - /client-health
Health check across active client engagements showing status, deliverables, and concerns. Triggers on "how are my clients?", "client status", "client health check".
Open skill - /databases
View all Claudia memory databases, switch between them, manage isolation. Triggers on "which database?", "switch workspace", "show databases", "list databases".
Open skill

