openplan-html-brief

openplan-html-brief is a skill for Claude Code, Codex from BANANASJIM/openplan-skill. It costs 90 tokens per session (1,267 once invoked), scanned A, original, MIT.

A temporary, self-contained HTML page for presenting coding-agent work in a clearer visual format.

In plain words
What is it for?
Use it to summarize completed work, review findings, evidence, remaining human decisions, risks, next actions, or a project concept. The page is disposable and is not the source of truth.
Why use it?
It turns scattered findings and handoff details into a compact page that people can read without searching through chat or project files.

Skill for Claude CodeCodex

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/bananasjim/openplan-skill/openplan-html-brief
Any agent
npx skills add BANANASJIM/openplan-skill --skill openplan-html-brief
Clone the repo
git clone --depth 1 https://github.com/BANANASJIM/openplan-skill

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 openplan-html-brief

README.md
[![agentmods](https://agentmods.dev/badge/skills/bananasjim/openplan-skill/openplan-html-brief.svg)](https://agentmods.dev/skills/bananasjim/openplan-skill/openplan-html-brief)
Your own site
<a href="https://agentmods.dev/skills/bananasjim/openplan-skill/openplan-html-brief"><img src="https://agentmods.dev/badge/skills/bananasjim/openplan-skill/openplan-html-brief.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,267 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00090 $0.01267
Opus 5 $0.00045 $0.00633
Sonnet 5 $0.00018 $0.00253
Haiku 4.5 $0.00009 $0.00127

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

Security

Grade A, and why

openplan-html-brief 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.

skills/openplan-html-brief/SKILL.md · 115 lines

How it starts

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

OpenPlan HTML Brief

Use this as a better temporary frontend for human understanding. It turns agent output into a concise, readable HTML page.

Default Behavior

  • Generate a single self-contained .html file.
  • Default location: /tmp/openplan-brief-<timestamp>.html.
  • Do not add it to git.
  • Do not place it in the project repo unless the user explicitly asks.
  • Do not make it the source of truth. It is a visual summary over durable artifacts.
  • If file writing is unavailable, return the HTML in a fenced code block.

Good Uses

  • Summarize what an agent did.
  • Present auto-review findings.
  • Teach a project concept visually.
  • Show a handoff snapshot to a human.
  • Compare goal/intent/design/spec/code surfaces.
  • Explain next safe actions and human decisions.

Page Shape

Keep it simple:

  1. Header: title, timestamp, scope.
  2. Status strip: mode, result, risk level, human decision needed.
  3. Main summary: 3-6 bullets.
  4. Evidence cards: paths, commands, reports, or missing artifacts.
  5. Findings or lessons: grouped by severity or topic.
  6. Human decisions: explicit non-automated decisions.
  7. Next safe action.
  8. Residual risk.

Frontend Rules

  • Use plain HTML/CSS/JS only.
  • Inline CSS; avoid external CDN dependencies.
  • Responsive layout, readable on laptop and mobile.
  • No heavy decoration, no marketing hero, no gradients unless useful for status.
  • Prefer tables for comparisons, cards for repeated findings, and callouts for decisions/blockers.
  • Keep text concise; do not dump raw logs.
  • Escape user/file content before embedding.
  • Do not include secrets or credentials.

Visual Semantics

Use calm status colors:

  • green: no blocking findings;
  • amber: attention or uncertainty;
  • red: blocked/P0/P1;
  • blue/gray: informational.

Do not let color be the only signal; include text labels.

Minimal Template

<!doctype html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenPlan Brief</title>
<style>
  :root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
  body { margin: 0; background: #f6f7f9; color: #1f2937; }
  main { max-width: 1080px; margin: 0 auto; padding: 28px; }
  header { margin-bottom: 18px; }
  h1 { margin: 0 0 6px; font-size: 28px; letter-spacing: 0; }
  h2 { margin: 22px 0 10px; font-size: 18px; }
  .meta { color: #667085; font-size: 14px; }
  .strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
  .tile, .card { background: white; border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px; }
  .label { color: #667085; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
  .value { margin-top: 4px; font-weight: 650; }
  .ok { border-left: 4px solid #16a34a; }
  .warn { border-left: 4px solid #d97706; }
  .bad { border-left: 4px solid #dc2626; }
  ul { padding-left: 20px; }
  code { background: #f2f4f7; padding: 2px 5px; border-radius: 4px; }
  table { width: 100%; border-collapse: collapse; background: white; border: 1px solid #e5e7eb; }
  th, td { text-align: left; padding: 10px; border-bottom: 1px solid #e5e7eb; vertical-align: top; }
  th { background: #f9fafb; font-size: 13px; color: #475467; }
</style>
<main>
  <header>
    <h1>OpenPlan Brief</h1>
    <div class="meta">Scope: ... · Generated: ...</div>
  </header>
  <section class="strip">
    <div class="tile"><div class="label">Mode</div><div class="value">Review</div></div>
    <div class="tile"><div class="label">Result</div><div class="value">No blocking findings</div></div>
    <div class="tile warn"><div class="label">Human Decision</div><div class="value">Needed</div></div>
  </section>
  <section>
    <h2>Summary</h2>
    <div class="card"><ul><li>...</li></ul></div>
  </section>
</main>
</html>

Read the full file on GitHub · 115 lines

Files

What ships with it

2 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 · 115 lines · 90 tokens per session scan A d18f131f2770

Subscribe to this mod's changes

openplan-html-brief is a skill published in the GitHub repository BANANASJIM/openplan-skill (4 stars, last pushed 3mo ago), licensed MIT. It adds 90 tokens to every session and 1,267 once invoked, about $0.0005 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.