/ ディレクトリ / プレイグラウンド / Flow Next
● コミュニティ gmickel ⚡ 即起動

Flow Next

作者 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.

なぜ使うのか

主な機能

ライブデモ

実際の動作

準備完了

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

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

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

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

Claude Desktop と同じ形式。Windsurf を再起動して反映。

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

Continue はマップではなくサーバーオブジェクトの配列を使用。

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

context_servers に追加。保存時に Zed がホットリロード。

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

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Flow Next

Plan a feature before coding

👤 Claude Code users ⏱ ~15 min intermediate

使うタイミング: You want to align on approach before agents start writing.

フロー
  1. Trigger
    Invoke flow-next with your feature description.✓ コピーしました
    → Plan emitted
  2. Edit
    Tweak / reorder / drop steps.✓ コピーしました
    → Approved plan
  3. Execute
    Run the plan; agent ticks steps as they complete.✓ コピーしました
    → Feature built per plan

結果: Reviewed plan executed without surprise scope creep.

組み合わせ

他のMCPと組み合わせて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✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
plan / approve / execute (see docs) Three-phase command surface 1 call

コストと制限

運用コスト

APIクォータ
N/A
呼び出しあたりのトークン
Plans add ~1 plan-sized round-trip
金額
Free
ヒント
Save plans alongside the PR — great for retros

セキュリティ

権限、シークレット、影響範囲

最小スコープ: fs-read fs-write
認証情報の保管: None
データ送信先: None

トラブルシューティング

よくあるエラーと対処法

Plan too vague

Ask for "concrete file paths" in the brief

代替案

Flow Next 他との比較

代替案代わりに使う場面トレードオフ
Direct executionTrivial changeRiskier on bigger work

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る