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 Abdullah4AI/apple-developer-toolkit --skill keyboard-shortcutsgit clone --depth 1 https://github.com/Abdullah4AI/apple-developer-toolkitWrote 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/abdullah4ai/apple-developer-toolkit/keyboard-shortcuts)<a href="https://agentmods.dev/skills/abdullah4ai/apple-developer-toolkit/keyboard-shortcuts"><img src="https://agentmods.dev/badge/skills/abdullah4ai/apple-developer-toolkit/keyboard-shortcuts/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.
<a href="https://agentmods.dev/skills/abdullah4ai/apple-developer-toolkit/keyboard-shortcuts"><img src="https://agentmods.dev/badge/skills/abdullah4ai/apple-developer-toolkit/keyboard-shortcuts.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00059 | $0.00537 |
| Opus 5 | $0.00030 | $0.00269 |
| Sonnet 5 | $0.00012 | $0.00107 |
| Haiku 4.5 | $0.00006 | $0.00054 |
Grade A, and why
keyboard-shortcuts 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
Keyboard Shortcuts (macOS)
Every primary action in a macOS app MUST have a keyboard shortcut.
Button Shortcuts
Button("Save") { save() }
.keyboardShortcut("s", modifiers: .command)
Button("New") { createNew() }
.keyboardShortcut("n", modifiers: .command)
Button("Delete") { deleteSelected() }
.keyboardShortcut(.delete, modifiers: .command)
Button("Find") { showSearch() }
.keyboardShortcut("f", modifiers: .command)
Menu Bar — CommandMenu (custom menu)
Add custom menus to the menu bar via .commands { } on a Scene:
WindowGroup {
ContentView()
}
.commands {
CommandMenu("Items") {
Button("New Item") { createItem() }
.keyboardShortcut("n", modifiers: .command)
Button("Duplicate") { duplicateItem() }
.keyboardShortcut("d", modifiers: .command)
Divider()
Button("Delete") { deleteItem() }
.keyboardShortcut(.delete, modifiers: .command)
}
}
Menu Bar — CommandGroup (extend system menus)
.commands {
CommandGroup(after: .newItem) {
Button("New from Template") { newFromTemplate() }
.keyboardShortcut("t", modifiers: [.command, .shift])
}
}
Common Shortcuts Reference
| Action | Shortcut |
|---|---|
| New | Cmd+N |
| Save | Cmd+S |
| Delete | Cmd+Delete |
| Find | Cmd+F |
| Select All | Cmd+A |
| Undo | Cmd+Z |
| Preferences | Cmd+, |
Rules
- Every primary action MUST have
.keyboardShortcut() - Use
CommandMenufor app-specific menus,CommandGroupto extend system menus CommandMenuandCommandGroupgo inside.commands { }modifier on a Scene — NEVER directly in@SceneBuilder body- Follow Apple's standard shortcut conventions (Cmd+S for save, Cmd+N for new, etc.)
- Use modifier combinations for secondary actions (Cmd+Shift+N, Cmd+Option+D)
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 · 70 lines · 59 tokens per session scan A 4ee167bd0072
keyboard-shortcuts is a skill published in the GitHub repository Abdullah4AI/apple-developer-toolkit (10 stars, last pushed yesterday), licensed MIT. It adds 59 tokens to every session and 537 once invoked, about $0.0003 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-03.
Other skills, from other repositories
material-ui-nextjs
Integrates Material UI with Next.js App and Pages routers using @mui/material-nextjs, Emotion cache providers, next/font, CSS layers with Tailwind/CSS Modules, Link component prop patterns, CSS theme variables SSR notes, and App Router useSearchParams + Suspense. Use when setting up or debugging MUI in a Next.js app.
Webdesign
Design and integrate web interfaces via three paths: DirectDesign (write design inline with Anthropic frontend-design philosophy — the default workhorse), native /design + /design-sync Claude Code commands (preferred for code integration and design-system sync), or ClaudeDesign (drive claude.ai/design through…
Remotion
Creates programmatic video with React via Remotion — compositions, sequences, and motion graphics animated with useCurrentFrame() and rendered to MP4. USE WHEN video, animation, motion graphics, video rendering, React video, render video, animate content, make a short, create animations, video overlay, explainer…
slide-deck
When you want to draft, update, convert, or export a slide deck for a React/Next.js slide system (${SLIDEDECKREPO:-$HOME/code/your-slide-deck-site}/src/app/slides/). Writes TypeScript Slide[] arrays using your primitives (Eyebrow, Heading, Accent, Body, BulletList, Divider, TwoCol, GradientText), 12 cycling brand…
recipe-front-review
Reviews completed frontend implementation for governing-source compliance, scope economy, repository quality, and security, then applies user-approved React corrections.
frontend-ai-guide
Applies React/TypeScript-specific technical decision criteria, anti-pattern detection, debugging, and frontend quality gates. Use when reviewing components, hooks, browser behavior, or frontend implementation completeness.