Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/imbue-ai/sculptor --skill help명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.