claude-plugin/plugins/flowai-workflow/skills/run/SKILL.md
Execute a bundled or project-local flowai-workflow DAG. Use to launch a workflow run from inside Claude Code without installing the CLI separately.
npx skillsauth add korchasa/flowai-workflow runInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute a flowai-workflow DAG via the plugin-bundled engine. The plugin
ships the engine TypeScript source under $CLAUDE_PLUGIN_ROOT/engine/
and the canonical bundled workflows under
$CLAUDE_PLUGIN_ROOT/.flowai-workflow/<name>/. Runs use the host's
locally-installed Deno 2.x.
Before launching, verify Deno is on PATH:
command -v deno >/dev/null 2>&1 || { echo "Error: Deno 2.x is required — install from https://deno.com/ then retry." >&2; exit 127; }
If Deno is missing, stop and report the install link. Do not silently fall back to a different runtime or skip the run.
The first positional argument names the workflow. Resolve it in this order:
workflow.yaml,
use it as-is.$CLAUDE_PLUGIN_ROOT/.flowai-workflow/, use that bundled folder.<project-root>/.flowai-workflow/, use the project-local copy.FLOWAI_SUPPRESS_DEPRECATION=1 \
deno run -A "$CLAUDE_PLUGIN_ROOT/engine/cli.ts" run "<resolved-workflow-path>" [extra args]
FLOWAI_SUPPRESS_DEPRECATION=1 silences the legacy JSR/binary
deprecation banner — irrelevant inside the plugin install.
Forward any additional CLI flags the user provides (e.g. --prompt,
--dry-run, --cycles). Stream output back to the user in normal
verbosity unless they asked for -v / -q.
--prompt "<text>" — extra context for the PM agent--resume <run-id> — resume a previous run--dry-run — print the execution plan without running-v / -s / -q — verbose / semi-verbose / quiet--cycles <N> — repeat the run N times sequentiallyscaffold to adapt the config.<workflow>/runs/<run-id>/ and the per-run worktree; if the
workflow lives under $CLAUDE_PLUGIN_ROOT/.flowai-workflow/ (which
is read-only by convention), instruct the user to first
flowai-workflow:init into their project so runs can write into
the project-local copy.development
Supervisor for one flowai-workflow run (Codex). Starts or resumes a single workflow, diagnoses failures from run artifacts, patches root causes, resumes the same run. Run inside an isolated Codex worker subagent spawned by the `supervise`/`orchestrate` skill.
development
Long-cycle flowai-workflow orchestrator (Codex). Reads project orchestration policy, selects the next workflow, and returns a structured supervisor delegation request. Run inside an isolated Codex worker subagent spawned by the `orchestrate` skill.
data-ai
Live flowai-workflow run supervisor. Use only for requests to run, monitor, continue, or resume a current workflow now. Exclude last-night, finished, post-mortem, root-cause-report, and conceptual questions.
data-ai
Scaffold or adapt flowai-workflow DAGs in a project. Use for adding flowai-workflow, adapting an existing .flowai-workflow/<name>, validating workflow.yaml, or wiring agent prompts/scripts.