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 agentmods add skills/uhop/console-toolkit/add-modulenpx skills add uhop/console-toolkit --skill add-modulegit clone --depth 1 https://github.com/uhop/console-toolkitWhat 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 | $0.00017 | $0.00583 |
| Opus 5 | $0.00009 | $0.00292 |
| Sonnet 5 | $0.00003 | $0.00117 |
| Haiku 4.5 | $0.00002 | $0.00058 |
Grade A, and why
add-module 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 yesterday.
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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add a New Module
Follow these steps when adding a new public module or sub-package.
Top-level module (e.g., src/foo.js)
- Create
src/foo.jswith the implementation.- ESM only. Use
.jsextensions in all imports. - No runtime dependencies.
- No JSDoc — API contracts live in
src/foo.d.ts.
- ESM only. Use
- Create
src/foo.d.tswith hand-written type declarations and JSDoc. - Create
tests/test-foo.jswith automated tests (tape-six). - Run the new test:
node tests/test-foo.js - No
exportsentry is needed — the./*wildcard already exposes the module asconsole-toolkit/foo.js. Do not add file-shape substitutions like"./foo": "./src/foo.js". - Create
wiki/Module:-foo.mdwith usage documentation. - Add a link to the new wiki page in
wiki/Home.md. - Update
ARCHITECTURE.md— add the module to the project layout tree and dependency graph if applicable. - Update
llms.txtandllms-full.txtwith a brief description of the new module. - Update
AGENTS.mdif the module changes the architecture quick reference. - Verify:
npm test - Verify:
npm run ts-check - Verify:
npm run lint
Sub-package (e.g., src/foo/index.js)
- Create
src/foo/index.jsas the main entry point.- Re-export sub-modules as needed.
- Create
src/foo/index.d.tswith hand-written type declarations. - Create individual sub-module files under
src/foo/.- Each sub-module gets its own
.d.tsfile if it has a public API.
- Each sub-module gets its own
- Create
tests/test-foo.jswith automated tests. - Run the new test:
node tests/test-foo.js - Add an
exportsentry inpackage.json:"./foo": "./src/foo/index.js". - Create
wiki/Package:-foo.mdwith usage documentation. - Add a link to the new wiki page in
wiki/Home.md. - Update
ARCHITECTURE.md— add the package to the project layout tree and dependency graph. - Update
llms.txtandllms-full.txt. - Update
AGENTS.mdif the package changes the architecture quick reference. - Verify:
npm test - Verify:
npm run ts-check - Verify:
npm run lint
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.
- yesterday First seen · 47 lines · 17 tokens per session scan A 9f601eb9c4d1
add-module is a skill published in the GitHub repository uhop/console-toolkit (10 stars, last pushed 1mo ago), licensed BSD-3-Clause. It adds 17 tokens to every session and 583 once invoked, about $0.0001 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
ui-ux-pro-max
Searchable UI/UX design databases: 50+ styles, 97 palettes, 57 font pairings, 99 UX rules, 25 chart types. CLI generates design systems from natural language. Data-driven complement to ui-design.
theme-component
Add complete theme support for one Recharts component. Invoke with the component name, for example theme-component XAxis.
typescript
Write strongly-typed TypeScript code in Recharts.
example
Create new example charts for Recharts documentation website.
investigate
Find root cause for a bug or an issue in Recharts and propose a solution.
mutation-testing
Run Stryker mutation tests on one or a few files and check the HTML report. Invoke when asked to run mutation tests, check mutation score/coverage, or find untested code paths.