AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Sandbox Exec

skill-ic-star-tech-ccfoundry-agent-kit-sandbox-exec · by ic-star-tech

Execute commands and manage files in a Foundry sandbox.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-ic-star-tech-ccfoundry-agent-kit-sandbox-exec

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ic-star-tech-ccfoundry-agent-kit-sandbox-exec)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Sandbox Exec? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Sandbox Executor Skill

Trigger

Use this skill when the task requires executing commands in an isolated sandbox environment, or when managing workspace files.

Capabilities

  • Acquire and release sandbox leases from the Foundry sandbox pool
  • Execute shell commands inside the sandbox container
  • Write files to the sandbox workspace via API
  • Monitor command output and detect success/failure

API Reference

Acquire a sandbox lease

POST {SANDBOX_DAEMON_URL}/acquire
Content-Type: application/json
x-sandbox-token: {token}

{"username": ""}

Returns: {"lease_id": "...", "slot": 1, ...}

Execute a command

POST {SANDBOX_DAEMON_URL}/leases/{lease_id}/terminal/exec
Content-Type: application/json

{"command": ""}

Returns: Terminal output

Write a file to workspace

PUT {SANDBOX_DAEMON_URL}/users/{username}/workspace/write
Content-Type: application/json
x-sandbox-token: {token}

{"path": "relative/path/to/file.txt", "content": "file content here"}

List workspace files

GET {SANDBOX_DAEMON_URL}/users/{username}/workspace/tree
x-sandbox-token: {token}

Release the sandbox

POST {SANDBOX_DAEMON_URL}/release
Content-Type: application/json

{"lease_id": ""}

Best Practices

  • Always release the sandbox lease after use (even on error — use try/finally)
  • Wait 3-5 seconds after sandbox acquisition for container initialization
  • Use unique markers in commands to detect success: echo EXIT_CODE=$?
  • Set reasonable timeouts for long-running commands: timeout 30
  • Check pool status before acquiring: GET /pool-status

Environment Variables

  • SANDBOX_DAEMON_URL: Daemon endpoint (default: http://localhost:9000)
  • SANDBOX_TOKEN: Authentication token for the daemon API

Error Handling

  • If lease acquisition fails, the pool may be full — retry after delay
  • If command execution times out, the sandbox may need to be released and re-acquired
  • Always check HTTP status codes: 200/201 = success, 4xx = client error, 5xx = server error

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.