Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/imbue-ai/sculptor --skill helpコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| 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.