Tool Health Smoke
SkillCommunicationRun a focused Centaur tool health smoke test across every live tool CLI. Use when asked to smoke test tools, check all tool auth/connectivity, validate brokered credential injection, or produce a Slack-ready health report for the current deployment.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Tool Health Smoke skill
What this skill tells your AI
The instructions your AI receives, as published by paradigmxyz/centaur in .agents/skills/tool-health-smoke/SKILL.md and read by ahel’s review.
Overview
Use this skill for broad tool-by-tool smoke checks. It is narrower than the full qa skill: it only verifies that each live tool CLI is installed and that its health command succeeds through the normal sandbox credential path.
Do not invent one-off probes for each tool. The canonical smoke surface is:
<tool> health
Workflow
-
Run the bundled runner from a sandbox or environment where
centaur-toolsand tool shims are installed:uv run .agents/skills/tool-health-smoke/scripts/run_tool_health_smoke.py -
The runner discovers tools with
centaur-tools json, then executes each<tool> healthcommand with a bounded timeout. -
Review the generated Slack-friendly report. The first line is the overall result:
Overall: PASS|FAIL|PARTIAL - <reason> -
Return the report in the Slack thread as the assistant response. Do not call the Slack posting API unless the user explicitly asks you to post through the Slack tool.
Report Rules
- Treat
returncode != 0, invalid JSON, missingok, orok: falseas a failed tool health check. - Treat a missing
healthcommand as a failure. Tools are expected to exposehealth. - Report the runner output directly. Health commands are responsible for returning compact, safe JSON.
- Keep evidence compact: include the tool name, status, and one short detail or error.
- Use Slack mrkdwn bullets, not Markdown tables.
- Include all failed rows. If all tools pass, include a compact pass list or pass count.
Useful Options
uv run .agents/skills/tool-health-smoke/scripts/run_tool_health_smoke.py --timeout 45
uv run .agents/skills/tool-health-smoke/scripts/run_tool_health_smoke.py --concurrency 4
uv run .agents/skills/tool-health-smoke/scripts/run_tool_health_smoke.py --only slack,websearch,vlogs
uv run .agents/skills/tool-health-smoke/scripts/run_tool_health_smoke.py --json
Use --json only when you need machine-readable results for follow-up analysis. Use the default text output for Slack.
Interpreting Results
PASS: every discovered tool health command returned valid JSON withok: true.FAIL: one or more tools failed, timed out, returned malformed output, or omitted the required health result.PARTIAL: discovery succeeded but no tools were found, or the run was intentionally filtered.
When a tool fails because a credential is missing, check whether the client incorrectly requires an environment variable instead of using secret() or proxy-injected auth.
Signals
- GitHub stars
- 1k
- Forks
- 239
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
tool-health-smoke- Source
- github.com/paradigmxyz/centaur