council

Execute um conselho de subagentes com modelos diversos para investigar o mesmo problema sob múltiplas perspectivas, comparar descobertas e produzir uma recomendação final. Use esta habilidade sempre que o usuário solicitar um conselho, segundas opiniões, múltiplos agentes/modelos para avaliar uma questão, investigação paralela, comparação red-team/blue-team ou ajuda para decidir entre abordagens técnicas concorrentes.

npx skills add https://github.com/warpdotdev/common-skills --skill council

Council

Use this skill to coordinate multiple subagents investigating the same question, with different models first and different assigned perspectives second, then synthesize their reports into one recommendation.

This skill is best for judgment-heavy tasks: architecture tradeoffs, risky bug fixes, code review red-teaming, rollout decisions, incident analysis, and “is this alternative worth pursuing?” questions.

Workflow

1. Frame the council question

State the decision the council should answer in one sentence. Identify:

  • the competing options or hypothesis under review;
  • the codebase, branch, PR, issue, design, or artifact to inspect;
  • whether agents should be read-only or may make code changes;
  • the final decision criteria, such as correctness, risk, implementation cost, testability, rollout safety, or product behavior.

If the user’s request is ambiguous, ask only the minimum clarification needed. Otherwise choose sensible defaults and proceed.

2. Choose council members

Prioritize model diversity. A council should not default to three agents on the same model with different angles; use that only when the available launch configuration cannot provide multiple useful models, or when the user explicitly asks for one model. If model diversity is unavailable, say so briefly before falling back to perspective-only diversity.

Preferred default roster for a three-member council:

  • Opus 4.7 or the strongest available Claude/Opus reasoning model: architecture, correctness, and edge-case analysis.
  • GPT 5.5 or the strongest available GPT/Codex model: implementation-grounded review, feasibility, and test strategy.
  • An open-source model such as Kimi 2.6, GLM 5.1, or the strongest available OSS/local model: contrarian critique, hidden assumptions, and alternative framing.

If one of these exact models is unavailable in the active harness, use the closest available model from that family and note the substitution. If no open-source model is available, use a third distinct frontier model if possible; otherwise use the strongest remaining model with a deliberately adversarial or specialist angle.

Assign both a model and an angle to each member. Avoid making the angles redundant with the models; for example, do not ask all members to do general architecture review. Useful angle combinations include:

  • architect/correctness reviewer;
  • implementation/testability reviewer;
  • red-team, security, performance, or product-risk reviewer;
  • contrarian “argue against the obvious solution” reviewer.

When different children need different models, launch them in separate run_agents calls because model selection is run-wide. If the requested model resolves differently than expected, treat the resolved launch settings as authoritative and continue unless they make the task infeasible.

When using non-default harnesses, choose valid model IDs for that harness. For example, Claude Code may expose claude-opus-4-7, Codex may expose gpt-5.5, and open-source models depend on the currently configured local or remote provider. Do not invent unsupported model IDs; if a desired model is not available, select the closest supported substitute and preserve the intended angle diversity.

For read-only investigations, keep all children in the same checkout and explicitly tell them not to edit files. For implementation or prototyping councils, give each local child its own git worktree and branch so they cannot collide.

3. Brief before launching

For explicit orchestration requests, briefly tell the user which council members you plan to launch and what each will investigate, then wait for approval before calling run_agents.

The shared brief should include:

  • repository path or artifact location;
  • current branch or base context;
  • the exact question to answer;
  • relevant background and known concerns;
  • required files/symbols to inspect, if known;
  • constraints, especially read-only/no commits/no PRs;
  • expected report format.

Keep launch prompts short enough that task titles stay compact. If a long brief causes launch validation issues, launch with a minimal prompt and send the full brief to the child agents immediately afterward.

4. Ask for structured reports

Ask every council member to return:

  1. exact file paths, symbols, docs, or evidence inspected;
  2. the current behavior or current implementation;
  3. the alternative being evaluated;
  4. correctness risks and edge cases;
  5. implementation and testing cost;
  6. recommendation: keep current approach, pursue alternative, or use a hybrid;
  7. confidence level and unknowns.

Encourage independence. Do not share one child’s findings with the others unless you are intentionally doing a second-round critique.

5. Collect reports

Read completion messages as they arrive. Do not rely on lifecycle success alone; the useful output is in the child’s report.

If a report is missing key evidence or makes an unsupported claim, send a focused follow-up question to that same child rather than launching a replacement. Reuse existing children for follow-ups because they retain context.

6. Synthesize the recommendation

Compare the reports by evidence quality, not by vote count. In the final answer:

  • lead with the recommendation;
  • call out consensus and disagreements;
  • explain why the recommended option wins against the decision criteria;
  • explicitly address the user’s stated concern;
  • include relevant file paths/symbols without overloading the answer;
  • distinguish “do now” from optional future hardening;
  • mention confidence and material unknowns.

Prefer a concise decision memo over a transcript summary. The user needs the distilled recommendation, not every intermediate detail.

Final answer template

Use this shape unless the task calls for something different:

## Recommendation

[One or two sentences with the decision.]

## Why

- [Key reason 1]
- [Key reason 2]
- [Key reason 3]

## Tradeoffs and risks

- [Risk or caveat]
- [Testing/rollout implication]

## Final call

[Concrete next step: merge current change, pursue alternative, hybrid, run tests, etc.]

Practical notes

  • If the council is read-only, tell children not to modify files, commit, create branches, or open PRs.
  • If the council involves PR or branch work, follow the repository’s normal version-control rules and use isolated worktrees for parallel local edits.
  • If the council is about code review feedback, mark review comments resolved only after the underlying issue is actually addressed.
  • Do not expose internal child agent IDs in user-facing summaries unless the user explicitly asks for them.

Mais skills de warpdotdev

spec-driven-implementation
warpdotdev
Conduza um fluxo de trabalho orientado por especificações para funcionalidades substanciais, escrevendo o PRODUCT.md antes da implementação, escrevendo o TECH.md quando necessário, e mantendo ambas as especificações atualizadas conforme a implementação evolui. Use ao iniciar uma funcionalidade significativa, ao planejar uma implementação orientada por agente, ou quando o usuário desejar que as especificações de produto e técnica sejam registradas no controle de versão.
developmentdocumentproject-management
review-pr
warpdotdev
Revise o diff de um pull request e escreva feedback estruturado em review.json para que o workflow publique. Use ao revisar um PR verificado a partir de artefatos locais como pr_diff.txt e pr_description.txt, produzindo saída de revisão legível por máquina em vez de postar diretamente no GitHub.
code-reviewdevelopment
create-pr
warpdotdev
Criar um pull request no repositório warp para o branch atual. Usar quando o usuário mencionar abrir um PR, criar um pull request, enviar alterações para revisão ou preparar código para merge.
developmentcode-review
implement-specs
warpdotdev
Implemente uma funcionalidade aprovada do PRODUCT.md e TECH.md, mantendo as especificações e o código alinhados no mesmo PR à medida que a implementação evolui. Use após as especificações do produto e técnicas serem aprovadas e o próximo passo for construir a funcionalidade.
developmentcode-reviewapi
cross-critique
warpdotdev
Execute uma segunda rodada em uma questão contestada, circulando a proposta independente de cada subagente para os outros autores e solicitando prós e contras estruturados, depois sintetize. Use esta habilidade sempre que tiver múltiplas propostas ou opiniões independentes sobre uma decisão contestada — tradeoffs de arquitetura, discordâncias em revisão de código, escolhas de design, teorias concorrentes de causa raiz — e quiser uma análise mais precisa do que produziria apenas com a síntese. Combina naturalmente com as habilidades de conselho e pesquisa;...
resolve-merge-conflicts
warpdotdev
Resolve Git merge conflicts by extracting only unresolved paths, conflict hunks, and compact diffs instead of loading whole files into context. Use when a merge, rebase, cherry-pick, or stash pop stops on conflicts, when `git status` shows unmerged paths, or when files contain conflict markers.
developmentcode-review
brandalf
warpdotdev
Orienta a criação, revisão e análise de ativos com a marca Warp ou Oz. Use ao trabalhar em páginas de lançamento, documentações, componentes HTML/CSS, protótipos de UI, prompts, ativos para redes sociais, textos, apresentações ou qualquer outro material de marca que deva ter a aparência e o tom inconfundíveis da Warp ou Oz.
designcreativemarketing
saga
warpdotdev
Execute uma "saga" de desenvolvimento autônoma e orientada por especificações para funcionalidades de médio a grande porte, utilizando um agente orquestrador e uma frota de subagentes trabalhadores. Use esta habilidade sempre que o usuário invocar /saga, solicitar a construção autônoma de uma funcionalidade considerável de ponta a ponta com intervenção humana mínima, desejar uma especificação abrangente dividida em marcos e tarefas com critérios de validação rigorosos antes da implementação paralelizada, ou quiser que um orquestrador delegue a implementação a agentes trabalhadores enquanto preserva sua...
developmentproject-managementtesting