Agent skill set for InstaVM, following the Agent Skills format.
Install with the skills CLI:
npx skills add instavm/skillsSupports Codex, Claude Code, Cursor, OpenCode, and other agents supported by skills.
Add the marketplace:
/plugin marketplace add instavm/skills
Install the plugin:
/plugin install instavm@instavm-skills
This repo currently ships one installable skill:
use-instavm is route-first. Intent routing is defined in SKILL.md, and execution details are split into action-oriented references. It is SDK-first today, with a clean future path for a native InstaVM CLI route.
use-instavm covers:
- ephemeral code execution sessions
- durable VM lifecycle operations
- static site and small app hosting
- VM snapshots and clones
- OCI-image snapshot builds
- SSH key registration and SSH access
- share creation for exposed ports
- session and VM egress policy management
- volume creation, upload, checkpoint, mount, and unmount
- platform APIs such as computer-use, audit, webhooks, and API keys
skills/
├── .claude-plugin/
│ └── marketplace.json
├── plugins/
│ └── instavm/
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── skills/
│ └── use-instavm/
│ ├── agents/
│ │ └── openai.yaml
│ ├── references/
│ │ ├── access.md
│ │ ├── cli.md
│ │ ├── compute.md
│ │ ├── hosting.md
│ │ ├── platform.md
│ │ ├── setup.md
│ │ └── storage.md
│ └── SKILL.md
└── README.md
- Keep
SKILL.mdconcise and routing-focused. - Keep workflow behavior in action-oriented references.
- Prefer installed SDK method names over docs or memory.
- Add future native CLI guidance in
references/cli.mdrather than bloating the main skill file.