From Claude Channel
Communicates with a user's live Claude Code session via the local Claude Channel CLI, using MCP tools to check channel status and send requests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-channel-cli:claude-channel-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the bundled Claude Channel CLI MCP tools to communicate with the user's live Claude Code session. This preserves Claude Code's native harness and lets the user monitor the same session in their Claude Code window.
Use the bundled Claude Channel CLI MCP tools to communicate with the user's live Claude Code session. This preserves Claude Code's native harness and lets the user monitor the same session in their Claude Code window.
list_claude_targets. If there is one target, use it. If there are several, show the numbered candidates and ask which visible Claude Code window to use.status_claude_channel, passing target when one was selected.ask_claude, passing target when needed.multiple_claude_targets, ask the user to choose from candidates, then retry with that candidate's endpoint_id.claude-channel CLI.ask_claude for every Claude Code request. The channel sender receives a response only through the reply-required completion path.message. Preserve wording, ordering, and whitespace.message. In CLI fallback, stream only that block to ask-file -; never include Codex-only handling instructions in file/stdin payloads.From Codex:.ask_claude returns, use the structured answer field. Do not dump raw JSON unless debugging.ask and ask-file print Claude's answer text by default. Use --output json only when the full response envelope is needed.candidates; never guess from branch names, task names, terminal titles, or transcript names.status_claude_channel reports the channel is not reachable, tell the user the channel is not running and ask them to start Claude Code with the claude-channel-cli channel enabled.Use this only when the Codex MCP tools are not installed or not available in the current thread:
claude-channel list
claude-channel status
claude-channel ask --to ep_ABC234 "From Codex: review this plan and return your answer with complete_channel_request."
printf '%s\n' "$prompt" | claude-channel ask-file --to ep_ABC234 -
printf '%s\n' "$prompt" | claude-channel ask-file --output json --to ep_ABC234 - > claude-review.json
npx claudepluginhub aaronn/claude-channel-cliBuilds MCP channel servers with Bun/Node/Deno to forward webhooks, alerts, and chat messages from external systems like CI or Discord into Claude Code sessions for event-driven coding.
Manages Claude Code sessions mirrored to Slack via slaude CLI: start/stop/join in channels/users, list running sessions, configure access modes/flags.
Sends and receives direct messages between active Claude Code sessions on the same machine. Use for coordinating parallel sessions via dm, broadcast, active checks, and project-scoped messaging.