shell
$ npx -y skills add nyldn/claude-octopus --agent claude-codeShips with octo. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/preflight
Context preview
What this command does when you run it.
Check provider health before running multi-LLM workflows
Stats
Stars3,869
Forks362
LanguageShell
LicenseMIT
Ships with octo
Command definition
preflight.md
--- command: preflight description: Check provider health before running multi-LLM workflows allowed-tools: Bash --- # Octopus Provider Health Check Run a quick health check on all configured AI providers before starting a workflow. ```bash OCTO_ROOT="${OCTO_ROOT:-${CLAUDE_PLUGIN_ROOT:-${HOME}/.claude-octopus/plugin}}" bash "${OCTO_ROOT}/scripts/helpers/preflight.sh" ``` Use this before `/octo:embrace`, `/octo:research`, or `/octo:council` to confirm your providers are available and avoid mid-workflow surprises. **Common issues:** - `Ollama` shows unavailable → start it with `ollama serve` - `Codex CLI` unavailable → run `codex login` or `npm install -g @openai/codex` - `Gemini CLI` unavailable → run `gemini auth login` or `npm install -g @google/gemini-cli` - `Antigravity CLI` unavailable → verify `agy` is on PATH, then run `agy login` or reinstall Antigravity CLI Run `/octo:setup` to install or configure any missing provider.
