plugin-src/shared/skills/run/SKILL.md
Execute a bundled or project-local flowai-workflow DAG. Use to launch a workflow run from inside the host IDE.
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 flowai-workflow engine binary
(plugin precondition — FR-E78). The binary itself bundles the canonical
workflows; the operator may also adapt a project-local copy under
<project-root>/.flowai-workflow/<name>/.
Before launching, verify the engine is on PATH:
command -v flowai-workflow >/dev/null 2>&1 || { echo "Error: flowai-workflow is required — see https://github.com/korchasa/flowai-workflow#install" >&2; exit 127; }
If the binary is missing, stop and surface the install link. Do not silently fall back to a different runtime.
The first positional argument names the workflow. Resolve it in this order:
workflow.yaml,
use it as-is.<project-root>/.flowai-workflow/, use the project-local copy.flowai-workflow init --list).flowai-workflow run "<resolved-workflow-path>" [extra args]
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 in a read-only location, 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.