plugin-src/shared/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 engine-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.
The flowai-workflow binary is a plugin precondition (FR-E78) and
embeds the canonical workflow catalogue at compile time.
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; }
flowai-workflow init --list
This enumerates the workflows shipped in the binary. Pick one by
intent (issue-driven SDLC → github-inbox; autonomous local SDLC →
autonomous-sdlc; smoke check → github-inbox-opencode-test).
flowai-workflow init --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.