agentkernel 0.18.1

Run AI coding agents in secure, isolated microVMs
Documentation
# Amp sandbox template
# Pre-configured for running Amp (Sourcegraph) inside an isolated sandbox

[sandbox]
name = "amp-sandbox"
base_image = "node:22-alpine"
init_script = """
set -e
npm install -g @sourcegraph/amp
"""

[agent]
preferred = "amp"
compatibility_mode = "amp"

[resources]
vcpus = 2
memory_mb = 1024

[secrets]
ANTHROPIC_API_KEY = "api.anthropic.com"

[security]
profile = "moderate"

[security.domains]
allow = ["api.anthropic.com", "sourcegraph.com"]

[template]
description = "Amp (Sourcegraph) agent sandbox"
category = "Agent Sandboxes"
help_text = """
How to use: Start the sandbox and run your workflow inside /workspace.
Example command: ls -la /workspace
Binaries available: node, npm, npx, amp
Services and ports: No long-running service is configured by default; only explicitly mapped ports are exposed.
"""