/ Diretório / Playground / Flow Next
● Comunidade gmickel ⚡ Instantâneo

Flow Next

por gmickel · gmickel/flow-next

Plan-first orchestration: every non-trivial ask becomes a checkable plan you can edit before any code is written.

Flow Next slots between you and the agent: it prompts for a structured plan first, you approve, then execution. Works across Claude Code, OpenAI Codex, and Factory Droid.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

pronto

Instalar

Escolha seu cliente

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

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "flow-next-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/gmickel/flow-next"
      ],
      "_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": {
    "flow-next-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/gmickel/flow-next"
      ],
      "_inferred": true
    }
  }
}

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

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "flow-next-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/gmickel/flow-next"
      ],
      "_inferred": true
    }
  }
}

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

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "flow-next-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/gmickel/flow-next"
      ]
    }
  ]
}

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

~/.config/zed/settings.json
{
  "context_servers": {
    "flow-next-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/gmickel/flow-next"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add flow-next-skill -- git clone https://github.com/gmickel/flow-next

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

Casos de uso

Usos do mundo real: Flow Next

Plan a feature before coding

👤 Claude Code users ⏱ ~15 min intermediate

Quando usar: You want to align on approach before agents start writing.

Fluxo
  1. Trigger
    Invoke flow-next with your feature description.✓ Copiado
    → Plan emitted
  2. Edit
    Tweak / reorder / drop steps.✓ Copiado
    → Approved plan
  3. Execute
    Run the plan; agent ticks steps as they complete.✓ Copiado
    → Feature built per plan

Resultado: Reviewed plan executed without surprise scope creep.

Combinações

Combine com outros MCPs para 10× de alavancagem

flow-next-skill + github

Attach the plan to the PR for reviewer context

Combine flow-next-skill with github: Attach the plan to the PR for reviewer context✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
plan / approve / execute (see docs) Three-phase command surface 1 call

Custo e limites

O que custa rodar

Cota de API
N/A
Tokens por chamada
Plans add ~1 plan-sized round-trip
Monetário
Free
Dica
Save plans alongside the PR — great for retros

Segurança

Permissões, segredos, alcance

Escopos mínimos: fs-read fs-write
Armazenamento de credenciais: None
Saída de dados: None

Solução de problemas

Erros comuns e correções

Plan too vague

Ask for "concrete file paths" in the brief

Alternativas

Flow Next vs. outros

AlternativaQuando usarTroca
Direct executionTrivial changeRiskier on bigger work

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills