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.