ワンクリックで
sprites
Use Sprites to create, list, inspect, operate, and clean up isolated cloud development environments from Cursor.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use Sprites to create, list, inspect, operate, and clean up isolated cloud development environments from Cursor.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | sprites |
| description | Use Sprites to create, list, inspect, operate, and clean up isolated cloud development environments from Cursor. |
Use this skill when the user asks Cursor to work with Sprites, sprite environments, remote development environments, cloud sandboxes, or the Sprites MCP server.
Sprites are remote, isolated development environments with their own filesystem, URL, services, checkpoints, and network policy. This skill runs in Cursor, outside the sprite. Use the Sprites MCP tools provided by the installed plugin as the control plane.
For normal Sprites tasks, call the Sprites MCP tools directly. Do not use shell commands, curl, or local config inspection as part of the normal flow.
If Sprites MCP tools are not available in the current tool list, say that the Sprites plugin MCP tools are not loaded in this session and ask the user to reload the plugin or restart Cursor. Do not try to work around missing plugin tools by registering another MCP server from the shell.
OAuth is handled by Cursor when the Sprites MCP tools are invoked. If Cursor prompts for authorization, wait for the user to complete it, then retry the original MCP tool call once. Do not start a second login path from the shell.
Keep user-facing progress concise. Report the result, not MCP registration details, local config checks, or CLI noise.
Use the smallest direct tool for the request:
list_sprites.create_sprite, then list_sprites only if the user asked to see the updated list.destroy_sprite, only after explicit delete/destroy/remove intent.exec. Inspect or stop exec sessions with exec_list and exec_kill.service_list and service_get.service_create, service_start, service_stop.service_logs.checkpoint_create, checkpoint_list, checkpoint_get, checkpoint_restore.policy_network_get, policy_network_update.Sprite-scoped tools require a sprite argument. If the user did not name a sprite and the task needs one, call list_sprites and choose the obvious match; ask a short clarification only when there is no clear choice.
List sprites:
list_sprites.Create a sprite:
create_sprite with a descriptive task-scoped name.list_sprites and summarize the updated list.Inspect or operate a sprite:
service_list, service_logs, or targeted exec based on the task.exec for short commands.Keep these contexts distinct:
Do not assume Cursor's local shell is inside a sprite. To inspect or change a sprite, use Sprites MCP tools.
Treat any HTTP service in a sprite as potentially internet-accessible. Sprite URLs can be switched from authenticated access to public access.
Never create HTTP endpoints that expose:
Destroying a sprite is irreversible. It deletes the environment state, services, checkpoints, and URL. Only call destroy_sprite when the user explicitly asks to delete, destroy, or remove a sprite, or when they approve cleanup.
For risky filesystem changes, package installs, migrations, or broad refactors inside a sprite, create a checkpoint first with checkpoint_create and mention the checkpoint id.
If network access fails, use policy_network_get first. Update network policy with policy_network_update only when the user has asked to allow or block domains, or when the required access is clearly part of the requested work and you can explain it.