C.R.I.S.P: Skill for Claude Code

.claude/skills/crisp-report/SKILL.md

crisp-report is a skill for Claude Code from radekamirko/C.R.I.S.P. It costs 66 tokens per session (747 once invoked), scanned A, original, MIT.

A tool that turns Markdown documents in a project’s docs folder into one self-contained HTML report. The report includes an overview, document pages, code highlighting, tables, and links to individual documents.

In plain words
What is it for?
Use it after a CRISP phase, codebase investigation, or sprint to export project documents into a browsable report.
Why use it?
It makes project documentation easier to review and share as a single file without requiring a server or other runtime setup.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is radekamirko/C.R.I.S.P's own configuration. It tells Claude Code how to work on C.R.I.S.P itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything C.R.I.S.P configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/generate-report.py [docs_dir] [output_file].

Part of the crisp plugin — 9 skills shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to radekamirko/C.R.I.S.P. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/radekamirko/C.R.I.S.P/main/.claude/skills/crisp-report/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/radekamirko/C.R.I.S.P

Made for: Claude Code.

Or install crisp, the plugin that ships this one along with the rest of its 9 skills.

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 crisp-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/radekamirko/c.r.i.s.p/crisp-report/github.svg)](https://agentmods.dev/skills/radekamirko/c.r.i.s.p/crisp-report)
Your own site
<a href="https://agentmods.dev/skills/radekamirko/c.r.i.s.p/crisp-report"><img src="https://agentmods.dev/badge/skills/radekamirko/c.r.i.s.p/crisp-report/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 crisp-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/radekamirko/c.r.i.s.p/crisp-report"><img src="https://agentmods.dev/badge/skills/radekamirko/c.r.i.s.p/crisp-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 747 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00066 $0.00747
Opus 5 $0.00033 $0.00374
Sonnet 5 $0.00013 $0.00149
Haiku 4.5 $0.00007 $0.00075

Measured 12d ago against content hash 339cbe854b59, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

crisp-report 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 12d 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.

curl -o scripts/generate-report.py https://raw.githubusercontent.com/radekamirko/C.R.I.S.P/main/scripts/generate-report.py
.claude/skills/crisp-report/SKILL.md · 102 lines

How it starts

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

CRISP Report Generator

Converts all markdown files in docs/ into a single self-contained HTML file — cards overview, click-through to full documents, beautiful dark theme, no dependencies.


How to run

Step 1: Check dependencies

pip3 install markdown pygments

If pip3 isn't available, try: python3 -m pip install markdown pygments

Step 2: Run the script

python3 scripts/generate-report.py [docs_dir] [output_file]

Defaults:

  • docs_dir./docs
  • output_file./crisp-report.html

Examples:

# Default — reads ./docs, outputs ./crisp-report.html
python3 scripts/generate-report.py

# Custom paths
python3 scripts/generate-report.py ./docs ./reports/sprint-3-report.html

Step 3: Open

open crisp-report.html

Or share the file directly — it's fully self-contained. No server needed.


What it produces

  • Overview page — card grid, one card per document, grouped by section (Discovery / Spec / Archaeology / Execute)
  • Document pages — click any card → full rendered document with proper typography, code highlighting, tables
  • Escape / Back → returns to overview
  • Direct URL linking via #doc-id hash — shareable links to specific docs

When to run

  • End of CRISP Phase S — before handing off to Execute. Share with stakeholders for review.
  • End of each sprint — updated report alongside the sprint delta doc. The stakeholder report section is already in the HTML.
  • After CRISP Archaeology — share the recovered docs with the client or team.
  • Any time — "generate report" at any point in a CRISP session.

Script location

scripts/generate-report.py in the project root (copied from the CRISP repo).

If the script doesn't exist in the project yet, instruct the user to copy it from the CRISP repo:

curl -o scripts/generate-report.py https://raw.githubusercontent.com/radekamirko/C.R.I.S.P/main/scripts/generate-report.py

Or copy it manually from C.R.I.S.P/scripts/generate-report.py.

Read the full file on GitHub · 102 lines

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. 12d ago First seen · 102 lines · 66 tokens per session scan A 339cbe854b59

Subscribe to this mod's changes

crisp-report is a skill published in the GitHub repository radekamirko/C.R.I.S.P (52 stars, last pushed 3mo ago), licensed MIT. It adds 66 tokens to every session and 747 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.

Related

Other skills, from other repositories

report

Generate self-contained HTML reports instead of long terminal output. For task completions, research, audits, comparisons, and blockers.

MarcinDudekDev/claude-report-skill · 27 tokens

kb-ingest

Use when a new source document has been added to a KB's raw/ folder and needs to be filed into the wiki — read the source, write its summary page, create or update concept and entity pages, update the index and log, and lint.

hogu-dev/llmkb · 55 tokens

chatdoc-studio-api

ChatDOC Studio API usage guide - complete documentation and examples for PDF parsing, chat applications, agent applications, content retrieval, and data extraction APIs.

chatdoc-com/chatdoc-studio-skills · 34 tokens

ChatDOC Studio--KnowledgeMate

Create and operate ChatDOC Studio knowledge bases through pdrouter using a Bearer API key and JavaScript helpers. Use when Codex needs to upload one or more PDF/DOC/DOCX files, skip failed files without aborting the whole job, create a knowledge base from successful uploads, or call the ChatDOC Studio knowledge-base…

PaodingAI/skills · 92 tokens

PDFlux-PDF2Markdown

Convert unstructured documents into LLM-ready structured data. Supports PDF, Word, PPT, and images; extracts paragraphs, formulas, tables, charts, and other elements in one step; generates up to 8 levels of headings; and outputs Markdown organized in reading order. Useful for field extraction, comparison and…

PaodingAI/skills · 78 tokens

Calliper-Compare2Markdown

Compare two local documents and convert differences into LLM-ready Markdown in one synchronous call. Supports PDF, Word, PPT, and image documents accepted by Calliper, and returns a structured markdown diff table suitable for change review, clause comparison, downstream extraction, and rule-based validation.

PaodingAI/skills · 62 tokens