From claude-speaks
Show whether claude-speaks is currently muted, which backend is selected, and the live config.
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-speaks:statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
Report the current state of claude-speaks. Run with the Bash tool: Then summarize for the user in one sentence: whether anything will be spoken on the next Stop hook, and the most likely reason it won't (claude CLI missing / muted / backend not set up). If MUTED, remind them they can run `/claude-speaks:enable` to turn it back on.
Report the current state of claude-speaks.
Run with the Bash tool:
marker="${CLAUDE_PLUGIN_DATA}/disabled"
if [ -f "$marker" ]; then
state="MUTED (machine-wide)"
elif [ "${CLAUDE_SPEAKS_DISABLED:-0}" = "1" ]; then
state="MUTED (this session only via CLAUDE_SPEAKS_DISABLED=1)"
else
state="ENABLED"
fi
if command -v claude >/dev/null 2>&1; then
claude_status="$(command -v claude) ($(claude --version 2>/dev/null | head -1))"
else
claude_status="NOT FOUND on PATH -- summaries will be skipped"
fi
cat <<INFO
claude-speaks status
state: $state
backend: ${CLAUDE_SPEAKS_BACKEND:-local}
relay url: ${CLAUDE_SPEAKS_RELAY_URL:-http://localhost:8765/speak}
ntfy topic: ${CLAUDE_SPEAKS_NTFY_TOPIC:-(unset)}
ntfy server: ${CLAUDE_SPEAKS_NTFY_SERVER:-https://ntfy.sh}
claude cli: $claude_status
data dir: ${CLAUDE_PLUGIN_DATA}
mute marker: $marker ($([ -f "$marker" ] && echo present || echo absent))
INFO
Then summarize for the user in one sentence: whether anything will be spoken on the next Stop hook, and the most likely reason it won't (claude CLI missing / muted / backend not set up). If MUTED, remind them they can run /claude-speaks:enable to turn it back on.
npx claudepluginhub coflounder/claude-speaks/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusChecks current session status and measures goal drift to assess alignment and progress in the conversation.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.