# Agentvm

> Execute shell commands in a secure AgentVM sandbox (Alpine Linux). Use when this capability is needed.

- Skill: `tomevault-io/agentvm` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/agentvm`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/agentvm/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/agentvm

---


# AgentVM Sandbox

This skill provides access to a secure, sandboxed Alpine Linux environment via AgentVM.
You can use this environment to:
- Execute shell commands (`ls`, `grep`, `curl`, etc.)
- Run Python scripts (`python3`)
- Perform calculations or data processing in isolation

## Tools

### `linux_sandbox_exec`

Executes a shell command in the VM and returns the output (stdout/stderr).

**Parameters:**
- `command` (string, required): The shell command to execute.

**Usage:**

```javascript
// List files
linux_sandbox_exec({ command: "ls -la /" });

// Run Python
linux_sandbox_exec({ command: "python3 -c 'print(1 + 1)'" });
```

---
> Source: [deepclause/agentvm](https://github.com/deepclause/agentvm) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-22 -->

