Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

apple-dash-docsetsApple dash docsets 搜索

Agent Skill

apple-dash-docsets 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

364

周安装

15

GitHub Stars

4

下载量

119
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apple-dash-docsets(Apple dash docsets 搜索)
来源仓库:https://github.com/gaelic-ghost/apple-dev-skills
仓库路径:skills/apple-dash-docsets
安装命令:
npx skills add https://github.com/gaelic-ghost/apple-dev-skills --skill apple-dash-docsets
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gaelic-ghost/apple-dev-skills --skill apple-dash-docsets

简介

用于查找、检索和筛选 Apple 开发相关文档,适合在关键词搜索或任务场景中快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境,支持 Dash 文档集管理与查询。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态,并注意是否触发联网、命令执行或文件读写操作。
  • apple-dash-docsets 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Apple Dash Docsets

Purpose

Manage Dash docsets and cheatsheets on macOS with one top-level entry point. scripts/run_workflow.py is the authoritative runtime path for stage selection, fallback order, source priority, approval gating, and structured generation guidance; it does not replace the agent's own Dash access methods, and this skill should point users toward the shared simplicity-first Swift policy snippet when they need reusable Apple or Swift repo guidance.

When To Use

  • Use this skill for Dash search and discovery requests.
  • Use this skill for Dash installation requests after search has identified a missing docset.
  • Use this skill for Dash generation guidance when installation cannot complete.
  • Use this skill when the user needs the exact fallback path between agent-side Dash MCP usage, local HTTP, and URL or Service integration.
  • Recommend apple-xcode-workflow when the user needs Apple or Swift execution, diagnostics, build or test work, or Apple docs reasoning outside Dash management.
  • Recommend apple-swift-package-bootstrap when the user is starting a brand new Swift package rather than managing Dash content.

Single-Path Workflow

  1. Classify the request into one stage:

- search - install - generate

  1. If no stage is explicit, start at search.
  2. Run scripts/run_workflow.py with the selected stage:

- search: applies configured fallback order and returns a structured access-path decision - install: applies configured source priority and approval gating - generate: returns structured automation-first guidance

  1. If the selected stage cannot complete, hand off forward through references/stage-handoff-contract.md:

- search -> install - install -> generate

  1. Return one status, one path_type, and one output contract for the stage that ran.

Inputs

  • stage: search, install, or generate
  • query: required for search
  • docset_identifiers: optional for search; use installed identifiers only
  • docset_request: required for install and generate
  • approval: required before side-effectful install actions
  • Defaults:

- runtime entrypoint: executable scripts/run_workflow.py - search access order is mcp -> http -> url-service - install source priority is built-in,user-contributed,cheatsheet - default search result limit is 20 - default search snippets setting is true

Outputs

  • status

- success: the selected stage completed on its primary or fallback path - blocked: prerequisites, approval, or usable access paths are missing - handoff: the current stage is handing off to the next Dash stage

  • path_type

- primary: the selected stage completed normally - fallback: the selected stage completed through its documented fallback path

  • output

- stage - access_path or source_path - matches - install result or generation guidance when applicable - one next step when follow-up is required

Guards and Stop Conditions

  • Do not run install actions without explicit user approval.
  • Do not invent docset identifiers or catalog matches.
  • Stop with blocked when agent-side Dash MCP usage, HTTP, and URL or Service paths are all unusable for search.
  • Stop with blocked when install or generate lacks a concrete docset request.
  • Keep search, install, and generate in forward stage order; do not blend them into competing primary workflows.

Fallbacks and Handoffs

  • search falls back in this order: agent-side Dash MCP usage, local HTTP API, then URL or Service guidance.
  • install hands off to generate when no installable catalog match exists.
  • generate falls back from stable automation to deterministic manual guidance.
  • Use references/stage-handoff-contract.md when search transitions to install or install transitions to generate.
  • Recommend apple-xcode-workflow directly when the user’s task shifts from docs management to Apple or Swift execution work.
  • Recommend apple-swift-package-bootstrap directly when the user needs new Swift package scaffolding.
  • scripts/run_workflow.py is the only local runtime entrypoint for stage behavior; helper scripts remain implementation details behind it.

Customization

  • Use references/customization-flow.md.
  • scripts/customization_config.py stores and reports customization state.
  • scripts/run_workflow.py loads and enforces the runtime-safe knobs documented in references/customization-flow.md.

References

Workflow References

  • references/dash_mcp_tools.md
  • references/dash_http_api.md
  • references/dash_url_and_service.md

Contract References

  • references/stage-handoff-contract.md
  • references/automation-prompts.md
  • references/customization-flow.md

Support References

  • Recommend references/snippets/apple-swift-core.md when the user needs a reusable Apple and Swift baseline snippet in their own repo alongside Dash-based docs workflows.
  • references/catalog_built_in_docsets.json
  • references/catalog_user_contrib_docsets.json
  • references/catalog_cheatsheets.json
  • references/snippets/apple-swift-core.md

Script Inventory

  • scripts/run_workflow.py
  • scripts/dash_api_probe.py
  • scripts/dash_catalog_match.py
  • scripts/dash_catalog_refresh.py
  • scripts/dash_url_search.py
  • scripts/dash_url_install.py

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.41%
按下载量换算43

Claude

29.3%
按下载量换算35

Cursor

17.19%
按下载量换算20

Gemini CLI

9%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills