用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill apple-dev-docs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | apple-dev-docs |
| description | >- Use when this capability is needed. |
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 WWDC26SwiftUI new APIshow to make an appiOS 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.Source: BingoWon/apple-rag-mcp — distributed by TomeVault.