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 commands/tommymorgan/claude-plugins/workgit clone --depth 1 https://github.com/tommymorgan/claude-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.00024 | $0.04567 |
| Opus 5 | $0.00012 | $0.02284 |
| Sonnet 5 | $0.00005 | $0.00913 |
| Haiku 4.5 | $0.00002 | $0.00457 |
Grade A, and why
tommymorgan:work 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 2d 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 — 632 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Execute Plan Autonomously with Quality Gates
Work through all scenarios in a plan using TDD with comprehensive quality gates. Continue autonomously until complete or blocked.
Core Principles
- Bulldog Persistence: Don't give up or take shortcuts that create tech debt
- Border Collie Intelligence: Apply excellent judgment and autonomy
- Root-Cause Driven: Use
/tommymorgan:root-causeinstead of speculation - Quality Gates: Code review and exploratory testing before completion
- Documentation First-Class: Update docs alongside code
Completion Criteria
The work command ONLY stops when ALL FOUR conditions are met:
- All scenarios DONE: Every scenario in plan marked
<!-- DONE --> - All tests passing: Full test suite passes in local development
- All layers functional: Every application layer validated and working
- All living specs written: Every scenario has corresponding
.featurefile infeatures/
Before ANY potential stopping point, check completion criteria:
function checkCompletionCriteria():
scenarios_done = all scenarios marked DONE in plan
tests_passing = test suite exits 0 in local dev
layers_functional = all detected layers validated successfully
living_specs_written = features/*.feature contains all scenarios (verify with grep)
return scenarios_done AND tests_passing AND layers_functional AND living_specs_written
Verify living specs exist:
# Count scenarios in plan
plan_scenarios=$(grep -c "^Scenario:" plan.md)
# Count scenarios in feature files
feature_scenarios=$(grep -c "^ Scenario:" features/*.feature 2>/dev/null || echo 0)
# Must match (or feature_scenarios >= plan_scenarios)
If checkCompletionCriteria() returns false → continue execution
If checkCompletionCriteria() returns true → report completion and stop
NEVER:
- Ask "should I continue?"
- Mention token usage as stopping reason
- Ask "what should I do next?"
- Say "this is separate work"
- Rationalize incomplete work as "done"
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.
- 2d ago First seen · 632 lines · 24 tokens per session scan A 447178f7513e
tommymorgan:work is a command published in the GitHub repository tommymorgan/claude-plugins (4 stars, last pushed 1mo ago), licensed MIT. It adds 24 tokens to every session and 4,567 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 commands, from other repositories
tdd-requirements
TDD開発の要件整理を行います。機能要件を明確化し、テスト駆動開発のための準備を行います。.
go-test
Go TDD workflow with table-driven tests.
pm-auto-design2dev
設計レビューから実装完了まで完全自動化(設計レビュー→作業計画→TDD実装).
task-verify
PitWay: Run an inprogress task's approved verification command and persist evidence.
execute-plan
Execute an implementation plan methodically with TDD and continuous validation.
tdd
强制执行测试驱动开发工作流。首先搭建接口,生成测试,然后从实现能通过测试的最小代码。确保 80%+ 的覆盖率。.