Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

sculptor

sculptor 收录了来自 imbue-ai 的 34 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
34
Stars
203
更新
2026-07-10
Forks
12
职业覆盖
5 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

build-sculptor-extension
软件开发工程师

Build or modify a Sculptor extension — a runtime ESM module loaded into the Sculptor UI. Use when asked to write an extension (or "plugin") for Sculptor, add a panel, overlay, workspace widget, home view, or settings UI to Sculptor, or to iterate on an extension with `sculpt extension`. Works from any repo; this file is a self-contained reference (the Sculptor source code is optional).

2026-07-10
sculpt-cli
软件开发工程师

Interact with Sculptor programmatically using the sculpt CLI. Use this skill when using `sculpt`, or when designing or planning a workflow that would benefit from understanding the structural capabilities of `sculpt` (workspaces, agents, isolation, and how code flows between them).

2026-07-10
openhost-frontend-preview
软件开发工程师

Live, hot-reloading preview of the Sculptor WEB frontend from a phone or any browser, served through the OpenHost nginx /proxy front. ONLY relevant when running INSIDE the openhost-deployed Sculptor (the container fronted by nginx on :5050, reachable at https://sculptor.<zone>/) — NOT for local or Electron dev. Frontend-only: it reuses the single shared backend, so it previews UI/frontend changes, not a per-workspace backend. Invoke when iterating on the web UI and wanting to see it live in a browser through the OpenHost SSO front.

2026-07-09
openhost-environment
软件开发工程师

How this OpenHost-hosted Sculptor environment works — storage and what survives restarts, where/how to add repositories and authorize gh, and the /proxy/<port>/ capability for previewing loopback web apps from a browser. ONLY relevant when running inside an OpenHost deployment (detect via the OPENHOST_* env vars, e.g. OPENHOST_APP_NAME). Ships with the deploy image and is refreshed every release.

2026-07-09
manually-qa-branch
软件质量保证分析师与测试员

Test a pull request by creating a shallow clone at the PR's commit and launching Sculptor. Use when you need to test changes from a specific PR in isolation.

2026-07-08
auto-qa-iphone
软件质量保证分析师与测试员

QA the Sculptor mobile web UI on a real iOS Simulator, driven headlessly from a Mac. A single CLI boots a notched iPhone, launches the local frontend server (parsing its port — no hardcoding), opens the app in MobileSafari, taps/swipes via idb, and screenshots each step. Includes the Add-to-Home-Screen standalone flow — the only way to verify notch / status-bar / home-indicator safe-area rendering (env(safe-area-inset-*) is 0 everywhere except real iOS). Use when visually verifying mobile/responsive changes on an iPhone.

2026-07-07
measure-react-renders
软件开发工程师

Compare React component render counts between origin/main and the current branch during a user-defined UI scenario (e.g. panel resize, navigation). Use when verifying that performance changes actually reduced re-renders.

2026-07-07
openhost-sculptor
网络与计算机系统管理员

Deploy, verify, and reset the self-hosted Sculptor app running as an OpenHost app (built from source via openhost.Dockerfile). Covers fresh deploys, updating or switching the deployed branch while keeping data, health-checking the live instance, and a full CLI-only reset to a fresh-onboarding instance. Wraps the `oh` CLI; the app name and repo are hardcoded in the scripts and the only per-machine value (your instance host) lives in .sculptor/.env. The common flows are one-command scripts in this skill's scripts/ folder.

2026-07-07
auto-qa-changes
软件质量保证分析师与测试员

Launch Sculptor in a headless browser and interact with the UI via an HTTP API. Send commands via curl, get screenshots back, and visually inspect the result — like a human QA tester. Use when you need visual verification of UI changes, manual testing of features, or end-to-end testing with real Claude.

2026-07-04
storybook-screenshot
软件质量保证分析师与测试员

Launch the Storybook dev server and use Playwright to take screenshots of component stories. Use when you need visual verification of UI component designs or want to iterate on a component's appearance.

2026-07-03
update-help-docs
软件开发工程师

Update the Sculptor help docs (docs/help/ in this repo) to match a specific Sculptor release. Must be run from a Sculptor checkout on the matching release branch. Audits the markdown against that source, rewrites stale text, and recaptures/processes screenshots via the /auto-qa-changes harness. Does NOT commit or push — hands back a dirty working tree for the user to review. Inputs: - Required: Sculptor version to target, e.g. "0.27". The skill verifies the current branch is release/sculptor-v<version>.0 before proceeding.

2026-07-03
write-integration-test
软件质量保证分析师与测试员

Instructions for writing new Sculptor frontend integration tests. Covers how to use FakeClaude for deterministic agent behavior, test file setup, and the available FakeClaude commands. Use when writing new integration tests or adding tests to existing files.

2026-07-03
fix-bug
软件开发工程师

Fix a bug using test-driven development.

2026-07-02
code-review-checklist
软件质量保证分析师与测试员

Review a set of code changes against Sculptor's review categories and produce a markdown findings table. Use when reviewing code (your own or others').

2026-07-01
batch-claude-runner
软件开发工程师

Run Claude programmatically against collections of files in the codebase. Use for batch analysis: scrubbing sensitive data, auditing style violations, security reviews.

2026-06-30
update-specs
软件开发工程师

Bring the product specification set under docs/specs/ (SPEC.md, requirements.md, scenarios.md, scenario_coverage.md) up to date with the code that has merged to origin/main since the specs were last refreshed. Reviews the merged PRs since a recorded baseline, filters out non-product churn, and applies the needed edits to each doc — preserving its format and ID scheme — then verifies every existing claim in the docs is still true of the current code. Use periodically to keep the specs from going stale, or when asked to "update the specs" / "refresh docs/specs".

2026-06-26
profile-sculptor-backend
软件开发工程师

Capture Python-level diagnostics from a running Sculptor backend (`sculptor_backend`): instant thread dumps and viztracer/Perfetto traces with no special privileges, or py-spy CPU sampling / flamegraphs / native stacks against the installed signed app (one-time re-sign + sudo). Use when the backend is wedged, slow, pegging a CPU core, or deadlocked, or when you need a CPU profile or a live stack of `sculptor_backend`. Works both INSIDE Sculptor (where privileged steps are delegated to the user so the agent never kills its own backend) and from an EXTERNAL `claude`.

2026-06-25
handoff
其他计算机职业

Hand off the current work to a fresh agent — either a new agent in the SAME workspace, or a new workspace — seeded with a summary of the current context.

2026-06-22
architect
软件开发工程师

Produce an architecture document from a spec, through deep codebase analysis and guided Q&A. Reads the existing spec (and mocks, if any), explores the codebase, and writes architecture.md alongside the spec. Hands off to /plan when the architecture is finalized. Input: a feature slug (or seed message from /spec with slug + paths).

2026-06-22
build
软件开发工程师

Execute an implementation plan by working through each task file in order. Reads the plan's 00_overview.md, builds a TODO from the task index, then for each task re-reads implement_task.md and follows it end-to-end. The plan's final two tasks handle global test verification and spawning the Review agent. Input: a feature slug (or seed message from /plan with paths).

2026-06-22
mock
网页与数字界面设计师

Create interactive HTML mocks for a feature through guided iteration with the user. Two modes: exploration (generates 3+ end-to-end variants to help the user surface ideas) and confirmation (single coherent mock to visually verify an existing design). Can be invoked standalone or from `/sculptor-workflow:spec` as input to, or output of, a spec.

2026-06-22
plan
软件开发工程师

Produce a detailed implementation plan from a spec and architecture document. Writes a folder of self-contained task files so the build agent can execute one task at a time without holding the full plan in context. Hands off to /build when finalized. Input: a feature slug (or seed message from /architect with paths).

2026-06-22
review
软件质量保证分析师与测试员

Final review pass for a feature implementation. Verifies the diff satisfies the spec's requirements, that tests were written and pass, and invokes the repo's configured code-review skill. Writes review.md alongside the spec, then offers options for handling findings. Input: a feature slug (or seed message from /build with paths).

2026-06-22
setup-repo
软件开发工程师

Create or update the repo's Sculptor configs (.sculptor/code.md, .sculptor/testing.md, .sculptor/docs.md). These files teach the sculptor-workflow skills how to build, run, test, and where to write docs in this specific codebase. Run this to set up a new repo, or to update the configs when your setup changes.

2026-06-22
spec
软件开发工程师

Write an implementation spec through guided Q&A before writing code. Scaffolds the spec file up front, clarifies the user's goals, then explores the codebase and refines through interactive Q&A so the user watches the spec evolve in the diff viewer. Offers HTML mocks at the start (or mid-Q&A) for UI-heavy features. Input: a description of the feature or change to spec out.

2026-06-22
restack
软件开发工程师

Propagate a branch's changes down its stacked children by merging the updated parent into each stacked branch, in order from base to tip.

2026-06-18
address-comments
软件开发工程师

Apply CLAUDE:-prefixed comments from a pull request

2026-06-17
stack
软件开发工程师

Stack a new workspace on top of the current branch — a handoff into a NEW workspace whose new branch is based off, and targets, the current branch.

2026-06-15
debug-integration-test
软件质量保证分析师与测试员

Debug failing Sculptor frontend integration tests. Use when integration tests fail and you need to diagnose the root cause. Covers common failure modes, how to read test logs, and investigation strategies.

2026-06-12
frontend-design-tokens
网页与数字界面设计师

Guide for using design tokens in the Sculptor frontend. Use when writing or reviewing CSS/SCSS to pick correct token variables.

2026-06-12
run-integration-test
软件质量保证分析师与测试员

Run Sculptor integration tests. MUST be used whenever: - Running tests in sculptor/tests/integration/ - User asks to "run integration tests" or "run the tests" for integration test files - Using pytest on integration test files DO NOT run pytest directly for integration tests - use this skill instead. Tests must run as background processes with a Monitor watchdog.

2026-06-12
update-review-rules
软件开发工程师

Add a new issue type to one of Sculptor's review-rule docs. Use when you've encountered a class of bugs, anti-patterns, or flaky test patterns that should be caught in future reviews.

2026-06-12
write-release-notes
软件开发工程师

Summarize commits merged to origin/main as two outputs: internal release notes (categorized into Features, UI Polish, Testing, CI, Cleanup) and user-facing release notes (What's new, Improvements, Reliability). Two input modes: a Sculptor release version (e.g., "0.27") for single-release notes, or a date range (e.g., "Feb 14-23") for ad-hoc weekly notes. Defaults to the last 7 days.

2026-06-12
help
其他计算机职业

Ask any question about Sculptor.

2026-06-12