claude-plugin/plugins/flowai-workflow/skills/init/SKILL.md
Copy a bundled flowai-workflow into the user's project so they can adapt and run it locally. Use when the user wants to start using flowai-workflow in a new repo.
npx skillsauth add korchasa/flowai-workflow initInstall 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.
Copy one of the plugin-bundled workflows into the user's current
project at <project-root>/.flowai-workflow/<name>/. Adaptation
(project-specific commands, paths, prompts) happens after copy via
the scaffold skill — init itself is a verbatim copy.
command -v deno >/dev/null 2>&1 || { echo "Error: Deno 2.x is required — install from https://deno.com/ then retry." >&2; exit 127; }
FLOWAI_SUPPRESS_DEPRECATION=1 \
deno run -A "$CLAUDE_PLUGIN_ROOT/engine/cli.ts" init \
--bundle-dir "$CLAUDE_PLUGIN_ROOT/.flowai-workflow" --list
This enumerates the workflows shipped in the plugin payload. Pick one
by intent (issue-driven SDLC → github-inbox; autonomous local SDLC →
autonomous-sdlc; smoke check → github-inbox-opencode-test).
FLOWAI_SUPPRESS_DEPRECATION=1 \
deno run -A "$CLAUDE_PLUGIN_ROOT/engine/cli.ts" init \
--bundle-dir "$CLAUDE_PLUGIN_ROOT/.flowai-workflow" \
--workflow <name>
Add --dry-run first when the user wants to preview writes.
The scaffold lands under <cwd>/.flowai-workflow/<name>/. After it
completes, hand off to the scaffold skill to adapt placeholders and
project-specific commands.
init is a copy operation, not a completion. Always remind the user:
/flowai-workflow:scaffold <name> next./flowai-workflow:run .flowai-workflow/<name> from the project root.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.