# Send PaperPod to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "paperpod",
    "name": "PaperPod",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/shassingh09/paperpod",
    "canonicalUrl": "https://clawhub.ai/shassingh09/paperpod",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/paperpod",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperpod",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/shell-tools.md",
      "references/api-reference.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "paperpod",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T21:49:17.775Z",
      "expiresAt": "2026-05-13T21:49:17.775Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperpod",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperpod",
        "contentDisposition": "attachment; filename=\"paperpod-2.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "paperpod"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/paperpod"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/paperpod",
    "downloadUrl": "https://openagent3.xyz/downloads/paperpod",
    "agentUrl": "https://openagent3.xyz/skills/paperpod/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperpod/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperpod/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: shassingh09
- Version: 2.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T21:49:17.775Z
- Expires at: 2026-05-13T21:49:17.775Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/paperpod)
- [Send to Agent page](https://openagent3.xyz/skills/paperpod/agent)
- [JSON manifest](https://openagent3.xyz/skills/paperpod/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/paperpod/agent.md)
- [Download page](https://openagent3.xyz/downloads/paperpod)