radar-render-dashboard

radar-render-dashboard is a skill for Claude Code from sabahudin-web/competitive-intelligence-radar. It costs 72 tokens per session (473 once invoked), scanned A, original, MIT.

A skill that turns a run’s data into one self-contained HTML dashboard file. The file includes its own layout and code, so it works offline in a web browser.

In plain words
What is it for?
Use it after combining a radar run’s briefing data to create a double-clickable dashboard for a specific date.
Why use it?
It removes the need for a build step, installed dependencies, or internet access to view the results. It also provides a stable latest-run file to open.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the competitive-intelligence-radar plugin — 8 skills, 3 commands, 5 agents, 2 MCP servers shipped together

Good fit Use it after combining a radar run’s briefing data to create a double-clickable dashboard for a specific date.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add sabahudin-web/competitive-intelligence-radar
Claude Code
/plugin install competitive-intelligence-radar

Made for: Claude Code.

Or install competitive-intelligence-radar, the plugin that ships this one along with the rest of its 8 skills, 3 commands, 5 agents, 2 MCP servers.

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-render-dashboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard/github.svg)](https://agentmods.dev/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard)
Your own site
<a href="https://agentmods.dev/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard"><img src="https://agentmods.dev/badge/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard/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-render-dashboard

Your own site · 80×15
<a href="https://agentmods.dev/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard"><img src="https://agentmods.dev/badge/skills/sabahudin-web/competitive-intelligence-radar/radar-render-dashboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 473 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.
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.00072 $0.00473
Opus 5 $0.00036 $0.00236
Sonnet 5 $0.00014 $0.00095
Haiku 4.5 $0.00007 $0.00047

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

Security

Grade A, and why

radar-render-dashboard 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 10d 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.

skills/radar-render-dashboard/SKILL.md · 40 lines

What it actually says

radar-render-dashboard

Automation level: AUTONOMOUS.

Goal: produce one double-clickable HTML file that shows the run, works offline, and needs no build step or dependencies.

Steps

  1. Inputs: the run date and the dashboard data JSON path from radar-merge-briefing (outputs/dashboard/<YYYY-MM-DD>-data.json). Read it.

  2. Read the template at ${CLAUDE_PLUGIN_ROOT}/assets/dashboard-template.html.

  3. Inject the data: replace the single placeholder {{RADAR_DATA_JSON}} (inside the <script id="radar-data" type="application/json"> block) with the exact JSON contents. Do not add script tags, CDN links, or external fonts. The data must be inline JSON so the file is fully self-contained.

  4. Write the result to outputs/dashboard/<YYYY-MM-DD>-dashboard.html. Also write or overwrite outputs/dashboard/index.html as a copy of the latest run for a stable "open this" path.

  5. Confirm the absolute path and tell the user they can open it in any browser. Offer to open it (on macOS, open <path>), but do not require it.

Edge cases

  • The data JSON contains characters that could break the inline script: the template reads the JSON with JSON.parse from a typed script block, so standard JSON is safe. Ensure the JSON does not contain the literal sequence that closes a script tag; if a value does, escape the slash.
  • War room not yet present: leave war_room null; the dashboard shows a prompt to run /radar-council. radar-publish-council re-renders later with the addendum filled in.
  • No write permission to outputs: report the error and the intended path rather than failing silently.
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. 10d ago First seen · 40 lines · 72 tokens per session scan A 0c9c0586a9c9

Subscribe to this mod's changes

radar-render-dashboard is a skill published in the GitHub repository sabahudin-web/competitive-intelligence-radar (3 stars, last pushed 2mo ago), licensed MIT. It adds 72 tokens to every session and 473 once invoked, about $0.0004 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-08-31.

Related

Other skills, from other repositories

falsify

Adversarial falsification of sigint research findings. Generates disconfirming queries, executes web-only adversarial search, assigns ordinal verdicts (falsified | weakened | survived | inconclusive), and applies remediation (quarantine, confidence downgrade, follow-up queue). Invocable standalone via /sigint:falsify…

zircote-plugins/sigint · 100 tokens

regulatory-review

This skill should be used when the user asks to "analyze regulations", "regulatory landscape", "compliance requirements", "legal considerations", "regulatory risk", "industry regulations", "compliance analysis", "regulatory trends", or needs guidance on understanding regulatory environments, compliance requirements…

zircote-plugins/sigint · 68 tokens

augment

Deep-dive into a specific area of current research. Orchestrates a single dimension-analyst using full swarm pattern (TeamCreate, TaskCreate, SendMessage). Use when the user wants to augment current research with deeper analysis of a specific area.

zircote-plugins/sigint · 53 tokens

market-sizing

This skill should be used when the user asks to "calculate market size", "TAM SAM SOM analysis", "estimate market opportunity", "market sizing", "total addressable market", "serviceable market", "market potential", or needs guidance on market size estimation methodologies, market opportunity calculations, or growth…

zircote-plugins/sigint · 66 tokens

report-writing

This skill should be used when the user asks to "write a report", "executive summary", "research report format", "report structure", "present findings", "business writing", "analysis documentation", or needs guidance on structuring research outputs, executive communication, or professional report formatting.

zircote-plugins/sigint · 61 tokens

tech-assessment

This skill should be used when the user asks to "assess technology", "technology evaluation", "tech stack analysis", "technical feasibility", "technology trends", "build vs buy", "technology roadmap", "architecture assessment", or needs guidance on evaluating technologies, technical due diligence, or technology…

zircote-plugins/sigint · 65 tokens