Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Isolated agent runtime for code execution, live preview URLs, browser automation, 50+ tools (ffmpeg, sqlite, pandoc, imagemagick), LLM inference, and persistent memory — all via CLI or HTTP, no SDK or API keys required.
Isolated agent runtime for code execution, live preview URLs, browser automation, 50+ tools (ffmpeg, sqlite, pandoc, imagemagick), LLM inference, and persistent memory — all via CLI or HTTP, no SDK or API keys required.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Isolated, agent-native sandboxes for code execution, live preview URLs, browser automation, 50+ tools (ffmpeg, sqlite, pandoc, imagemagick), LLM inference, and persistent memory — all via CLI or HTTP, no SDK or API keys required. Billed per second of compute usage and topup via stripe or x402.
curl -X POST https://paperpod.dev/login -d '{"email":"you@email.com"}' # Verify and get token npm install -g @paperpod/cli ppod login <token> && ppod help
Step 1: Get a token curl -X POST https://paperpod.dev/login -d '{"email":"you@email.com"}' # Check email → click magic link → copy token (pp_sess_...) Step 2: Use the token (pick one method) MethodHowBest forCLI loginppod login pp_sess_...Everyday, Interactive useEnv varexport PAPERPOD_TOKEN=pp_sess_...Scripts, CI/CDPer-request-H "Authorization: Bearer pp_sess_..."HTTP one-shots Tokens expire in 15 days. On EXPIRED_TOKEN error, re-authenticate via POST /login.
The CLI is the easiest way to use PaperPod. It handles streaming, sessions, and reconnection automatically.
CategoryCommandDescriptionSandboxppod exec <cmd>Run shell commandppod write <path> [file]Write file (stdin if no file)ppod read <path>Read fileppod ls <path>List directoryProcessesppod start <cmd>Start background processppod psList processesppod kill <id>Stop processPortsppod expose <port>Get public URL (-q for URL only)Browserppod browser:screenshot <url>Capture webpageppod browser:pdf <url>Generate PDFppod browser:scrape <url> [sel]Scrape elements (default: body)ppod browser:markdown <url>Extract markdownppod browser:content <url>Get rendered HTMLppod browser:test <url> '<json>'Run Playwright testsppod browser:acquireAcquire reusable sessionppod browser:connect <id>Connect to existing sessionppod browser:sessionsList active sessionsppod browser:limitsCheck browser limitsAIppod ai <prompt>Text generationppod ai:embed <text>Generate embeddingsppod ai:image <prompt>Generate imageppod ai:transcribe <audio>Transcribe audioppod ai:modelsList available AI modelsCodeppod interpret <code>Rich output (charts)Memoryppod mem:write <path>Persist datappod mem:read <path>Read persisted datappod mem:lsList memory filesppod mem:rm <path>Delete from memoryppod mem:usageCheck quotaAccountppod balanceCheck creditsppod statusConnection infoppod helpShow all commandsppod <cmd> --helpHelp for specific command Update CLI: npm update -g @paperpod/cli
# Execute code ppod exec "python -c 'print(2+2)'" ppod exec "npm init -y && npm install express" # Start server + expose (--bind 0.0.0.0 required for public access) ppod start "python -m http.server 8080 --bind 0.0.0.0" ppod expose 8080 # → https://8080-{sandbox-id}-p8080_v1.paperpod.work (stable URL) # Browser with tracing ppod browser:screenshot https://example.com --trace debug.zip # Persistent storage (survives sandbox reset) echo '{"step":3}' | ppod mem:write state.json # Built-in tools (50+ available: ffmpeg, sqlite3, pandoc, imagemagick, git, jq, ripgrep...) ppod exec "ffmpeg -i input.mp4 -vf scale=640:480 output.mp4" # Video processing ppod exec "sqlite3 data.db 'SELECT * FROM users'" # Database queries ppod exec "convert image.png -resize 50% thumbnail.png" # Image manipulation
Use HTTP for one-shot tasks or when CLI isn't available. Run curl https://paperpod.dev/docs or visit https://paperpod.dev/docs for full API reference.
EndpointPurposePOST /executeRun code (python, javascript, shell)POST /execute/streamStream output (SSE)POST /files/writeWrite filePOST /files/readRead filePOST /files/listList directoryPOST /process/startStart background processPOST /process/listList processesPOST /exposeGet preview URL for portPOST /memory/writePersist dataPOST /memory/readRead persisted dataPOST /browser/screenshotCapture screenshotPOST /browser/pdfGenerate PDFPOST /browser/markdownExtract markdownPOST /ai/generateText generationPOST /ai/embedEmbeddingsPOST /ai/imageImage generationGET /ai/modelsList models
# Execute shell command curl -X POST https://paperpod.dev/execute \ -H "Authorization: Bearer $PAPERPOD_TOKEN" \ -d '{"code": "ls -la", "language": "shell"}'
CategoryWhat you can doCode ExecutionPython, JavaScript, shell commandsProcessesBackground servers, long-running jobsPreview URLsExpose ports → https://8080-{sandbox-id}-p8080_v1.paperpod.workAgent Memory10MB persistent storage (R2)BrowserScreenshots, PDFs, scraping (Playwright)AI ModelsText, embeddings, images, transcriptionFilesRead/write, git, bulk operations
CategoryToolsRuntimespython, node, npm, bun, pipVersion Controlgit, gh (GitHub CLI)HTTP & Networkingcurl, httpie, jq, dig, ssSearch & Textripgrep (rg), find, sed, awk, treeMedia & Docsffmpeg, imagemagick, pandocBuild & Datamake, sqlite3, tar, gzip, zip, unzip
Sandboxes are isolated — each user gets their own container with a full Linux environment; you can only affect your own ephemeral sandbox Sandbox is ephemeral — use Agent Memory (/memory/*) for persistence Working directory is /workspace — relative paths like file.txt resolve to /workspace/file.txt Servers must bind to 0.0.0.0 for public access Ports 3000-3010 are reserved — use 8080, 5000, 4000, etc. Browser sessions — Each command creates an ephemeral session. Use browser:acquire for multi-command session reuse, --trace to capture Playwright traces
$0.0001/sec compute + browser, $0.02/1K neurons AI. New accounts get $5 free (~14 hours), no credit card required.
ppod help — CLI command reference GET https://paperpod.dev/ — API schema (JSON) GET https://paperpod.dev/docs — Full documentation
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.