
Covers Sandboxing Code Execution Infrastructure
Description
Use when working with Sprites from Antigravity, including creating persistent microVMs, running commands, managing services, using checkpoints, syncing files, or applying Sprites safety practices.
SKILL.md
Sprites
Use the hosted Sprites MCP server configured as sprites. Do not build, scaffold, or run a local MCP server for Sprites.
Core Principles
- Sprites are persistent, isolated Linux microVMs. Treat them as durable environments, not disposable one-shot shells.
- Use a restricted Sprites OAuth token and a clear prefix such as
mcp-unless the user explicitly needs broader organization access. - Prefer fresh Sprites for experiments and risky generated code.
- Create or verify a recent checkpoint before package upgrades, migrations, bulk filesystem edits, service rewrites, network policy changes, or destructive cleanup.
- Ask before destroying Sprites, restoring checkpoints, widening network/resource/privilege policies, or making a service public.
- Use exact names and IDs from
list_sprites, checkpoint lists, service lists, or exec-session lists. Do not guess resource identifiers.
Common Workflow
- Discover the current state with read-only tools first: list Sprites, inspect the selected Sprite, list services, list checkpoints, or read logs.
- Select or create a Sprite with an
mcp-style name when using restricted access. - For changes that may persist or break state, create a checkpoint with a clear reason.
- Run commands through the Sprites MCP exec tools and summarize command, working directory, exit status, and important output.
- For background processes, use Sprites services rather than leaving a foreground exec session running.
- Verify the result with tests, service logs, health checks, or file reads.
- End with the Sprite name, checkpoint/service identifiers, exposed URLs, and any cleanup the user should know about.
References
- Read
references/safety.mdbefore destructive, public exposure, network policy, or checkpoint-restore workflows. - Read
references/services.mdbefore creating or modifying long-running services. - Read
references/deployment.mdbefore deployment or sync-oriented work.
More skills from the sprites-antigravity-plugin repository
View all 7 skillsSkillTagsUpdated
sprites-checkpoint
manage Sprite checkpoints and snapshots
Jul 12AutomationMaintenanceOperationssprites-cleanup
clean up stale Sprites and environments
Jul 12AutomationMaintenanceOperationssprites-list
list and inspect Fly.io Sprites
Jul 12CLIInfrastructureSandboxingsprites-new
create isolated Sprite development environments
Jul 12Code ExecutionInfrastructureSandboxingsprites-run
run commands inside Fly.io Sprites
Jul 12CLICode ExecutionSandboxingsprites-service
manage long-running services in Sprites
Jul 12DebuggingDeploymentOperations