ワンクリックで
code-execution-sandbox
Safely executes code snippets in a sandboxed environment with timeout, resource limits, and output capture
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Safely executes code snippets in a sandboxed environment with timeout, resource limits, and output capture
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyzes project structure, module dependencies, imports, and entry points to generate architecture diagrams in Mermaid format
Analyzes ETL and data pipeline code for optimization opportunities across Python (Pandas, PySpark), Rust (polars, datafusion), SQL, and general pipeline descriptions
Validates environment variable configurations and config files (YAML, TOML, JSON, .env) for missing required variables, type mismatches, deprecated keys, naming convention violations, secret exposure risks, and invalid value ranges
Analyzes code for performance bottlenecks including N+1 queries, O(n^2) or worse algorithms, unnecessary allocations, sync I/O in async contexts, excessive cloning, missing caching opportunities, and large payload transfers. Supports Rust, Python, TypeScript, and Go.
Analyzes, improves, and restructures LLM prompts for clarity, efficiency, and reliability
Analyzes source code for common security vulnerabilities including SQL injection, XSS, command injection, hardcoded secrets, insecure deserialization, path traversal, and SSRF
| name | code-execution-sandbox |
| description | Safely executes code snippets in a sandboxed environment with timeout, resource limits, and output capture |
| version | 1.0.0 |
| author | go-on-team |
| tags | ["code","execution","sandbox","security","testing","isolation"] |
| min_go_on_version | 1.0.0 |
Safely executes code snippets in an isolated sandbox environment with configurable timeouts, resource limits, and output capture. Supports multiple programming languages and provides structured execution results including stdout, stderr, exit codes, and execution timing.
| Parameter | Type | Description |
|---|---|---|
code | string | The source code to execute |
language | string | Programming language (python, javascript, rust, go, bash, ruby). Auto-detected if omitted |
timeout_secs | integer | Maximum execution time in seconds (default: 30, max: 300) |
max_memory_mb | integer | Optional memory limit in megabytes |
stdin | string | Optional standard input to pass to the process |
arguments | array | Optional command-line arguments for the executed program |
{
"code": "print('Hello from sandbox!')\nfor i in range(5):\n print(f'Count: {i}')",
"language": "python",
"timeout_secs": 10,
"stdin": ""
}
Example output:
{
"success": true,
"stdout": "Hello from sandbox!\nCount: 0\nCount: 1\nCount: 2\nCount: 3\nCount: 4\n",
"stderr": "",
"exit_code": 0,
"execution_time_ms": 45,
"language": "python",
"timed_out": false
}