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/donald-ada/workinggenius/enablenpx skills add donald-ada/workinggenius --skill enablegit clone --depth 1 https://github.com/donald-ada/workinggeniusWhat 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.00051 | $0.01156 |
| Opus 5 | $0.00026 | $0.00578 |
| Sonnet 5 | $0.00010 | $0.00231 |
| Haiku 4.5 | $0.00005 | $0.00116 |
Grade A, and why
enable 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 3d 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 — 26 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Enablement
The genius of doing the work the work needs. Its failure mode is flying blind: code produced without feedback until a big-bang reveal at the end.
The concept: build one slice at a time, in a fresh context, with reality voting every few minutes. Tests lead the code — write the failing test at the agreed seam and watch it fail before the implementation exists; this is the one discipline a capable model still talks itself out of (measured 0/3 baseline), so hold it even when momentum says skip it. Test behavior through public seams, not implementation. Some criteria can't be red-green — verify those against the real thing and record what you observed; the rule is feedback, not ceremony.
Coordinating multiple slices? Hand each builder the snapshot's path, verify each returned slice against real output yourself, and stay awake until they're done — a builder's word is not evidence.
Closing a slice is one commit with four effects (genius-file skill): the code, the slice's log entry, the compacted snapshot, and the close of its issue if it carries one. The record updates as a side effect of an action you had to take anyway, never as bookkeeping someone must remember. (An issue closes via closes #N in the message where that commit lands on the default branch, and directly, pointing at the commit, where it won't; where .genius/ is gitignored, the files are written at that same moment all the same.)
Write the log entry while the output is still on screen — under the slice's own anchor, one line per criterion: the command and its result, data not prose (the work-file discipline's rule). It goes in the log and not the commit message; the work-file discipline names why a message can't serve as the record. Compact the snapshot to current truth in the same commit: mark the slice's line done and link its entry; land a convention introduced or a pinned value revised in the contract, where the next slice already reads; move consumed assumed: lines to the log with what consumed them. What the build merely disproved — a stated fact, a value that measured differently — is the errata skill's line-level correction, made by whoever makes the commit, in that slice's issue too where it carries one.
Start each slice by reading the snapshot's slice list, so a slice that closed without marking itself is caught by the next slice rather than at close-out. And a discovery worth its own piece of work — spotted mid-build, not this slice's job — takes its one line in .genius/BACKLOG.md before momentum buries it (genius-file skill).
A slice earns its close under fresh eyes, not just green tests. Before the closing commit, hand the slice's diff to a fresh, context-isolated reviewer, judged against the slice's acceptance criteria and the contract — under the same rules as Tenacity's close-out review: don't tell it what not to flag, and treat its findings as claims to verify, not orders. Fix what's real before the commit; what's real but not this slice's job goes to .genius/BACKLOG.md or an Open line. The slice's log entry notes the outcome in one line — reviewed → 2 findings fixed, 1 to backlog — so close-out can trust the slice was reviewed without re-reading its diff. Reviewing only at close-out means someone eventually reads a diff no one can hold in their head — slice-sized review catches problems while the context that produced them is still warm, and leaves Tenacity's reviewer free for what slice-sized eyes cannot see: the seams between slices.
When the build changes the requirements, the plan re-enters the flow at minute scale: pause, confirm, re-version, resume. A discovery that moves the work's shape — criteria, scope, slices, seams — is the normal case, not an erratum: the contract was right for the world it was written in; the build just made the world clearer. Never silently improvise around it. Pause the slice and put the change to the user in one exchange — what was discovered, what it changes, which slices it touches, with your recommendation; where they can't be reached, an assumed: line, flagged for next contact. Then bump the contract (genius-file skill): the new version whole in the snapshot, the old version whole to the log with what overturned it, one changelog line between them. Re-cut the slices only where the change reaches — a reshaped slice leaves no corpse in the snapshot; the reshape and its reason are a log entry, its issue closed with the reason, its replacement joining the work's parent issue and label like any other. Then resume, building against the version that now binds. Ten churns cost ten log entries and a snapshot the same size it started — which is the point: a plan that gets more expensive to change gets defended instead of corrected.
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.
- 3d ago First seen · 26 lines · 51 tokens per session scan A 75d7e1b50fca
enable is a skill published in the GitHub repository donald-ada/workinggenius (5 stars, last pushed 5d ago), licensed MIT. It adds 51 tokens to every session and 1,156 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
absolute-work
End-to-end, phase-gated SDLC for AI coding agents: relentless design interview → reviewed spec → dependency-graphed task board → safe-wave TDD execution → verification → converge. Handles features, bugs, refactors, greenfield projects, planning breakdowns, and migrations. Triggers on "absolute work", "build this…
test-writing
Writes meaningful tests that actually catch bugs.
implement
Execute tasks from track plan with TDD workflow and git commit integration.
tdd
Guides feature work and bug fixes through a red-green-refactor loop using vertical slices. Use when the user wants test-first development, acceptance criteria implemented safely, or one behavior delivered at a time.
tdd
Test-Driven Development workflow with RED-GREEN-REFACTOR, lore from Kent Beck, Michael Feathers, and Ousterhout's counterpoint.
test-driven-development
Optional TDD workflow; use only when user explicitly requests TDD/tests (red-green-refactor with minimal scope).