agentsclimarketplace

App security

Skill markdavidgan/apple-dev-skills/src/mcp/skill-search/test/fixtures/skills/app-security

Apple platform development skills for Claude Code, Cursor, Kimi Code, Antigravity, Codex CLI, and Agy.

Install
npx -y skills add markdavidgan/apple-dev-skills --skill app-security

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Security hardening for iOS/macOS apps. Use when asked about Keychain, certificate pinning, secure storage, biometric authentication, or preventing reverse engineering.

SKILL.md

0.9 KB, 169 tokens by cl100k_base, as published. Nobody here has run it

App Security

Guidance for hardening Apple platform apps against common threats.

Keychain

Use the Keychain Services API to store secrets securely. Never store passwords in UserDefaults or plain files.

Storing Credentials

let query: [String: Any] = [
  kSecClass as String: kSecClassGenericPassword,
  kSecAttrAccount as String: account,
  kSecValueData as String: password.data(using: .utf8)!
]
SecItemAdd(query as CFDictionary, nil)

Keychain Access Groups

Share Keychain items across apps in the same team using access groups.

Certificate Pinning

Pin your server's certificate or public key to prevent MITM attacks.

Biometric Authentication

Use LocalAuthentication to gate sensitive flows behind Face ID or Touch ID.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,970. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.