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 skills add Kasempiternal/axiom-v2 --skill ax-testinggit clone --depth 1 https://github.com/Kasempiternal/axiom-v2Wrote 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/skills/kasempiternal/axiom-v2/ax-testing)<a href="https://agentmods.dev/skills/kasempiternal/axiom-v2/ax-testing"><img src="https://agentmods.dev/badge/skills/kasempiternal/axiom-v2/ax-testing.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.00008 | $0.03048 |
| Opus 5 | $0.00004 | $0.01524 |
| Sonnet 5 | $0.00002 | $0.00610 |
| Haiku 4.5 | $0.00001 | $0.00305 |
Grade A, and why
ax-testing scanned grade A with 1 finding 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 7d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
let user = try await api.fetch(id: 1) How it starts
The opening of the file, as written. The whole thing — 410 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing
Quick Patterns
Swift Testing Basics
import Testing
@Test("User has correct name") func userName() {
let user = User(name: "Alice")
#expect(user.name == "Alice")
}
@Test func fetchUser() async throws {
let user = try await api.fetch(id: 1)
#expect(user.isActive)
}
// Unwrap or fail fast
let first = try #require(items.first)
#expect(first.isValid)
// Error testing
#expect(throws: ValidationError.invalidEmail) {
try validate(email: "bad")
}
Suites and Traits
@Suite("Video Tests")
struct VideoTests {
let video = Video(named: "sample.mp4") // Fresh per test
@Test func duration() { #expect(video.duration == 120) }
@Test(.disabled("Backend not ready")) func upload() async { }
@Test(.timeLimit(.minutes(1))) func transcode() async { }
@Test(.bug("https://github.com/org/repo/issues/42")) func edgeCase() { }
}
extension Tag {
@Tag static var networking: Self
@Tag static var slow: Self
}
@Test(.tags(.networking, .slow)) func integrationTest() async { }
Parameterized Tests
@Test(arguments: [IceCream.vanilla, .chocolate, .strawberry])
func flavorWithoutNuts(_ flavor: IceCream) {
#expect(!flavor.containsNuts)
}
// Two collections = all combinations (cartesian product)
@Test(arguments: [1, 2, 3], ["a", "b", "c"])
func allCombinations(number: Int, letter: String) { }
// Paired values only
@Test(arguments: zip([1, 2, 3], ["one", "two", "three"]))
func paired(number: Int, name: String) { }
Async Testing
// Callback -> confirmation (replaces XCTestExpectation)
@Test func notificationFires() async {
await confirmation { confirm in
NotificationCenter.default.addObserver(forName: .didUpdate, object: nil, queue: .main) { _ in
confirm()
}
triggerUpdate()
}
}
// Multiple events
await confirmation("eaten", expectedCount: 10) { confirm in
jar.onEaten = { confirm() }
await jar.eatAll()
}
// Verify never happens
await confirmation(expectedCount: 0) { confirm in
cache.onEviction = { confirm() }
cache.store("small")
}
// MainActor isolation
@Test @MainActor func viewModelUpdates() async {
let vm = ViewModel()
await vm.load()
#expect(vm.items.count > 0)
}
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.
- 7d ago First seen · 410 lines · 8 tokens per session scan A ca8a3d222c90
ax-testing is a skill published in the GitHub repository Kasempiternal/axiom-v2 (4 stars, last pushed 6mo ago), licensed MIT. It adds 8 tokens to every session and 3,048 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
device-interaction
Verify iOS app behavior on device or simulator via screenshots, UI hierarchy, and touch interactions.
ios-simulator
Build, install, launch, inspect, and test iOS apps with Simulator and simctl. Use for simulator lifecycle, screenshots, logs, permissions, locations, push payloads, app containers, and repeatable local or CI verification.
swift-testing
Write, review, or migrate Swift unit tests using Swift Testing, while preserving XCTest/XCUITest where their APIs are still required. Use for test design, async behavior, traits, parameterization, migration boundaries, and version-gated testing APIs.
workflow-audit
Systematic UI workflow auditing for SwiftUI applications. Discovers entry points, traces user flows, detects dead ends and broken promises, audits data wiring, evaluates from user perspective. Triggers: "workflow audit", "audit flows", "find dead ends", "check navigation".
swift-expert
Expert-level Swift development for iOS, macOS with SwiftUI, Combine, and modern Swift 5.9+. Use when the user mentions iOS, macOS, SwiftUI, Combine, async await, or Apple platforms, or when the task involves Modern Swift Features, Basics and Optionals, Functions and Closures, or Structs and Classes.
ios-expert
Expert in iOS development with SwiftUI, UIKit, Combine, and Apple ecosystem integration. Use when the user mentions mobile, Swift, SwiftUI, UIKit, Apple platforms, or Xcode, or when the task involves iOS App Architecture, SwiftUI Fundamentals, UIKit Essentials, or Combine Framework.