/ Verzeichnis / Playground / Flow Next
● Community gmickel ⚡ Sofort

Flow Next

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

bereit

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Flow Next

Plan a feature before coding

👤 Claude Code users ⏱ ~15 min intermediate

Wann einsetzen: You want to align on approach before agents start writing.

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

Ergebnis: Reviewed plan executed without surprise scope creep.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
plan / approve / execute (see docs) Three-phase command surface 1 call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
N/A
Tokens pro Aufruf
Plans add ~1 plan-sized round-trip
Kosten in €
Free
Tipp
Save plans alongside the PR — great for retros

Sicherheit

Rechte, Secrets, Reichweite

Minimale Scopes: fs-read fs-write
Credential-Speicherung: None
Datenabfluss: None

Fehlerbehebung

Häufige Fehler und Lösungen

Plan too vague

Ask for "concrete file paths" in the brief

Alternativen

Flow Next vs. andere

AlternativeWann stattdessenKompromiss
Direct executionTrivial changeRiskier on bigger work

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen