Agent Plugins Marketplace
All plugins

flow

v0.2.13

v0.2.10: v0.2.8 のバッチ幅ハードルールを revert した (同時実行の強制は parallelguard が PreToolUse で行う)。旧文: claim するバッチ幅 N の既定を 4 から 3 に下げ、3 が上限 (1 セッションあたりの同時実行上限) であることをハードルールに明記。並列 or 直列の実判定は従来どおり condukt の schedule が決定論的に行う。あわせて origin/main を統合し、SKILL.md の「実際に流れを止めるのは deterministic gate の側である」の列挙から taintguard (2026-08-24 にユーザー裁定で repo から撤去) を外した版を取り込む — 今は blastguard / donegate / pre-commit・pre-push hook を名指しする (crates/flow/skills/flow/SKILL.md:140。loop・approval clamp・gate 本体の変更なし)。 Unified source→executor driver for Claude Code: a /flow skill that binds the task SOURCES (compass next-move + backlog queue) to the EXECUTOR (condukt, model-routed by fugu-router) in one HOTL loop — gate on compass freshness, pick the highest-priority task, hand it to condukt, verify, mark done, repeat. v0.2.7 RETIRES the SessionStart proposal on the user's instruction: through 0.2.6 a `flow propose` hook injected an L2 propose-then-confirm directive every session the backlog had pending items ("before starting other work, ask with a single AskUserQuestion whether to start /flow"), and autoflow said the same thing twice more — its own SessionStart proposal and a Stop-hook arm that BLOCKED every turn with "/backlog を実行してください". Two plugins were making one request, one of them on every turn, and repetition is not detection: the tenth "there are N items" carries no information the first did not. Whether to drain the queue is the operator's call and typing /flow IS that call, so the hook, the launcher, the binary and the Cargo package are all gone — `propose` was the binary's only subcommand, so nothing was left for it to do. flow is now a SKILLS-ONLY plugin (the shape scout and daily-report already ship). The /flow skill itself is unchanged except for the lines that claimed it would be proposed automatically; it now says explicitly that the agent must NOT propose /flow on its own, because reconstructing the retired directive by hand would undo the retirement. The one test worth keeping moved rather than being deleted with the package: `skill_queue_contract.rs` reads SKILL.md as text and now lives at crates/integration-tests/tests/flow_skill_queue_contract.rs, still pinning that the loop does not take the exclusive project lock and that the pick reserves a task instead of only reading it. Subscription-native (skill only, no binary, no API key).

Claude Code1 Skill

By yukineko0 GitHub starsUpdated yesterday

Directory evidence

Runtimes
Claude Code
Parsed components
1 skill or MCP entry
Source updated
Sep 23, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install flow for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install flow-5@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/yukineko/claude-harnesses

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is crates/flow/.

Plugin files

crates/flow/
├── .claude-plugin/plugin.json
└── skills/flow/SKILL.md

Included Skills1

flowskills/flow/SKILL.md

課題の供給(compass の次の一手 / backlog のキュー)から解決手段の実行(condukt、fugu-router がモデル選択)までを1本のループで貫く統合 driver。source→executor を束ねる「フレームワーク層」。**ユーザーが明示的に起動したときだけ走る**(2026-08-20 に SessionStart の自動提案を廃止したため、こちらから提案することはしない)。判定(どの source を引くか・止め時)は LLM、状態維持・task 単位の claim・モデル選択は既存バイナリ(compass/backlog/condukt/fugu-router)が担う。同じ project を複数セッションが同時に回せる(キュー全体はロックしない)。

Plugin manifests1

crates/flow/.claude-plugin/plugin.json
{
  "name": "flow",
  "version": "0.2.13",
  "description": "v0.2.10: v0.2.8 のバッチ幅ハードルールを revert した (同時実行の強制は parallelguard が PreToolUse で行う)。旧文: claim するバッチ幅 N の既定を 4 から 3 に下げ、3 が上限 (1 セッションあたりの同時実行上限) であることをハードルールに明記。並列 or 直列の実判定は従来どおり condukt の schedule が決定論的に行う。あわせて origin/main を統合し、SKILL.md の「実際に流れを止めるのは deterministic gate の側である」の列挙から taintguard (2026-08-24 にユーザー裁定で repo から撤去) を外した版を取り込む — 今は blastguard / donegate / pre-commit・pre-push hook を名指しする (crates/flow/skills/flow/SKILL.md:140。loop・approval clamp・gate 本体の変更なし)。 Unified source→executor driver for Claude Code: a /flow skill that binds the task SOURCES (compass next-move + backlog queue) to the EXECUTOR (condukt, model-routed by fugu-router) in one HOTL loop — gate on compass freshness, pick the highest-priority task, hand it to condukt, verify, mark done, repeat. v0.2.7 RETIRES the SessionStart proposal on the user's instruction: through 0.2.6 a `flow propose` hook injected an L2 propose-then-confirm directive every session the backlog had pending items (\"before starting other work, ask with a single AskUserQuestion whether to start /flow\"), and autoflow said the same thing twice more — its own SessionStart proposal and a Stop-hook arm that BLOCKED every turn with \"/backlog を実行してください\". Two plugins were making one request, one of them on every turn, and repetition is not detection: the tenth \"there are N items\" carries no information the first did not. Whether to drain the queue is the operator's call and typing /flow IS that call, so the hook, the launcher, the binary and the Cargo package are all gone — `propose` was the binary's only subcommand, so nothing was left for it to do. flow is now a SKILLS-ONLY plugin (the shape scout and daily-report already ship). The /flow skill itself is unchanged except for the lines that claimed it would be proposed automatically; it now says explicitly that the agent must NOT propose /flow on its own, because reconstructing the retired directive by hand would undo the retirement. The one test worth keeping moved rather than being deleted with the package: `skill_queue_contract.rs` reads SKILL.md as text and now lives at crates/integration-tests/tests/flow_skill_queue_contract.rs, still pinning that the loop does not take the exclusive project lock and that the pick reserves a task instead of only reading it. Subscription-native (skill only, no binary, no API key).",
  "author": {
    "name": "yukineko"
  },
  "keywords": [
    "flow",
    "autopilot",
    "orchestration",
    "condukt",
    "compass",
    "backlog",
    "hooks",
    "rust"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[flow on Agent Plugins Marketplace](https://pluginsmp.com/plugins/flow-5)