← All skills
Tencent SkillHub · Developer Tools

PaperPod

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/shell-tools.md, references/api-reference.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

PaperPod

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.

Quick Start

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

Authentication

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.

CLI (Recommended)

The CLI is the easiest way to use PaperPod. It handles streaming, sessions, and reconnection automatically.

CLI Commands

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

CLI Examples

# 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

HTTP Endpoints

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.

Quick 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

HTTP Example

# Execute shell command curl -X POST https://paperpod.dev/execute \ -H "Authorization: Bearer $PAPERPOD_TOKEN" \ -d '{"code": "ls -la", "language": "shell"}'

Capabilities

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

Pre-installed Tools (50+)

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

Key Notes

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

Billing

$0.0001/sec compute + browser, $0.02/1K neurons AI. New accounts get $5 free (~14 hours), no credit card required.

Discovery

ppod help — CLI command reference GET https://paperpod.dev/ — API schema (JSON) GET https://paperpod.dev/docs — Full documentation

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs
  • SKILL.md Primary doc
  • references/api-reference.md Docs
  • references/shell-tools.md Docs