/ Diretório / Playground / strategic-partner
● Comunidade JimmySadek ⚡ Instantâneo

strategic-partner

por JimmySadek · JimmySadek/strategic-partner

Chief-of-Staff skill for Claude Code — separates deciding from building. Challenges assumptions, forces Path A/B/C, gates before implementation.

JimmySadek/strategic-partner makes Claude act as an advisory persona rather than an executor. Two-session loop: an Advisory session (persistent) interrogates assumptions, presents Path A/B/C with tradeoffs, routes tasks, and keeps decision history — while Execution sessions (ephemeral) receive self-contained prompts and build with clean context. Key gates: premise challenge (4 trigger conditions), forced alternatives (3 paths), confidence labels ([SAFE] / [RISK]), Advisory Completion Gate (5 conditions), 14 named cognitive patterns. Core principle: 'The SP never builds. The executor never decides.'

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

strategic-partner-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "strategic-partner-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JimmySadek/strategic-partner",
        "~/.claude/skills/strategic-partner"
      ],
      "_inferred": true
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "strategic-partner-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JimmySadek/strategic-partner",
        "~/.claude/skills/strategic-partner"
      ],
      "_inferred": true
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "strategic-partner-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JimmySadek/strategic-partner",
        "~/.claude/skills/strategic-partner"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "strategic-partner-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JimmySadek/strategic-partner",
        "~/.claude/skills/strategic-partner"
      ],
      "_inferred": true
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "strategic-partner-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JimmySadek/strategic-partner",
        "~/.claude/skills/strategic-partner"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "strategic-partner-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/JimmySadek/strategic-partner",
          "~/.claude/skills/strategic-partner"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add strategic-partner-skill -- git clone https://github.com/JimmySadek/strategic-partner ~/.claude/skills/strategic-partner

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: strategic-partner

Run a decision through the advisor before touching code

👤 Tech leads and founders who suspect they'd regret building too soon ⏱ ~30 min intermediate

Quando usar: You're about to ask Claude Code to build something substantial. Pause and consult the advisor first.

Pré-requisitos
  • Skill cloned — git clone https://github.com/JimmySadek/strategic-partner ~/.claude/skills/strategic-partner
Fluxo
  1. Open the advisory session
    Using strategic-partner — I'm about to add a queue system to handle email sends. Challenge my premise first.✓ Copiado
    → Claude probes whether a queue is actually needed vs simpler alternatives
  2. Receive Path A/B/C
    Give me three paths with tradeoffs.✓ Copiado
    → Three distinct paths, each labeled [SAFE] or [RISK], with honest downsides
  3. Cross Completion Gate
    I pick Path B. Prepare the executor prompt.✓ Copiado
    → Gate check runs; if conditions aren't met, you're pushed back to advisory
  4. Hand off to executor
    Open a fresh Claude Code session and paste the executor prompt.✓ Copiado
    → Execution session works with clean context

Resultado: Work that's been decided deliberately rather than drifted into.

Armadilhas
  • Using the advisor as a rubber stamp — If you're always picking 'Path A — do what I said', the premise challenge isn't working — provide real context
Combine com: github

Run a weekly strategy review with the persistent advisor

👤 Solo operators without a real chief-of-staff ⏱ ~30 min beginner

Quando usar: Friday afternoon, closing out the week.

Fluxo
  1. Review decisions made this week
    strategic-partner — review this week's advisory log. Which decisions do I now have evidence to revise?✓ Copiado
    → Specific call-outs of decisions where execution revealed something new
  2. Plan next week
    What's the one decision next week that most deserves premise challenge?✓ Copiado
    → Pinpoint rather than a to-do list

Resultado: A weekly audit that compounds across months.

Combine com: planning-with-files

Combinações

Combine com outros MCPs para 10× de alavancagem

strategic-partner-skill + planning-with-files

Persist the advisor's decision log across sessions in findings.md / progress.md

Use planning-with-files — keep decisions.md updated every advisory session.✓ Copiado
strategic-partner-skill + github

When executor session commits, reference the decision from advisor log in the PR body

After executor finishes, link the advisor decision ID in the PR description.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
premise_challenge intended work + context Before any substantial build 0
forced_alternatives problem statement Once premise passes; before committing to one path 0
completion_gate chosen path + context Before crafting executor prompt 0
executor_prompt_craft decision + context Handoff to execution 0
decision_log current session state Throughout advisory session 0

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
Advisor sessions carry persistent context — can grow
Monetário
Free — skills are local files
Dica
Trim the decision log periodically; stale decisions bloat context.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials — pure prompts
Saída de dados: None

Solução de problemas

Erros comuns e correções

Skill not invoked — Claude jumps to building

Say 'use strategic-partner' explicitly; the skill is the brake.

Verificar: ls ~/.claude/skills/strategic-partner/SKILL.md
SKILL.md frontmatter wrong

Re-clone; description drives activation.

Verificar: head ~/.claude/skills/strategic-partner/SKILL.md
Wrong trigger keywords — no premise challenge happens

Phrase as 'challenge my premise' or 'advisor mode' explicitly; 'help me build X' skips advisory.

Alternativas

strategic-partner vs. outros

AlternativaQuando usarTroca
planning-with-filesYou want disk-based progress memory rather than decision gatingComplementary — different purposes
Carmack CouncilYou want multi-expert review rather than chief-of-staff personaDifferent phase — Council reviews, SP decides upstream

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills