Agent Plugins Marketplace
← All plugins

flow

v0.20.0

The /flow workflow engine: PM-agnostic, dual-mode product workflow from capture to done. Stage commands, stage skills, a runnable-TypeScript engine, the tracker adapter contract, and a schedulable autonomy tick.

Claude Code16 Skills

0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code
Parsed components
16 skill or MCP entries
Source updated
Sep 26, 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-6@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/dork-labs/marketplace

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

Plugin files

plugins/flow/
├── .claude-plugin/plugin.json
├── skills/building-adapters/SKILL.md
├── skills/capturing-work/SKILL.md
├── skills/closing-work/SKILL.md
├── skills/decomposing-work/SKILL.md
├── skills/executing-specs/SKILL.md
├── skills/flow-drain/SKILL.md
├── skills/flow-groom/SKILL.md
├── skills/flow-triage/SKILL.md
├── skills/grooming-backlog/SKILL.md
├── skills/ideating-features/SKILL.md
├── skills/initializing-flow/SKILL.md
├── skills/linear-adapter/SKILL.md
├── skills/specifying-work/SKILL.md
├── skills/tending-tracker/SKILL.md
├── skills/triaging-work/SKILL.md
└── skills/verifying-work/SKILL.md

Included Skills16

building-adaptersskills/building-adapters/SKILL.md

Guided procedure for generating and verifying a concrete /flow tracker adapter that conforms to the adapter contract. Use when building, porting, or scaffolding a tracker adapter for a new tracker (Jira, GitHub Issues, or another), or when /flow:init must produce one for an adopter. Teaches the generate-and-verify loop, maps the tracker onto the WorkItem model and the 16 required capability verbs (plus any optional ones), then loops on validate-adapter.ts until the conformance invariants pass.

capturing-workskills/capturing-work/SKILL.md

The /flow engine's CAPTURE stage — quick, low-commitment intake of a new piece of work into the tracker as an idea, without doing full triage or evaluation. Use when the goal is to get a thought captured cleanly so it survives, not to assess, classify deeply, or plan it. Generalizes the legacy /linear:idea capture flow (retired in spec

closing-workskills/closing-work/SKILL.md

The /flow engine's DONE stage — report completion on a work item, move it to Done with the agent/completed label, create any follow-up work, run a project pulse check for the next loop action, and clean up the worktree. Use when running /flow:done or advancing an approved work item into the DONE stage.

decomposing-workskills/decomposing-work/SKILL.md

The /flow engine's DECOMPOSE stage — break a validated specification into actionable tasks in 03-tasks.json, mirror the active phase into the tracker as a plan checklist, and project the stage/decompose label. Use when running /flow:decompose or advancing a work item into the DECOMPOSE stage.

executing-specsskills/executing-specs/SKILL.md

Orchestrates parallel implementation of decomposed specifications with incremental progress tracking. Use when running the /flow:execute stage (the EXECUTE stage of the /flow engine).

flow-drainskills/flow-drain/SKILL.md

Claim the top-ranked eligible issue and carry it to its review gate.

flow-groomskills/flow-groom/SKILL.md

Scheduled read-only backlog health check — run the groom oracles and report, never write.

flow-triageskills/flow-triage/SKILL.md

Scheduled daily triage — ready or park every untriaged item, and release claims nobody has touched for a week.

grooming-backlogskills/grooming-backlog/SKILL.md

The /flow engine's backlog GROOM — a whole-backlog corrective sweep that makes the configured team's backlog honestly dispatchable. Audits every open item against the fifteen groom invariants, closes shipped/duplicate/junk work with cited evidence, reconciles projects with the repo's real programme structure, classifies and gates every survivor, then verifies the result with the audit-backlog and dispatch oracles. Use when the dispatch queue starves, after a large programme lands, before enabling autonomous mode, or whenever the tracker has drifted from reality. `check` mode is the read-only audit half. PM-agnostic; all tracker I/O routes through the adapter skill.

ideating-featuresskills/ideating-features/SKILL.md

Turns a feature brief, rough notes, or an existing partial design into a structured ideation artifact and next-step plan. Use when the user wants to explore a feature or shape rough requirements into a structured ideation artifact.

initializing-flowskills/initializing-flow/SKILL.md

First-run setup for the /flow engine in a new repo - detect or reconfigure an existing install, gather setup choices (tracker + connection, identity mode, project routing, adversarial review, model tiers) via the calibration ladder, generate and verify the concrete tracker adapter, scaffold the committed config.json plus the gitignored config.local.json and a review rubric, and confirm the install with a real adapter read plus a policy self-check. Use when running /flow:init, configuring flow for the first time, adopting a new tracker, or reconfiguring an existing flow install.

linear-adapterskills/linear-adapter/SKILL.md

The /flow engine's tracker adapter — the single skill that owns EVERY Linear MCP / Composio call and normalizes Linear into the generic WorkItem shape. Use whenever a /flow stage skill or the loop engine needs to read or write the tracker (claim, transition, comment, inbox, relations, evidence, sub-issues). All flow tracker I/O routes through here; no other flow skill or command may touch a tracker string.

specifying-workskills/specifying-work/SKILL.md

The /flow engine's SPECIFY stage — turns a validated ideation artifact into an implementation-ready specification, resolves its open decisions, and seeds draft ADRs. Use when work is ready to move from IDEATE to a frozen spec. PM-agnostic; all tracker I/O routes through the adapter skill.

tending-trackerskills/tending-tracker/SKILL.md

The /flow engine's agent-as-team-member loop — the agent participates in a shared tracker like a teammate. Each tick it polls its inbox (assigned-to-me + @mentions + new comments), decides respond/act/ignore per the five comment-response rules, claims work with durable agent/* labels, asks the human via comment+assign when genuinely stuck (soft-escalation), and writes answers back as durable memory so the same question is never asked twice. Use when the agent is operating continuously inside a shared tracker. PM-agnostic; all tracker I/O routes through the adapter skill.

triaging-workskills/triaging-work/SKILL.md

The /flow engine's TRIAGE stage — classify and route incoming work. Classifies a freeform brief/idea/bug/question into the right work-item type, or evaluates an already-captured item (accept/reject/needs-research/needs-refinement) and routes it simple-vs-complex (stay-in-tracker task vs escalate to the spec workflow). Use when the goal is to evaluate and route work, not just capture it. Generalizes the legacy /pm triage/intake path; PM-agnostic.

verifying-workskills/verifying-work/SKILL.md

The /flow engine's VERIFY stage — trace recent work for correctness, run the verification gate, put the branch through an independent adversarial review before any PR opens, gather proof-of-completion scaled to the change, attach it to the work item under a deliberately chosen closing or non-closing reference, and hand off to the human-review gate. Use when running /flow:verify or advancing a work item into the VERIFY stage.

Plugin manifests1

plugins/flow/.claude-plugin/plugin.json
{
  "name": "flow",
  "version": "0.20.0",
  "description": "The /flow workflow engine: PM-agnostic, dual-mode product workflow from capture to done. Stage commands, stage skills, a runnable-TypeScript engine, the tracker adapter contract, and a schedulable autonomy tick."
}

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-6)