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 radiantlogicinc/fastworkflow --skill detect-duplicate-capabilitiesgit clone --depth 1 https://github.com/radiantlogicinc/fastworkflowWrote 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/radiantlogicinc/fastworkflow/detect-duplicate-capabilities)<a href="https://agentmods.dev/skills/radiantlogicinc/fastworkflow/detect-duplicate-capabilities"><img src="https://agentmods.dev/badge/skills/radiantlogicinc/fastworkflow/detect-duplicate-capabilities.svg" alt="Measured on agentmods" 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.00135 | $0.02509 |
| Opus 5 | $0.00068 | $0.01255 |
| Sonnet 5 | $0.00027 | $0.00502 |
| Haiku 4.5 | $0.00014 | $0.00251 |
Grade A, and why
detect-duplicate-capabilities 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 7d 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 — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Detecting duplicate capabilities
Some workflows expose the same capability twice: ControlsMonitor/list_findings and
Directory/search_control_findings answer the same question. Others hold legitimate neighbours
or opposites whose seed lists do not yet express the distinction. Both shapes present
identically — as benchmark failures — and the fix for one is the opposite of the fix for the
other. These two scans exist to tell them apart.
Neither scan changes what is trained, which labels exist, or what any model predicts. Neither blocks a run. They report.
The two instruments
| Pre-flight lexical scan | Post-training router scan | |
|---|---|---|
| Runs | before anything costs money | after models are trained and carried forward |
| Input | hand-written seed utterances | seed utterances + the trained CommandRouter.predict |
| Needs | no LLM key, no network | the models this run just produced |
| Asks | "does the training data separate these?" | "does the model actually separate these?" |
| Blind to | a duplicate pair sharing no distinctive vocabulary | nothing lexical, but only sees pairs it was run on |
| Output | ___command_info/duplicate_capabilities.json + printed report |
printed MODEL CONFUSION warning, merged into the same report |
They are complements, not a cheap version and a good version. Run and read both.
What separability actually measures
"Near-duplicate" is defined as a property of the training data, not of the two commands' meanings, because the training data is the only thing the classifier ever sees:
Two commands are near-duplicates when a classifier restricted to that pair, trained on their own utterances, cannot tell them apart.
Made concrete as leave-one-out, balanced, nearest-centroid accuracy over the pair's utterances in TF-IDF space. Three choices in that sentence carry the whole result:
- Leave-one-out, because an utterance sitting inside its own centroid classifies itself.
- Balanced (the mean of the two per-command recalls), so chance is 0.5 regardless of how many utterances each side has.
- Document frequency computed across every command in the workflow, so shared vocabulary —
"order", "my", "please", the workflow's own subject matter — is discounted automatically and
only distinguishing terms carry weight. This is what stops a workflow full of
modify_pending_order_address/_items/_paymentfrom producing a wall of false positives: those share their boilerplate and differ in exactly the terms IDF promotes.
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.
- 7d ago First seen · 200 lines · 135 tokens per session scan A 8a4289ccabf6
detect-duplicate-capabilities is a skill published in the GitHub repository radiantlogicinc/fastworkflow (52 stars, last pushed 2d ago), licensed Apache-2.0. It adds 135 tokens to every session and 2,509 once invoked, about $0.0007 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…