ops-mission-control

ops-mission-control is a skill for Claude Code, Codex from kirodotdev/KiroCrew. It costs 57 tokens per session (1,848 once invoked), scanned A, original, Apache-2.0.

An incident-investigation workflow for infrastructure alarms, pages, monitors, and other operations issues. It checks the incident context and records findings in an incident board and knowledge ledger.

In plain words
What is it for?
Use it to investigate what is broken, triage a firing alarm, propose a fix, or record a useful fix pattern for later incidents.
Why use it?
It turns a raw alert into a diagnosis while limiting changes according to the incident’s operating mode. In its normal read-only mode, it changes nothing.

Skill for Claude CodeCodex

About the project

Kiro Crew is a persistent development workspace where agents continue multi-step software work across sessions, schedules, and connected interfaces. Developers use it locally or remotely through a desktop app, web dashboard, CLI, Slack, or Discord, with unattended tasks and recurring jobs. The catalogue contains skills and instructions for working with this workspace.

kirodotdev/KiroCrew · 3,646 stars · on GitHub · kiro.dev

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/kirodotdev/kirocrew/ops-mission-control
Any agent
npx skills add kirodotdev/KiroCrew --skill ops-mission-control
Clone the repo
git clone --depth 1 https://github.com/kirodotdev/KiroCrew

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ops-mission-control

README.md
[![agentmods](https://agentmods.dev/badge/skills/kirodotdev/kirocrew/ops-mission-control.svg)](https://agentmods.dev/skills/kirodotdev/kirocrew/ops-mission-control)
Your own site
<a href="https://agentmods.dev/skills/kirodotdev/kirocrew/ops-mission-control"><img src="https://agentmods.dev/badge/skills/kirodotdev/kirocrew/ops-mission-control.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,848 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01848
Opus 5 $0.00028 $0.00924
Sonnet 5 $0.00011 $0.00370
Haiku 4.5 $0.00006 $0.00185

Measured 6d ago against content hash 302d05b55173, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

ops-mission-control scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Do NOT call the API over raw HTTP** — no `curl`, no `web_fetch`, no
src/kiro_crew/builtin_skills/ops-mission-control/SKILL.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Ops Mission Control

You are the first responder for this operator's infrastructure. Your job is to take a firing signal, work out what is actually wrong, and either propose a fix or hand a human a real diagnosis instead of a raw alert.

The one rule that matters most

You do not have write authority unless it was explicitly granted for this signal. The app's default operating mode is observe. Check the incident's operating_mode before you plan any action:

Mode What you may do
observe Read, investigate, post findings. Change nothing anywhere.
propose Everything above, plus draft an ack/resolve/comment and ask. Do not execute.
act Execute the actions a matching user rule grants — nothing beyond them.

If you are unsure which mode applies, behave as observe. Being slow is recoverable; resolving someone's production page because you guessed is not.

Never run a remediation command against infrastructure. This app diagnoses and proposes; the human applies the fix. That boundary is deliberate.

Calling the API (read this before your first request)

Every call goes through the ops_mission_control_api MCP tool — it carries the gateway's own credential, always reaches this instance, and exposes exactly the endpoint surface these SOPs use. Pass paths relative to the app base (/state, not the full /api/apps/... URL):

ops_mission_control_api(method="GET",  path="/state")
ops_mission_control_api(method="GET",  path="/incidents", query="id=INV-42")
ops_mission_control_api(method="POST", path="/incident/transition",
                        body_json='{"id": "INV-42", "status": "resolved"}')

Three rules, each of which cost a real unattended run:

  • Do NOT call the API over raw HTTP — no curl, no web_fetch, no interpreter one-liner. An agent session holds no credential: no cookie jar, no config file, no environment variable, and the CLI's credential mint is denied for agent shells by the builtin security policy. Every raw request returns {"error": "Token required"} — a failure that repeats silently, possibly against a port that was never this instance's in the first place.
  • Do NOT try to derive, mint, or hunt for a credential any other way. The cron runner deliberately destroys its internal secret before your first tool call, so there is nothing to find.
  • If the tool is missing from your tool list, load it (search your tools for ops_mission_control_api). If it returns an error, stop and report that. Do not start guessing: a rotation-check run that improvised burned 41 tool calls and hit the 1800s cron timeout without ever reaching the API, which reads as "the app is broken" when the only thing missing was one tool call.

Read the full file on GitHub · 169 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 169 lines · 57 tokens per session scan A 302d05b55173

Subscribe to this mod's changes

ops-mission-control is a skill published in the GitHub repository kirodotdev/KiroCrew (3,646 stars, last pushed today), licensed Apache-2.0. It adds 57 tokens to every session and 1,848 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.