| name | flow-browser |
| description | Use when the user wants to list, search, or inspect available SDG flows and data generation pipelines. Applies to browsing flow catalogs, finding flows by use case, or understanding what a specific flow does. |
| allowed-tools | ["Bash(${CLAUDE_PLUGIN_ROOT}/scripts/sdg_flows.sh:*)","Bash(${CLAUDE_PLUGIN_ROOT}/scripts/sdg_detect.sh:*)"] |
Flow Browser
Browse and inspect available synthetic data generation flows.
Step 1: Check Environment
"${CLAUDE_PLUGIN_ROOT}/scripts/sdg_detect.sh"
If library=missing, tell the user to install sdg_hub first via the setup-guide skill.
Step 2: Route by Action
List all flows (default)
"${CLAUDE_PLUGIN_ROOT}/scripts/sdg_flows.sh" list
Present flows in a formatted table with name, description, and tags.
Search flows
"${CLAUDE_PLUGIN_ROOT}/scripts/sdg_flows.sh" search "<query>"
Show matching flows. If no results, suggest broader search terms.
Inspect a flow
"${CLAUDE_PLUGIN_ROOT}/scripts/sdg_flows.sh" inspect "<flow>"
Show detailed information:
- Flow name and description
- Block pipeline — ordered list of blocks in the flow
- Required columns — input dataset columns needed
- Usage example — suggest using the
data-generation skill with this flow
If no action is specified, default to list.