registry
Prompts
public catalogueReusable prompts you can drop into any agent and version like code.
@axon/tdd
0.1.1Build a feature or fix a bug test-first, one vertical slice at a time.
@axon/accessibility
0.1.0Make an interface work by keyboard, screen reader, and at high zoom.
@axon/code-review
0.1.0Review a diff on two independent axes — repo standards, and the spec it came from.
@axon/diagnosing-bugs
0.1.0Six-phase discipline for hard bugs — build a red-capable loop before theorising.
@axon/grilling
0.1.0Stress-test a plan through a relentless one-question-at-a-time interview.
@axon/handoff
0.1.0Compact a session into a document another agent can resume the work from.
@axon/api-design
0.1.0Design an interface from the call site, then stress-test it against known futures.
@axon/caching
0.1.0Add a cache without introducing a correctness bug.
@axon/cleanup
0.1.0Remove debug instrumentation, dead code, and stale comments before shipping.
@axon/cli-design
0.1.0Design a command-line interface for both a human and a script.
@axon/code-comprehension
0.1.0Understand a specific piece of code well enough to change it, and say what you're unsure of.
@axon/codebase-design
0.1.0Design deep modules — small interfaces, clean seams, testable through them.
@axon/commit
0.1.0Turn working changes into commits whose messages explain why.
@axon/concurrency
0.1.0Reason about code where more than one thing happens at once.
@axon/config
0.1.0Handle configuration and secrets so misconfiguration fails loudly at startup.
@axon/database-migration
0.1.0Change a schema without data loss or downtime — expand, migrate, contract.
@axon/dependency-upgrade
0.1.0Move dependencies forward safely, reading changelogs before bumping.
@axon/document
0.1.0Write documentation that answers the question the reader arrived with.
@axon/domain-modeling
0.1.0Sharpen a project's domain language and record the decisions worth keeping.
@axon/error-handling
0.1.0Decide what can fail, where it's caught, and what must never be swallowed.
@axon/estimate
0.1.0Break work into pieces and state the uncertainty instead of hiding it.
@axon/implement
0.1.1Build from a spec in vertical slices, with tight feedback and honest reporting.
@axon/incident
0.1.0Respond to a live production problem — stabilise first, diagnose after.
@axon/observability
0.1.0Instrument the questions you'll ask at 3am, not the code you happen to be in.
@axon/onboard
0.1.0Build an accurate mental model of an unfamiliar codebase, and say what you're unsure of.
@axon/performance
0.1.0Make something measurably faster — measure, profile, change one thing, re-measure.
@axon/prototype
0.1.0Build throwaway code that answers one design question, then capture the answer.
@axon/pull-request
0.1.0Open a PR a reviewer can evaluate without reconstructing your reasoning.
@axon/refactor
0.1.0Improve structure without changing behaviour, in small reversible steps.
@axon/research
0.1.0Investigate against primary sources and write cited findings to a durable file.
@axon/resolving-merge-conflicts
0.1.0Resolve a merge or rebase by understanding both intents before picking.
@axon/rollback
0.1.0Undo a change safely, accounting for the state that doesn't revert.
@axon/security-review
0.1.0Review a diff for security defects, with a reachable path for every finding.
@axon/spec
0.1.0Turn a discussion into a written spec, without inventing what wasn't decided.
@axon/test-coverage
0.1.0Find the untested code that matters and close the gaps worth closing.
@axon/triage-issue
0.1.0Turn a reported issue into something actionable, or close it honestly.
@axon/type-modelling
0.1.0Make invalid states unrepresentable so bugs become compile errors.