use-instavm

InstaVM agent skill for sessions, VMs, snapshots, SSH, egress, shares, and volumes

インストール
CLI
npx skills add https://github.com/instavm/skills --skill use-instavm

CLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。

最終更新日: 4/23/2026

InstaVM Skills

Agent skill set for InstaVM, following the Agent Skills format.

Installation

Install with the skills CLI:

npx skills add instavm/skills

Supports Codex, Claude Code, Cursor, OpenCode, and other agents supported by skills.

Claude Code Plugin Marketplace

Add the marketplace:

/plugin marketplace add instavm/skills

Install the plugin:

/plugin install instavm@instavm-skills

Skill Surface

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 uses the installed instavm CLI for quick operator workflows, the Python SDK for orchestration-heavy tasks, and raw HTTP only for confirmed gaps.

Workflow Coverage

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
  • installed CLI auth, identity, docs, billing, and operator workflows
  • platform APIs such as computer-use, audit, webhooks, and API keys

Repository Structure

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

Development Notes

  • Keep SKILL.md concise and routing-focused.
  • Keep workflow behavior in action-oriented references.
  • Prefer installed CLI help and SDK method names over docs or memory.
  • Keep CLI-specific guidance in references/cli.md rather than bloating the main skill file.

References