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/contract-hero/sui-pilot/specifygit clone --depth 1 https://github.com/contract-hero/sui-pilotWhat 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.00034 | $0.00621 |
| Opus 5 | $0.00017 | $0.00311 |
| Sonnet 5 | $0.00007 | $0.00124 |
| Haiku 4.5 | $0.00003 | $0.00062 |
Grade A, and why
specify 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 — 42 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Invoke the specify skill to walk through formal-specification authoring for the Move package in the current directory.
What This Command Does
- Probes the local
sui-proverbinary and the package'sMove.tomlfor setup issues (capabilities, edition, implicit-dep readiness). - Discovers every externally reachable function (
publicnon-package +entry) undersources/. - Builds a per-function context (signature, callees, observable effects, abort paths).
- Asks the user — one structured AskUserQuestion batch per function — for invariants, preconditions, postconditions, and abort conditions.
- Drafts a
#[spec(prove)]twin function and writes it inline at the bottom of the same.movefile (between// === sui-pilot specify: generated specs ===markers). - Runs
sui-provervia thesui-prover-mcpMCP and iterates on failures using the failure taxonomy atskills/specify/references/failure-taxonomy.md. - Persists progress to
.specify-progress.jsonat the package root so the flow is resumable. - Emits a self-contained HTML audit at
.specify-report.htmlon completion.
When to Use
- After implementing new
public/entryfunctions and before deploying to mainnet. - When introducing formal verification to an existing Move package for the first time.
- Pre-audit pass to surface abort conditions and missing invariants.
When NOT to Use
- For verifying
public(package)or private functions — the prover treats them interchangeably withpublic, but thespecifyflow scopes to externally-reachable functions per the plan. - When
sui-proveris not installed — install viabrew install asymptotic-code/sui-prover/sui-proverfirst. - When
Move.tomlstill pinsSuiorMoveStdlibexplicitly — the prover requires Sui 1.45+ implicit-dep injection; the skill will surface asetup_warningand stop.
Limitations
- Single-package scope. Cross-package spec generation (the
target = other_pkg::mod::fnform) is deferred. - Spec quality is bounded by the user's answers to the
AskUserQuestionbatches; vague answers produce weak specs. - Some Move code patterns require
no_opaqueorboogie_opttuning that the skill suggests but cannot always derive automatically — the failure-taxonomy file documents the manual escape hatches.
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 · 42 lines · 34 tokens per session scan A e23ac44d5e99
specify is a command published in the GitHub repository contract-hero/sui-pilot (10 stars, last pushed 8d ago), licensed MIT. It adds 34 tokens to every session and 621 once invoked, about $0.0002 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
brainblast-firewall
Inspect a serialized Solana transaction before signing it — the AI-agent transaction firewall.
audit-strict
Multi-pass consensus audit — runs the audit twice with different prompts, only reports consensus findings. Aggressively cuts false positives.
fix-btc-e2e-p6
Fix errors in BTC E2E test (Pattern 6: P2WSH 2-of-3 Multisig).
deploy-testnet
Guided testnet deploy for EVM chains (Base, ETH, Arb, Polygon).
maxia-stocks
Trade tokenized US stocks on MAXIA (AAPL, TSLA, NVDA, etc.).
setup-ci-cd
Setup CI/CD pipeline with automated security checks for Solana programs.