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.
npx skills add BenjisCollector/claude-fde-showcase --skill doc_summarisergit clone --depth 1 https://github.com/BenjisCollector/claude-fde-showcaseWrote 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.
[](https://agentmods.dev/skills/benjiscollector/claude-fde-showcase/doc_summariser)<a href="https://agentmods.dev/skills/benjiscollector/claude-fde-showcase/doc_summariser"><img src="https://agentmods.dev/badge/skills/benjiscollector/claude-fde-showcase/doc_summariser/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.
<a href="https://agentmods.dev/skills/benjiscollector/claude-fde-showcase/doc_summariser"><img src="https://agentmods.dev/badge/skills/benjiscollector/claude-fde-showcase/doc_summariser.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.00563 |
| Opus 5 | $0.00026 | $0.00282 |
| Sonnet 5 | $0.00010 | $0.00113 |
| Haiku 4.5 | $0.00005 | $0.00056 |
Grade A, and why
doc-summariser 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.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Doc Summariser
An agent skill that demonstrates the SKILL.md + helper-code pattern with a real, runnable capability.
Capability
Given a block of text, produce a faithful summary. Two modes are available:
- Extractive summary (
summarise_document): selects the most salient whole sentences from the text using a frequency-based scoring scheme (a variant of the classic Luhn method) and returns them in their original order, so the summary reads naturally. - One-line gist (
gist): a word-bounded single line for when the caller wants the shortest possible version.
Both modes are deterministic and run fully offline, which makes the skill cheap,
reproducible, and easy to test. They share their implementation with the MCP
summarise tool, so there is one source of truth to upgrade later (for example,
to a Claude-generated abstractive summary).
When to use
- The user pastes a long passage and asks for the "gist", "TL;DR", or a "short version".
- An orchestrator needs a quick, cheap summary step before deeper processing.
How to use
from agent_skills.doc_summariser.helper import summarise_document, gist
# Most salient sentences, original order:
summarise_document(long_text, max_sentences=3)
# A single short line:
gist(long_text, max_words=20)
Or run the skill directly to see both modes on a sample:
python agent_skills/doc_summariser/helper.py
Inputs
text(str): the document to summarise.max_sentences(int, default 3): upper bound on extractive summary length.max_words(int, default 20): upper bound on the one-line gist.
Output
summarise_document: a string containing the top sentences, joined and in original document order. If the text is already within the sentence bound it is returned (whitespace-normalised) unchanged.gist: a single short line; the original text if already short enough, otherwise the firstmax_wordswords followed by an ellipsis.
Edge cases
- A negative bound raises
ValueError. - A bound of zero returns an empty string.
- Text with no scorable content falls back to the leading sentences.
What ships with it
1 file 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.
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.
- 10d ago First seen · 70 lines · 51 tokens per session scan A 0a84fbd960fa
doc-summariser is a skill published in the GitHub repository BenjisCollector/claude-fde-showcase (0 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 563 once invoked, about $0.0003 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.
Other skills, from other repositories
dcf-model
Build discounted cash flow valuation workbooks in Excel.
comps-analysis
Build comparable-company valuation workbooks in Excel.
excel-author
Build auditable financial workbooks headless via openpyxl.
siyuan
Query and edit a SiYuan knowledge base via its API.
xlsx
Create, read, edit Excel .xlsx workbooks and CSVs.
pptx-author
Build PowerPoint decks headless with python-pptx.