Toggle notifications on/off or check status
Manages notification settings for current session or all sessions.
/plugin marketplace add blueraai/claude-code-anywhere/plugin install claude-code-anywhere@bluera[on|off] [--all]Toggle notifications on/off or check status.
See @skills/cca-server/skill.md for implementation details.
Action requested: $1
!${CLAUDE_PLUGIN_ROOT}/scripts/cpr.sh 2>/dev/null || echo "NOT_CONFIGURED"
!${CLAUDE_PLUGIN_ROOT}/scripts/server-status.sh 2>/dev/null || echo '{"running": false, "error": "server not started"}'
Check via: test -x ~/.claude-code-anywhere/bin/claude && echo "GLOBAL" || echo "SESSION_ONLY"
Read via: cat ~/.config/claude-code-anywhere/current-session-id
/cca - Show current status/cca on - Enable notifications for this session/cca off - Disable notifications for this session/cca on --all - Enable notifications for all sessions/cca off --all - Disable notifications for all sessionsRelated commands:
/cca-install - Install global mode (daemon + auto-start)/cca-uninstall - Remove global installation/cca-statusline - Add/remove terminal status indicator/cca-test - Send a test notification/cca-doctor - Diagnose configuration issuesReport from context above:
channels array:
config object:
from and to addresseschatIdIf Installation Status is "SESSION_ONLY", include:
"ℹ️ Running in session-only mode. Run
/cca-installfor global notifications."
on (this session)@skills/bootstrap/skill.md first, then retrycd "<plugin-root>" && nohup bun run server > /tmp/claude-code-anywhere-server.log 2>&1 &/api/status until it responds)curl -X POST http://localhost:$PORT/api/session/<session-id>/enableon --all (all sessions)on steps 1-2)on steps 5-7)curl -X POST http://localhost:$PORT/api/enableoff (this session)curl -X POST http://localhost:$PORT/api/session/<session-id>/disableoff --all (all sessions)curl -X POST http://localhost:$PORT/api/disablepkill -f "bun run server"