apple-dev-docs — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited apple-dev-docs (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Provide authoritative guidance from Apple's official developer documentation and WWDC sessions using the apple-rag-mcp MCP server. Prioritize MCP tools over web search for Apple development questions.
search to find relevant documentation and WWDC content.fetch to retrieve the complete, cleaned content of a specific page by URL.search(query: string, result_count?: number)query — Must be in English. Focus on technical concepts, API names, framework names, and version numbers. Avoid dates and temporal language.result_count — Number of results (1–10, default 4). Use higher values for broad topics, lower for specific APIs.fetch(url: string)Retrieve the full cleaned content of an Apple developer documentation page or WWDC video transcript by its URL.
search with a precise English query using framework and API names.✅ Complete Document — Full content, use directly.📄 Part X of Y — Partial content. Run fetch(url) to get the complete document.📄 Parts merged — Multiple sections merged. Run fetch(url) if you need the full document.fetch for any result that is partial, or when Additional Related Documentation URLs look relevant.Good queries — focus on technical terms and API names:
SwiftUI NavigationStack path bindingCore Data CloudKit sync NSPersistentCloudKitContainervisionOS RealityKit entity component systemStoreKit 2 Transaction.currentEntitlementsUIKit UICollectionView compositional layoutAvoid — temporal language, vague terms, non-English:
latest SwiftUI changes from WWDC26~~ → SwiftUI new APIshow to make an app~~ → iOS app lifecycle UIApplicationDelegateSwiftUI 导航~~ → SwiftUI navigationThe knowledge base covers:
| Tier | Weekly limit | Per-minute limit | How to get |
|---|---|---|---|
| Anonymous | Very limited | Very limited | No setup needed |
| Free | 50/week | 5/min | Register at https://apple-rag.com |
| Pro | 50,000/week | 50/min | $1/week at https://apple-rag.com |
After registering, the user creates an MCP Token on the dashboard page and adds it to their MCP configuration as a Bearer token:
{
"mcpServers": {
"apple-rag-mcp": {
"url": "https://mcp.apple-rag.com",
"headers": {
"Authorization": "Bearer at_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}If a search or fetch returns a rate limit error, tell the user directly:
Do not silently swallow rate limit errors. The user needs to know their quota is exhausted and how to resolve it.
Install the MCP server with the appropriate command for your client:
Cursor: Add to MCP settings:
{
"mcpServers": {
"apple-rag-mcp": {
"url": "https://mcp.apple-rag.com"
}
}
}Claude Code:
claude mcp add --transport http --scope user apple-rag-mcp https://mcp.apple-rag.com --header "Authorization: Bearer at_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"Codex:
[mcp_servers.apple-rag-mcp]
url = "https://mcp.apple-rag.com"
[mcp_servers.apple-rag-mcp.http_headers]
Authorization = "Bearer at_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"fetch to get the full document before answering.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.