用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/imbue-ai/sculptor --skill help命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | help |
| description | Ask any question about Sculptor. |
| when_to_use | Invoke when the user asks how Sculptor works, how to use a Sculptor feature (workspaces, agents, code review, actions, slash commands), or a general "what is Sculptor" question. Fetches the latest docs from github.com/imbue-ai/sculptor rather than relying on training data. |
| user_invocable | true |
ARGUMENTS: $ARGUMENTS
The docs live in imbue-ai/sculptor. This skill ships inside the Sculptor app
and fetches the docs at runtime, so always pull the live files (with curl, not
WebFetch — we need the raw markdown, not an AI summary) and answer from them.
The repo's layout changed when Sculptor was open-sourced: the help docs moved
from the repo root into docs/help/. Detect which layout is live before
fetching, so this skill keeps working across that transition:
curl -s -o /dev/null -w '%{http_code}' \
https://raw.githubusercontent.com/imbue-ai/sculptor/main/docs/help/README.md
200 → current layout: index and pages live under docs/help/.docs/.Current layout (docs/help/) | Legacy layout (flat) | |
|---|---|---|
| Index (TOC) | docs/help/README.md | SUMMARY.md |
| Page | docs/help/<page>.md | docs/<page>.md |
Fetch the index, then the relevant page(s) at the matching base path. For example, in the current layout:
curl -fsSL https://raw.githubusercontent.com/imbue-ai/sculptor/main/docs/help/README.md
curl -fsSL https://raw.githubusercontent.com/imbue-ai/sculptor/main/docs/help/<page>.md
The index lists each page by its relative path — mostly bare filenames like
workspaces.md, though some live in subfolders (e.g. experimental/). Resolve
each against the base path you chose in Step 1. Answer the user's question from
the page contents. If the docs don't cover it, link to the
full docs.
If the user's prompt matches any of these patterns:
Then respond with a short, welcoming intro (fits on one screen — no scrolling). Use the live docs you fetched to fill in accurate details, but follow this structure:
/sculptor:help
and ask a question.https://github.com/imbue-ai/sculptor/tree/main/docs/help.Constraints:
For any other question, fetch the relevant page(s) listed in the index and answer based on the docs. Keep answers concise and link to the docs if the user wants to read more.