/ Directorio / Playground / Flow Next
● Comunidad 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 qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

listo

Instalar

Elige tu 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
    }
  }
}

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

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

Cursor usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "flow-next-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/gmickel/flow-next"
      ],
      "_inferred": true
    }
  }
}

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "Edit Configuration".

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

Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.

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

Continue usa un array de objetos de servidor en lugar de un mapa.

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

Añádelo a context_servers. Zed recarga en caliente al guardar.

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

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: Flow Next

Plan a feature before coding

👤 Claude Code users ⏱ ~15 min intermediate

Cuándo usarlo: You want to align on approach before agents start writing.

Flujo
  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.

Combinaciones

Combínalo con otros MCPs para multiplicar por 10

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

Herramientas

Lo que expone este MCP

HerramientaEntradasCuándo llamarCoste
plan / approve / execute (see docs) Three-phase command surface 1 call

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
N/A
Tokens por llamada
Plans add ~1 plan-sized round-trip
Monetario
Free
Consejo
Save plans alongside the PR — great for retros

Seguridad

Permisos, secretos, alcance

Ámbitos mínimos: fs-read fs-write
Almacenamiento de credenciales: None
Salida de datos: None

Resolución de problemas

Errores comunes y soluciones

Plan too vague

Ask for "concrete file paths" in the brief

Alternativas

Flow Next vs otros

AlternativaCuándo usarlaContrapartida
Direct executionTrivial changeRiskier on bigger work

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills