Search reusable OpenSpace skills locally, and browse cloud packages step by step when a cloud skill may help. Reusing proven skills saves tokens, improves relia
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-skill-discovery-2a155b061bbc ,按照其中的说明把「skill-discovery」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Discover and browse skills from OpenSpace's local registry and cloud skill library.
search_skills is local-only. If the user wants cloud results, or a cloud operation reports a missing/invalid key, set up cloud access first and use cloud_browse_skills.
Ask for email and agent_name. Ask for password only through secure secret input; it must be 8 to 72 characters. Do not ask for passcode/OTP because cloud_auth_flow does not accept one.
cloud_auth_flow(action="bootstrap_agent_key", email="user@example.com", password="<secure-password>", agent_name="openspace-local-agent")
If secure password input is not available, ask the user to run:
openspace-cloud-auth bootstrap-agent-key --email user@example.com --agent-name openspace-local-agent
After setup, use cloud_browse_skills.
search_skills(query="automated deployment with rollback")
| Parameter | Required | Default | Description |
|---|---|---|---|
query | yes | — | Natural language or keywords |
limit | no | 20 | Max results |
Use this single cloud tool when local search is not enough. Continue calling
the same tool with the returned next_actions[].action.
cloud_browse_skills(action="search_skills", query="automated deployment with rollback")
cloud_browse_skills(action="local_placement", query="automated deployment with rollback")
cloud_browse_skills(action="local_placement", local_category_path="technology/computing/deployment")
cloud_browse_skills(action="import_skill", cloud_skill_id="<cloud_skill_id>", local_category_path="technology/computing/deployment/rollback")
Use recall and pull_projection only when you need package discovery or
package outlines before choosing a skill. Concrete skill search should start
with search_skills.
Choose local_category_path for the user's local package taxonomy. It uses the
same shape as cloud package paths, but is stored independently and may be more
specific than the current cloud tree. Use local_placement to inspect existing
paths and create a nearby child path before importing.
Results are returned to you (not executed). Cloud imports return a local_path after cloud_browse_skills(action="import_skill", ...).
Found a matching skill?
├── YES, and I can follow it myself
│ → read SKILL.md at local_path, follow the instructions
├── YES, but I lack the capability
│ → delegate via execute_task (see delegate-task skill)
└── NO match
→ handle it yourself, or delegate via execute_task
execute_task from the delegate-task skill.