flow-composer

flow-composer is a skill for Claude Code from solofounder-ai/solofounder. It costs 37 tokens per session (5,760 once invoked), scanned A, original, MIT.

A workflow coordinator that analyzes a request and creates a sequence of stages, specialist roles, capabilities, and deliverables. It is the central part of SoloFounder, an AI team for varied kinds of work.

In plain words
What is it for?
Use it at the start of any request to design and run a suitable workflow. It can continue an existing project from its next unfinished stage or create a new flow and save it in `.solofounder/flow.md`.
Why use it?
It removes the need to use one fixed process for every task. It also keeps work moving through clarification, execution, review, and verification stages.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the solofounder plugin — 10 skills, 1 hook shipped together

Good fit Use it at the start of any request to design and run a suitable workflow. It can continue an existing project from its next unfinished stage or create a new flow and save it in .solofounder/flow.md.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/solofounder-ai/solofounder/flow-composer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add solofounder-ai/solofounder --skill flow-composer
Clone the repo
git clone --depth 1 https://github.com/solofounder-ai/solofounder

Made for: Claude Code.

Or install solofounder, the plugin that ships this one along with the rest of its 10 skills, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flow-composer

README.md
[![agentmods](https://agentmods.dev/badge/skills/solofounder-ai/solofounder/flow-composer/github.svg)](https://agentmods.dev/skills/solofounder-ai/solofounder/flow-composer)
Your own site
<a href="https://agentmods.dev/skills/solofounder-ai/solofounder/flow-composer"><img src="https://agentmods.dev/badge/skills/solofounder-ai/solofounder/flow-composer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flow-composer

Your own site · 80×15
<a href="https://agentmods.dev/skills/solofounder-ai/solofounder/flow-composer"><img src="https://agentmods.dev/badge/skills/solofounder-ai/solofounder/flow-composer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,760 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.05760
Opus 5 $0.00018 $0.02880
Sonnet 5 $0.00007 $0.01152
Haiku 4.5 $0.00004 $0.00576

Measured 10d ago against content hash 210f887347e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

flow-composer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/flow-composer/SKILL.md · 556 lines

How it starts

The opening of the file, as written. The whole thing — 556 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flow Composer

Overview

The Flow Composer is the brain of SoloFounder. It takes any request — building software, planning marketing, reviewing contracts, designing operations — and produces a flow definition: the sequence of stages, what each stage does, which capabilities it uses, and what deliverable it produces.

Core principle: Nothing is hardcoded. The flow is designed fresh for each request based on what the request actually needs.

When to Use

Always. Every user request goes through the Flow Composer. Do not skip directly to implementation, design, or any other activity.

digraph flow_composer {
    "User request arrives" [shape=doublecircle];
    "Returning project?" [shape=diamond];
    "Read existing flow.md" [shape=box];
    "Resume or new request?" [shape=diamond];
    "Resume from next incomplete stage" [shape=box];
    "Analyze request" [shape=box];
    "Read project context" [shape=box];
    "Read domain learning" [shape=box];
    "Ask clarifying questions" [shape=box, style=bold];
    "User answers" [shape=box];
    "Enough context?" [shape=diamond];
    "Generate flow definition" [shape=box];
    "Save to .solofounder/flow.md" [shape=box];
    "Present flow to user" [shape=box];
    "User approves?" [shape=diamond];
    "Adjust flow" [shape=box];
    "Invoke solofounder:role-generator" [shape=doublecircle];

    "User request arrives" -> "Returning project?";
    "Returning project?" -> "Read existing flow.md" [label="yes"];
    "Returning project?" -> "Analyze request" [label="no"];
    "Read existing flow.md" -> "Resume or new request?";
    "Resume or new request?" -> "Resume from next incomplete stage" [label="resume"];
    "Resume or new request?" -> "Analyze request" [label="new request"];
    "Analyze request" -> "Read project context";
    "Read project context" -> "Read domain learning";
    "Read domain learning" -> "Ask clarifying questions";
    "Ask clarifying questions" -> "User answers";
    "User answers" -> "Enough context?";
    "Enough context?" -> "Ask clarifying questions" [label="no, ask more"];
    "Enough context?" -> "Generate flow definition" [label="yes"];
    "Generate flow definition" -> "Save to .solofounder/flow.md";
    "Save to .solofounder/flow.md" -> "Present flow to user";
    "Present flow to user" -> "User approves?";
    "User approves?" -> "Adjust flow" [label="no"];
    "Adjust flow" -> "Present flow to user";
    "User approves?" -> "Invoke solofounder:role-generator" [label="yes"];
}

Read the full file on GitHub · 556 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 556 lines · 37 tokens per session scan A 210f887347e5

Subscribe to this mod's changes

flow-composer is a skill published in the GitHub repository solofounder-ai/solofounder (3 stars, last pushed 5mo ago), licensed MIT. It adds 37 tokens to every session and 5,760 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

codex

Run the Codex CLI directly in the user's checkout for code analysis, refactoring, or automated editing without Claude Architect's verified delegation lifecycle.

PyModel/claude-architect · 31 tokens

commit

A guided process for committing code changes to Git. It checks the working tree, follows a conventional commit format, links a task when available, reviews the changes, and asks for approval.

restarter/lets-workflow · 90 tokens

x-multi-llm-align

A review process in which two sub-agents examine an API, data format, event schema, or workflow from their separate implementation perspectives. The user passes documents and feedback between them over multiple rounds.

KtKID/x-dev-pipeline · 293 tokens

x-cr

A software-correctness investigation skill for finding why code behaves differently from what was expected. It uses evidence from code paths, specifications, tests, logs, and changes to assess possible causes.

KtKID/x-dev-pipeline · 183 tokens

design

Create a doc-as-code design package from a PRD or SPEC. Conditionally generates C4 diagrams (Context/Container/Component), sequence diagrams, ER diagram + Data Dictionary, OpenAPI 3.0, AsyncAPI 3.0, ADRs, domain glossary, state diagrams, and deployment view as Mermaid-rendered Markdown files. Use when PM mentions…

cryndoc/polisade-orchestrator · 162 tokens

explain

Use when user invokes /explain with a file path, directory path, function/class name, or natural language concept. Also triggers on "explain this", "how does X work", "walk me through". Produces a structured, layered explanation of what the code does, how it connects, and where to start if you need to change it. Do…

harnessprotocol/harness-kit · 95 tokens