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/theagenticguy/agentic-plugins/workbench-buildernpx skills add theagenticguy/agentic-plugins --skill workbench-buildergit clone --depth 1 https://github.com/theagenticguy/agentic-pluginsWhat 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.00237 | $0.03459 |
| Opus 5 | $0.00118 | $0.01729 |
| Sonnet 5 | $0.00047 | $0.00692 |
| Haiku 4.5 | $0.00024 | $0.00346 |
Grade A, and why
workbench-builder 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Phase 0 is inline orchestrator work — name the workbench type and write the data model. Phases 1–3 each own one artifact and can run as a general-purpose `Agent` against `references/orchestrator.md`; for a single-surface How it starts
The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Contents
| File | When to load |
|---|---|
references/orchestrator.md |
Running the pipeline — the five phases, the subagent prompt shape, check-in cadence, stuck detection |
references/write-protocol.md |
Canonical write-protocol block, copied verbatim into every phase worklog and subagent prompt |
references/architecture.md |
The stack contract — SSE-as-invalidation, the fan-out, useRegion, the two-way loop, gotchas |
references/dependencies.md |
The pinned dependency set, Astryx grounding commands (bunx astryx component), the Graphite theme |
references/rendering.md |
Markdown/mermaid/ECharts patterns, the palette pairing rule, disclosure, overflow guards |
references/recipes.md |
The recipe catalog — one data model + layout per workbench type, with the unique value of each |
templates/server.ts |
Backend scaffold — schema, SSE fan-out + publish(), region queries, mutation + loop endpoints |
templates/src/ |
Frontend scaffold — main.tsx, App.tsx, useRegion.ts, charts.ts, region components |
templates/index.html |
Fullstack entry Bun.serve imports — the whole "no bundler" trick is this one file |
templates/package.json |
The exact-pinned dependency manifest copied into every workbench |
templates/graphite-theme/ |
Canonical Graphite theme — defineTheme source, built CSS/JS, the @font-face fallback |
templates/terminal-helper.ts |
Zero-dependency bun script the terminal/agent runs to act on shared state and close the loop |
templates/wait-for-work.ts |
Wake-on-work watcher — blocks on the SSE stream, exits with a digest when the human hands off work |
templates/worklog-skeleton.md |
Per-phase worklog with the write-protocol block embedded and a Status: IN PROGRESS line |
What ships with it
60 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.
- doc-review/bun.lock 27 KB
- doc-review/index.html 4.4 KB
- doc-review/package.json 209 B
- doc-review/sample-doc.html 1.5 KB
- doc-review/scripts/review.ts 2.5 KB runs code
- doc-review/scripts/wait-for-work.ts 3.6 KB runs code
- doc-review/server.ts 16 KB runs code
- doc-review/src/App.tsx 2.2 KB
- doc-review/src/components/AnnotationRail.tsx 2.7 KB
- doc-review/src/components/Document.tsx 13 KB
- doc-review/src/components/Queue.tsx 3.0 KB
- doc-review/src/main.tsx 1.7 KB
- doc-review/src/theme/graphite-fonts.css 2.0 KB
- doc-review/src/theme/graphite.css 17 KB
- doc-review/src/theme/graphite.d.ts 353 B runs code
- doc-review/src/theme/graphite.js 11 KB runs code
- doc-review/src/types.ts 445 B runs code
- doc-review/src/useRegion.ts 2.9 KB runs code
- eval-viewer/bun.lock 49 KB
- eval-viewer/index.html 3.3 KB
- eval-viewer/package.json 260 B
- eval-viewer/scripts/record-result.ts 1.4 KB runs code
- eval-viewer/scripts/review-loop.ts 1.4 KB runs code
- eval-viewer/scripts/wait-for-work.ts 3.6 KB runs code
- eval-viewer/server.ts 15 KB runs code
- eval-viewer/src/App.tsx 3.7 KB
- eval-viewer/src/charts.ts 11 KB runs code
- eval-viewer/src/components/Chart.tsx 1.5 KB
- eval-viewer/src/components/EvalBoard.tsx 4.7 KB
- eval-viewer/src/components/EventLog.tsx 1.0 KB
- eval-viewer/src/components/Mermaid.tsx 2.2 KB
- eval-viewer/src/components/Queue.tsx 2.5 KB
- eval-viewer/src/main.tsx 1.8 KB
- eval-viewer/src/theme/graphite-fonts.css 2.0 KB
- eval-viewer/src/theme/graphite.css 17 KB
- eval-viewer/src/theme/graphite.d.ts 353 B runs code
- eval-viewer/src/theme/graphite.js 11 KB runs code
- eval-viewer/src/useRegion.ts 2.9 KB runs code
- evals/evals.json 2.3 KB
- grid-workbench/bun.lock 27 KB
- grid-workbench/index.html 3.9 KB
- grid-workbench/package.json 213 B
- grid-workbench/scripts/ingest-rows.ts 1.3 KB runs code
- grid-workbench/scripts/patch-cell.ts 984 B runs code
- grid-workbench/scripts/review-loop.ts 2.4 KB runs code
- grid-workbench/scripts/wait-for-work.ts 3.2 KB runs code
- grid-workbench/server.ts 20 KB runs code
- grid-workbench/src/App.tsx 2.8 KB
- grid-workbench/src/components/ColumnStats.tsx 2.2 KB
- grid-workbench/src/components/EditableCell.tsx 3.4 KB
- grid-workbench/src/components/EditLog.tsx 2.2 KB
- grid-workbench/src/components/Grid.tsx 6.0 KB
- grid-workbench/src/components/Queue.tsx 2.6 KB
- grid-workbench/src/main.tsx 1.7 KB
- grid-workbench/src/theme/graphite-fonts.css 2.0 KB
- grid-workbench/src/theme/graphite.css 17 KB
- grid-workbench/src/theme/graphite.d.ts 353 B runs code
- grid-workbench/src/theme/graphite.js 11 KB runs code
- grid-workbench/src/types.ts 1.6 KB runs code
- grid-workbench/src/useRegion.ts 3.0 KB runs code
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 · 144 lines · 237 tokens per session scan A 4cb4f3f3425c
workbench-builder is a skill published in the GitHub repository theagenticguy/agentic-plugins (5 stars, last pushed 20d ago), licensed MIT. It adds 237 tokens to every session and 3,459 once invoked, about $0.0012 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-31.
Other skills, from other repositories
genesis
Use this skill BEFORE drafting any agentic primitive module (skill, persona scoping file, scope-attached rule file, orchestrator workflow) or when refactoring an existing one. Activate whenever the task asks to design, restructure, or critique an agentic module across any agent harness (Claude Code, Copilot, Cursor…
genesis-evals
Use this skill to run the genesis maintainer-side eval suite against a target model (default: claude-opus-4.7). Activate when validating a genesis PR, when changing the genesis catalogue (architectural-patterns, primitives, design-patterns, refactor-patterns, composition-substrate, pattern-tradeoffs, SKILL.md), or…
agents
Guidance for AI coding agents working on the adeptability (adept) codebase. Humans: see README.md for usage and CONTRIBUTING.md for the contributor workflow.
using-adept
Use the adept CLI to author AI skills once and render them into Claude Code, Cursor, Codex, Copilot, and OpenCode. Apply when installing/syncing skills, editing skill.yaml/SKILL.md, or touching .adeptability/.
authoring-adept-agents
Write a good, portable adept agent (subagent): trigger-shaped description, one job per agent, generator/evaluator separation, explicit boundaries, restricted tools. Apply when creating or editing an agent file or running adept agent add.
authoring-adept-loops
Compose a loop — a scheduled system that discovers work, hands it to agents, verifies with an independent evaluator, persists state, and reschedules itself. Apply when the user wants automation that runs on a timer, a triage/babysitter routine, or asks about adept loop add.