radar

radar is a skill for Claude Code from mishahanin/heading-os. It costs 191 tokens per session (1,466 once invoked), scanned A, original, Apache-2.0.

An operations checker that shows overdue manual tasks and detects degraded machine states, such as a stopped service or an outdated memory index. It reports problems but does not carry out the manual actions.

In plain words
What is it for?
Use it to check what needs attention, review overdue backups or publishing tasks, and spot services or indexes that need repair.
Why use it?
It helps prevent important maintenance and review work from being forgotten, while making quiet system failures visible.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/ops-radar.py.

Good fit Use it to check what needs attention, review overdue backups or publishing tasks, and spot services or indexes that need repair.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/mishahanin/heading-os
agentmods
npx agentmods add skills/mishahanin/heading-os/radar

Made for: Claude Code.

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 radar

README.md
[![agentmods](https://agentmods.dev/badge/skills/mishahanin/heading-os/radar/github.svg)](https://agentmods.dev/skills/mishahanin/heading-os/radar)
Your own site
<a href="https://agentmods.dev/skills/mishahanin/heading-os/radar"><img src="https://agentmods.dev/badge/skills/mishahanin/heading-os/radar/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for radar

Your own site · 80×15
<a href="https://agentmods.dev/skills/mishahanin/heading-os/radar"><img src="https://agentmods.dev/badge/skills/mishahanin/heading-os/radar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 191 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,466 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 6
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Excessive Agency · line 27
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00191 $0.01466
Opus 5 $0.00096 $0.00733
Sonnet 5 $0.00038 $0.00293
Haiku 4.5 $0.00019 $0.00147

Measured 5d ago against content hash 2607331dc6ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

radar scanned grade A with 0 findings 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 5d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/radar/SKILL.md · 111 lines

How it starts

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

Ops-Radar

Surface what is objectively overdue and what silently degraded. This skill is the chat surface over scripts/ops-radar.py. It is a DETECTOR, not an executor: it never sends, commits, publishes, or runs a manual action for you. Outbound sends stay human-gated.

Phase 0 - Route the request

  • Bare "radar" / "what's overdue" / "what am I forgetting" -> run the detector (Phase 1).
  • "ack " / "silence backup" -> ack (Phase 2).
  • "crunch on" / "crunch off" -> crunch (Phase 3).

Phase 1 - Run the detector

python scripts/ops-radar.py

Read-only. It computes every signal, applies ack + crunch suppression, and prints the detailed due-items view (or "all clear"). It does NOT auto-heal in this mode (heal runs on the timer). Present the result plainly, grouped by severity, and for each due Tier-B item name the one command that clears it:

  • backup -> /backup
  • publish -> /push-updates
  • weekly_review -> /weekly-review
  • cold_sweep -> /cold-sweep
  • odin_cadence -> /odin collect or /odin reflect
  • ollama_accel -> the accelerated ollama host does not answer. This machine cannot restart it, because it runs outside this OS. Work continues on the local daemon, more slowly. Tell the operator to restart it on its own host.
  • a critical *_autoheal line -> machine auto-heal has FAILED repeatedly; surface it, do not try to fix it inline.

State the posture: "N item(s) due" or "all clear". Never invent an item the script did not report.

Phase 2 - Ack (silence a known item)

python scripts/ops-radar.py ack <key> [--ttl 24h|7d]

Silences that one signal until the TTL expires OR its severity band worsens (worsening always re-surfaces it). Confirm what was acked and for how long. Valid keys: backup, publish, weekly_review, cold_sweep, odin_cadence, ollama, ollama_accel, memory_index, router_accuracy, queue.

Phase 3 - Crunch-mode

python scripts/ops-radar.py crunch on    # suppress all Tier-B except the critical floor
python scripts/ops-radar.py crunch off   # normal posture

Read the full file on GitHub · 111 lines

Files

What ships with it

5 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. 5d ago First seen · 111 lines · 191 tokens per session scan A 2607331dc6ab

Subscribe to this mod's changes

radar is a skill published in the GitHub repository mishahanin/heading-os (11 stars, last pushed today), licensed Apache-2.0. It adds 191 tokens to every session and 1,466 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.