원클릭으로
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 직업 분류 기준
| 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
}
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