From metaswarm
Checks availability and configuration of external AI tools (Codex CLI, Gemini CLI) and reports a summary table of install status, config, and reachability.
How this command is triggered — by the user, by Claude, or both
Slash command
/metaswarm:external-tools-healthThe summary Claude sees in its command listing — used to decide when to auto-load this command
# External Tools Health Check Check the status of external AI tools (Codex CLI, Gemini CLI) and their configuration. ## Usage ## Steps 1. **Check CLI availability**: 2. **Check configuration**: Read `.metaswarm/external-tools.yaml` if it exists. Report which adapters are enabled/disabled. 3. **Run verification scripts** (if available): 4. **Report status**: Summary table showing each tool's install status, configuration, and reachability. ## Related - `skills/external-tools/SKILL.md` — the external tools delegation skill - `.metaswarm/external-tools.yaml` — configuration ...
Check the status of external AI tools (Codex CLI, Gemini CLI) and their configuration.
/external-tools-health
Check CLI availability:
command -v codex >/dev/null 2>&1 && echo "codex: available" || echo "codex: not found"
command -v gemini >/dev/null 2>&1 && echo "gemini: available" || echo "gemini: not found"
Check configuration: Read .metaswarm/external-tools.yaml if it exists. Report which adapters are enabled/disabled.
Run verification scripts (if available):
bash bin/external-tools-verify.sh
Report status: Summary table showing each tool's install status, configuration, and reachability.
skills/external-tools/SKILL.md — the external tools delegation skill.metaswarm/external-tools.yaml — configuration filebin/external-tools-verify.sh — verification scriptnpx claudepluginhub montoyaedu/metaswarm2plugins reuse this command
First indexed Mar 21, 2026
/external-tools-healthChecks availability and configuration of external AI tools (Codex CLI, Gemini CLI) and reports a summary table of install status, config, and reachability.
/agentsLists available agent backends (Claude, Codex, Gemini) with status table, availability count, and CLI installation suggestions if none available.
/preflightVerifies Codex CLI connectivity, authentication status, and lists available models with their availability.
/diagnoseRuns a self-check on the AI Brain Starter install, verifying CLAUDE.md, Meta folder, skills, hooks, and MCPs are properly configured.
/preflightChecks availability of all configured AI providers (Ollama, Codex, Gemini, Antigravity) before running multi-LLM workflows to avoid mid-workflow failures.
/setupChecks whether the Codex and agy CLIs are installed and authenticated, reporting status per provider with install/auth guidance.