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 KunanonJ/ai-skills-hub --skill aside-apple-passwordsgit clone --depth 1 https://github.com/KunanonJ/ai-skills-hubWrote 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/kunanonj/ai-skills-hub/aside-apple-passwords)<a href="https://agentmods.dev/skills/kunanonj/ai-skills-hub/aside-apple-passwords"><img src="https://agentmods.dev/badge/skills/kunanonj/ai-skills-hub/aside-apple-passwords/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/kunanonj/ai-skills-hub/aside-apple-passwords"><img src="https://agentmods.dev/badge/skills/kunanonj/ai-skills-hub/aside-apple-passwords.svg" alt="Reviewed on agentmods" width="80" 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.00035 | $0.00805 |
| Opus 5 | $0.00017 | $0.00402 |
| Sonnet 5 | $0.00007 | $0.00161 |
| Haiku 4.5 | $0.00003 | $0.00081 |
Grade A, and why
aside-apple-passwords 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 9d 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 — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Apple Passwords
Use the applePasswords global in the REPL to read or autofill credentials from Apple's Passwords app on macOS.
Critical Touch ID Rule
Before calling getPasswords, getOtps, or autofillLogin, notify the user first with the notification tool.
These calls can trigger a macOS Touch ID / Apple Passwords auth prompt and will not return until the user approves or cancels it.
Never ask the user to reveal a password, OTP seed, recovery code, or Touch ID result. Prefer autofillLogin when signing in because it fills the secret without printing it.
Quick Reference
// Check helper availability.
console.log(await applePasswords.capabilities());
// First-time auth, only when a call says Apple Passwords is not authenticated.
await applePasswords.requestAuth();
// Ask the user for the 6-digit Apple Passwords code only if macOS shows one.
await applePasswords.verifyAuth('<pin>');
// Find accounts for a site. No password is returned.
console.log(await applePasswords.listLogins('https://example.com'));
// -> [{ username, domains }]
// Notify the user before this call; it may wait on Touch ID.
const passwords = await applePasswords.getPasswords('https://example.com', '[email protected]');
// -> [{ username, domain, password }]
// Notify the user before this call; it may wait on Touch ID.
await applePasswords.autofillLogin(page, {
url: 'https://example.com',
username: '[email protected]',
usernameField: 'e12',
passwordField: 'e13',
submit: true,
});
// -> { status: 'filled', username, domain, passwordFilled: true }
// Notify the user before this call; it may wait on Touch ID.
console.log(await applePasswords.getOtps('https://example.com'));
// -> [{ username, domain, code, source }]
Method Contract
declare global {
const applePasswords: ApplePasswordsApi;
}
interface ApplePasswordsApi {
capabilities(): Promise<Record<string, unknown>>;
requestAuth(): Promise<{ status: 'auth-requested'; instruction: string }>;
verifyAuth(pin: string): Promise<{ status: 'authenticated' }>;
listLogins(url: string): Promise<Array<{ username: string; domains: string[] }>>;
getPasswords(url: string, username?: string): Promise<Array<{ username: string; domain: string; password: string }>>;
getOtps(url: string): Promise<Array<{ username: string; domain: string; code: string; source?: string }>>;
autofillLogin(page: Page, options?: {
url?: string; // default: page.url()
username?: string; // required if multiple logins match
usernameField?: string; // snapshot ref or CSS selector
passwordField?: string; // snapshot ref or CSS selector; default: first password input
submit?: boolean; // press Enter after filling password
}): Promise<{ status: 'filled'; username: string; domain: string; passwordFilled: true }>;
}
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.
- 9d ago First seen · 83 lines · 35 tokens per session scan A 30cca88fcaae
aside-apple-passwords is a skill published in the GitHub repository KunanonJ/ai-skills-hub (5 stars, last pushed 2d ago), licensed MIT. It adds 35 tokens to every session and 805 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-03.
Other skills, from other repositories
ijfw-tdd
RED-GREEN-REFACTOR enforcement. Use when implementing a feature or bugfix before writing implementation code. Trigger: tdd, test first, red green refactor, /ijfw-tdd.
writing-skills
A guide for creating and testing reusable instructions for AI agents, called skills. It applies test-driven development, or TDD—the practice of writing tests before implementation—to instruction documents.
test-driven-development
Test-driven development, or TDD, is a way to build software by writing a test that fails, adding the smallest code that makes it pass, and then cleaning up the code. These instructions require that process for features, bug fixes, refactors, and behavior changes.
gentle-ai-bench
Trigger: bench, journey, journeys, driven mode, gentle-ai-bench, journey corpus, j-numbers, bench axis. Author and verify gentle-ai bench journeys; go test ./bench never proves driven execution.
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.
react-web
React web development with hooks, React Query, Zustand.