Claude-ops ops
Business operations command center. Routes to the right ops command based on what you need — briefing, inbox, fires, projects, comms, triage, linear, revenue, deploy, or yolo mode.
install
source · Clone the upstream repo
git clone https://github.com/Lifecycle-Innovations-Limited/claude-ops
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Lifecycle-Innovations-Limited/claude-ops "$T" && mkdir -p ~/.claude/skills && cp -r "$T/claude-ops/skills/ops" ~/.claude/skills/lifecycle-innovations-limited-claude-ops-ops && rm -rf "$T"
manifest:
claude-ops/skills/ops/SKILL.mdsource content
Runtime Context
Before routing, load:
- Preferences:
— read configured channels to determine available commandscat ${CLAUDE_PLUGIN_DATA_DIR:-$HOME/.claude/plugins/data/ops-ops-marketplace}/preferences.json - Daemon health:
— ifcat ${CLAUDE_PLUGIN_DATA_DIR}/daemon-health.json
, surface before routingaction_needed
OPS — Business Command Center
Route
$ARGUMENTS to the correct ops skill:
| Input | Route to |
|---|---|
| (empty), dash, home, hq | |
| go, morning, briefing | |
| setup, configure, init, install | |
| inbox, unread, messages | |
| comms, send, whatsapp, email, slack, telegram | |
| fires, incidents, down, sentry | |
| projects, dashboard | |
| status, health-status | |
| next, priority, what | |
| triage, issues | |
| linear, sprint, board | |
| revenue, money, mrr, costs | |
| deploy, ship | |
| merge, prs, ship-prs | |
| marketing, email, klaviyo, ads, meta, seo, campaigns | |
| ecom, shop, shopify, store, orders, inventory | |
| voice, call, tts, transcribe, phone | |
| yolo | |
| doctor, health, fix, diagnose | |
| monitor, apm, alerts, datadog, newrelic, otel | |
| settings, credentials, creds, config, reconfigure | |
| integrate, connect, add-api, saas, partner | |
| speedup, clean, optimize, cleanup | |
| orchestrate, subagents, agents, dispatch, run | |
If
$ARGUMENTS is empty, launch the interactive dashboard: invoke /ops:ops-dash directly.
Agent Teams support
If
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set, use Agent Teams when building dashboard sections in parallel. This enables:
- Agents share context and can coordinate mid-flight
- You can steer priorities in real-time
- Agents report progress as they complete
Team setup (only when flag is enabled):
TeamCreate("ops-team") Agent(team_name="ops-team", name="daily-ops", prompt="Gather fires, inbox, and unread comms status") Agent(team_name="ops-team", name="engineering", prompt="Gather PRs, CI status, and deploy state") Agent(team_name="ops-team", name="business", prompt="Gather revenue, Linear sprint, and project progress") Agent(team_name="ops-team", name="automation", prompt="Check cron jobs, daemon health, and scheduled tasks")
If the flag is NOT set, use standard fire-and-forget subagents.
CLI/API Reference
This skill is a router only — it does not call CLI tools directly. All tool usage is delegated to the target skill after routing. See the referenced skill's
## CLI/API Reference section for details.