Jump to related tools in the same category or review the original source on GitHub.

Web & Frontend Development @paulgnz Updated 6/28/2026 1,416 downloads 0 stars Security: Pass

Xpr Code Sandbox OpenClaw Plugin & Skill | ClawHub

Looking to integrate Xpr Code Sandbox into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.

What this skill does

Execute JavaScript code in a sandboxed VM for data processing and computation

Install

ClawHub CLI
openclaw skills install @paulgnz/xpr-code-sandbox
Node.js (npx)
npx clawhub@latest install xpr-code-sandbox

Full SKILL.md

Open original
Metadata table.
namedescription
code-sandboxExecute JavaScript code in a sandboxed VM for data processing and computation

SKILL.md content below is scrollable.

Code Sandbox

You have sandboxed JavaScript execution tools for computation and data processing:

Full scripts:

  • execute_js — run JavaScript code in an isolated V8 sandbox
    • Pass data via the input parameter (JSON) — access it as INPUT in your code
    • Use console.log() to capture intermediate values (returned in logs array)
    • Available globals: JSON, Math, Date, Array, Object, String, Number, RegExp, Map, Set, parseInt, parseFloat, isNaN, isFinite, encodeURIComponent, decodeURIComponent, atob, btoa
    • No network access, no filesystem, no imports — pure computation only
    • Default timeout 5 seconds, max 30 seconds
    • 10MB output limit

Quick expressions:

  • eval_expression — evaluate a single JavaScript expression and return the result
    • Use for quick math: "15 * 4500 * 0.01"675
    • Date calculations: "new Date().toISOString()"
    • Array operations: "[1,2,3].map(x => x*x)"[1, 4, 9]

Best practices:

  • Use execute_js for multi-step data processing, algorithm testing, code validation
  • Use eval_expression for quick math, string ops, date calculations
  • Pass large datasets via input parameter rather than embedding in code
  • Combine with parse_csv (structured-data skill) for CSV → transform → output workflows
  • Combine with store_deliverable to save computed results as job evidence
ClawHub Registry URL: https://clawhub.ai/paulgnz/skills/xpr-code-sandbox

Related skills

If this matches your use case, these are close alternatives in the same category.