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 rules/briangmilnes/apas-verus/mt-standalonegit clone --depth 1 https://github.com/briangmilnes/APAS-VERUSWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/briangmilnes/apas-verus/mt-standalone)<a href="https://agentmods.dev/rules/briangmilnes/apas-verus/mt-standalone"><img src="https://agentmods.dev/badge/rules/briangmilnes/apas-verus/mt-standalone.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00383 | $0.00383 |
| Opus 5 | $0.00192 | $0.00192 |
| Sonnet 5 | $0.00077 | $0.00077 |
| Haiku 4.5 | $0.00038 | $0.00038 |
Grade A, and why
mt-standalone 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 5d 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.
What it actually says
Mt Files Are Standalone
Mt (multi-threaded) source files must not import from their St (single-threaded) counterparts.
Rule
XMt*.rs may not use anything from XSt*.rs (or any other St file in the same chapter). Each Mt file must be self-contained with its own copies of shared items like spec functions, proof lemmas, type definitions, and external_body helpers.
Why
This is a textbook teaching codebase. Each file should be readable on its own without chasing cross-file dependencies. A student reading MergeSortMtPer.rs should see spec_sorted defined right there, not have to open MergeSortStPer.rs to find it.
What to duplicate
- Spec functions (
spec fn) - Proof lemmas (
proof fn) used in the Mt module - Type definitions (
struct,enum) specific to the algorithm - External-body helpers that the Mt module calls directly
What is NOT duplicated
- Imports from
vstdplus,Types,Concurrency,Chap02(HF scheduler), orChap18(ArraySeq) — these are shared infrastructure, not St counterparts. - Imports from other Mt modules are fine.
Example
// BAD — Mt importing from St
#[cfg(verus_keep_ghost)]
use crate::Chap26::MergeSortStPer::MergeSortStPer::*;
// GOOD — Mt defines its own copy
pub open spec fn spec_sorted(s: Seq<N>) -> bool {
forall|i: int, j: int| 0 <= i < j < s.len() ==> s[i] <= s[j]
}
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.
- 5d ago First seen · 43 lines · 383 tokens per session scan A 5a630ec84910
mt-standalone is a cursor rule published in the GitHub repository briangmilnes/APAS-VERUS (10 stars, last pushed 1mo ago), licensed MIT. It adds 383 tokens to every session, about $0.0019 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 cursor rules, from other repositories
core
Core STT/TTS abstraction layer documentation.
rust-module-refactor
Use when splitting Rust modules, moving tests, tightening visibility, or preserving facades during refactors.
rust-architect
PoolAI — Rust Architect workflow: runtime stack, MSYS2, target/ disk, pre-push checks, docs sync.
rust-development-standards
Rust development standards: idioms, style, anti-patterns (Rust 2021 edition, 2024 where applicable).
cube-engine
Use when changing Rust puzzle state, moves, notation, scrambles, or validation.
ivolgaql-project
Общие принципы ИволгаQL (MVP, Rust, русский UX, TCP).