From flow
Displays current FLOW configuration from .flow.json including version and per-skill autonomy settings (commit/continue) in a table. Useful for verifying project FLOW setup via /flow:flow-config.
npx claudepluginhub benkruger/flowThis skill uses the workspace's default tool permissions.
```text
Initializes FLOW projects by configuring workspace permissions, git excludes, installing bin stubs, setting skill autonomy levels, and committing changes. Run once after install or upgrade.
Provides context and instructions for config.md files in Claude Code, useful when configuring skills, settings, or project options.
Generates .dh/skill_discovery.yaml by scanning repo for tech stack signals like pyproject.toml and package.json, inventorying skills via npx skills list, suggesting candidates, and writing config for skill injection.
Share bugs, ideas, or general feedback.
/flow:flow-config
Display-only skill. Reads .flow.json from the project root and shows the current configuration.
Use the Glob tool to check for .flow.json at the project root.
If .flow.json does not exist, tell the user:
"No
.flow.jsonfound. Run/flow:flow-primeto configure this project."
Stop here.
If .flow.json exists, read it with the Read tool.
Output the following banner in your response (not via Bash) inside a fenced code block:
```text
──────────────────────────────────────────────────
FLOW v<version> — Config
──────────────────────────────────────────────────
```
Then display the skills configuration as a markdown table:
| Skill | Commit | Continue |
|-----------|--------|----------|
| start | — | manual |
| plan | — | auto |
| code | manual | manual |
| code-review | auto | auto |
| learn | auto | auto |
| complete | auto | — |
| abort | auto | — |
Use the actual values from .flow.json. The table above is just an example.
Column rules:
commit and continue values from the nested object— for Commit, show the continue value— for ContinueLegacy format handling: If .flow.json has the old single-value format (e.g., "code": "manual" instead of {"commit": "manual", "continue": "manual"}), display the single value in both columns for phase skills that should have two axes.
If .flow.json has no skills key, show "No skills configured — using built-in defaults" instead of the table.
Tell the user that phase skills can be overridden at invocation time with flags controlling autonomy.
.flow.jsoncd <path> && git — use git -C <path> for git commands in other directoriesbin/flow — it detects the project root internally