axiom-macos

axiom-macos is a skill for Claude Code from CharlesWiltgen/Axiom. It costs 46 tokens per session (1,230 once invoked), scanned A, original, MIT.

A macOS development guide for building apps that follow macOS conventions. It covers windows, menus, sandboxed file access, distribution, AppKit integration, and macOS-specific SwiftUI behavior.

In plain words
What is it for?
Use it when creating or updating a macOS app, including AppKit and SwiftUI integration, sandboxing, notarization, menu-bar apps, and screen capture.
Why use it?
macOS apps differ from iPhone apps in window management, menus, permissions, packaging, and user-interface details. The guide points to the relevant approach for each area.

Skill for Claude Code

Written for Claude Code: a Claude Code plugin manifest.

Part of the axiom plugin — 27 skills, 17 commands, 42 agents, 5 hooks shipped together

not rated 1.2krepo +8 2d ago A scan Socket: passSnyk: passSkillSpector: warn 46 tokens original MIT

Good fit Use it when creating or updating a macOS app, including AppKit and SwiftUI integration, sandboxing, notarization, menu-bar apps, and screen capture.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/charleswiltgen/axiom/axiom-macos
About the project

Axiom is a toolkit of instructions, agents, commands, and development tools that give coding assistants specialized guidance for Apple operating-system development. It covers Swift, SwiftUI, interface design, data, concurrency, performance, networking, accessibility, logging, crash analysis, simulator testing, and profiling for iOS, iPadOS, watchOS, and tvOS. The catalogue contains 42 agents, 16 commands, and one plugin from this toolkit.

CharlesWiltgen/Axiom · 1,155 stars · on GitHub · charleswiltgen.github.io

Install

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.

Any agent
npx skills add CharlesWiltgen/Axiom --skill axiom-macos
Clone the repo
git clone --depth 1 https://github.com/CharlesWiltgen/Axiom

Made for: Claude Code.

Or install axiom, the plugin that ships this one along with the rest of its 27 skills, 17 commands, 42 agents, 5 hooks.

Wrote 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.

agentmods badge for axiom-macos

README.md
[![agentmods](https://agentmods.dev/badge/skills/charleswiltgen/axiom/axiom-macos/github.svg)](https://agentmods.dev/skills/charleswiltgen/axiom/axiom-macos)
Your own site
<a href="https://agentmods.dev/skills/charleswiltgen/axiom/axiom-macos"><img src="https://agentmods.dev/badge/skills/charleswiltgen/axiom/axiom-macos/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for axiom-macos

Your own site · 80×15
<a href="https://agentmods.dev/skills/charleswiltgen/axiom/axiom-macos"><img src="https://agentmods.dev/badge/skills/charleswiltgen/axiom/axiom-macos.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,230 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 3 May 2026
  • Snyk pass 3 May 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 78
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.01230
Opus 5 $0.00023 $0.00615
Sonnet 5 $0.00009 $0.00246
Haiku 4.5 $0.00005 $0.00123

Measured 5d ago against content hash 953977315edb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

axiom-macos 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.

.claude-plugin/plugins/axiom/skills/axiom-macos/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

macOS Development

You MUST use this skill for ANY macOS-specific development including windows, menus, sandboxing, distribution, AppKit bridging, and macOS SwiftUI differences.

Quick Reference

Symptom / Task Reference
Window management (WindowGroup, Window, MenuBarExtra, DocumentGroup) See skills/windows.md
Menu bar, commands, keyboard shortcuts See skills/menus-and-commands.md
Table, Inspector, NavigationSplitView, focus See skills/swiftui-differences.md
App Sandbox, file access, security-scoped bookmarks See skills/sandbox-and-file-access.md
Developer ID, notarization, Sparkle auto-updates See skills/direct-distribution.md
NSViewRepresentable, NSHostingController, AppKit bridging, @Observable in AppKit, NSHostingMenu, SwiftUI scenes from AppKit See skills/appkit-interop.md
Modernizing AppKit: mouseDown replacement, control events, status-item sessions, state restoration, concentric corners, touch (OS27) See skills/appkit-modernization.md
Screen recording, sharing, or capture (ScreenCaptureKit) See skills/screencapturekit.md
SCStream / SCContentFilter / screenshots / file recording API See skills/screencapturekit-ref.md
Bring an iOS app to Mac: Catalyst adoption, Designed for iPad, Mac availability opt-out See skills/ios-apps-on-mac.md
Apple Pay on Mac / Catalyst See axiom-payments/skills/apple-pay.md (Catalyst section)

Cross-Suite Routes

These topics overlap with macOS development but live in separate suites:

SwiftUI (shared iOS/macOS)
  • View state, data flow, @Observable → See axiom-swiftui
  • Navigation (NavigationStack basics) → See axiom-swiftui (skills/nav.md)
  • Layout (ViewThatFits, AnyLayout) → See axiom-swiftui (skills/layout.md)
  • Animations → See axiom-swiftui (skills/animation-ref.md)
Data & persistence
  • SwiftData, Core Data, GRDB → See axiom-data
  • CloudKit sync → See axiom-data
Concurrency
  • Swift 6 concurrency, actors, Sendable → See axiom-concurrency

Read the full file on GitHub · 91 lines

Changes

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.

  1. 5d ago First seen · 91 lines · 46 tokens per session scan A 953977315edb

Subscribe to this mod's changes

axiom-macos is a skill published in the GitHub repository CharlesWiltgen/Axiom (1,155 stars, last pushed 2d ago), licensed MIT. It adds 46 tokens to every session and 1,230 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-09-06.

Related

Other skills, from other repositories

kmp-desktop-app

Desktop-specific concerns for KMP Compose Multiplatform apps — window management, system tray, file picker, keyboard shortcuts, native menu bar, drag-and-drop, and packaging. Covers the Desktop target's deviations from Android/iOS: synchronous file I/O on the main thread is safe on Desktop, LocalContext does not…

ronjunevaldoz/kmp-agent-skills · 85 tokens

wasm-expert

WebAssembly expert for WASI, component model, Rust/C compilation, and browser integration.

RightNow-AI/openfang · 22 tokens

using-chrisbanes-skills

Use when debugging, benchmarking, or profiling leads into Kotlin or Jetpack Compose source before the cause is known, or when one task spans multiple Kotlin or Compose concerns, especially plain Kotlin Flow or navigation delivery plus sealed branching.

chrisbanes/skills · 52 tokens

attributed-string

AttributedString patterns for rich text formatting, alignment, selection, and SwiftUI integration. Use when working with styled text, text editing, or AttributedString APIs.

rshankras/claude-code-apple-skills · 37 tokens

electron-vue-init-skill

A starter generator for desktop applications built with Electron, Vue 3, and TypeScript. Electron lets web technologies run inside a desktop window.

jiushiwon/wg-skills · 192 tokens

biome

You are an expert in Biome, the Rust-based toolchain that replaces ESLint and Prettier with a single, fast tool. You help developers configure linting, formatting, and import sorting for JavaScript, TypeScript, JSX, JSON, and CSS — achieving 100x faster execution than ESLint+Prettier with zero configuration, unified…

TerminalSkills/skills · 81 tokens