sandboxbox 3.0.13 → 3.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.html ADDED
@@ -0,0 +1,38 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SandboxBox</title>
7
+ <style>
8
+ body {
9
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
10
+ margin: 0;
11
+ padding: 2rem;
12
+ background-color: #f5f5f5;
13
+ }
14
+ .container {
15
+ max-width: 800px;
16
+ margin: 0 auto;
17
+ background: white;
18
+ padding: 2rem;
19
+ border-radius: 8px;
20
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
21
+ }
22
+ h1 {
23
+ color: #333;
24
+ margin-bottom: 1rem;
25
+ }
26
+ p {
27
+ color: #666;
28
+ line-height: 1.6;
29
+ }
30
+ </style>
31
+ </head>
32
+ <body>
33
+ <div class="container">
34
+ <h1>SandboxBox</h1>
35
+ <p>Portable containerized environments using Podman with automatic WSL management and Claude Code integration.</p>
36
+ </div>
37
+ </body>
38
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "3.0.13",
3
+ "version": "3.0.14",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
package/tools.txt ADDED
@@ -0,0 +1,55 @@
1
+ # Claude Code Available Tools
2
+
3
+ ## Core Tools
4
+ - **Task**: Launch specialized agents for complex multi-step tasks
5
+ - **Bash**: Execute shell commands with persistent session and optional timeout
6
+ - **Glob**: Fast file pattern matching (supports **/*.js, src/**/*.ts)
7
+ - **Grep**: Powerful search tool using ripgrep with regex support
8
+ - **Read**: Read files from local filesystem (supports images, PDFs, Jupyter notebooks)
9
+ - **Edit**: Perform exact string replacements in files
10
+ - **Write**: Write files to local filesystem (overwrites existing files)
11
+ - **NotebookEdit**: Edit specific cells in Jupyter notebooks (.ipynb files)
12
+ - **WebFetch**: Fetch and analyze web content from URLs
13
+ - **TodoWrite**: Create and manage structured task lists for coding sessions
14
+ - **WebSearch**: Search the web for current information beyond knowledge cutoff
15
+ - **BashOutput**: Retrieve output from running or completed background bash shells
16
+ - **KillShell**: Kill running background bash shells by ID
17
+ - **SlashCommand**: Execute custom slash commands from .claude/commands/
18
+ - **ExitPlanMode**: Present implementation plan and exit plan mode
19
+
20
+ ## MCP Tools
21
+ - **mcp__glootie__execute**: Execute code via Glootie MCP server
22
+ - **mcp__glootie__ast_tool**: AST analysis and manipulation via Glootie
23
+ - **mcp__glootie__caveat**: Code analysis and warnings via Glootie
24
+ - **mcp__playwright__browser_navigate**: Navigate browser to URLs
25
+ - **mcp__playwright__browser_snapshot**: Take browser screenshots
26
+ - **mcp__playwright__browser_click**: Click elements on web pages
27
+ - **mcp__playwright__browser_type**: Type text into browser elements
28
+ - **mcp__playwright__browser_evaluate**: Execute JavaScript in browser context
29
+ - **mcp__playwright__browser_close**: Close browser sessions
30
+ - **mcp__vexify__search_code**: Search codebases with Vexify MCP server
31
+
32
+ ## Tool Categories
33
+
34
+ ### File Operations
35
+ - Read, Edit, Write, NotebookEdit
36
+ - Glob (file discovery)
37
+ - Grep (content search)
38
+
39
+ ### Execution & Testing
40
+ - Bash (shell commands)
41
+ - Task (specialized agents)
42
+ - BashOutput/KillShell (background processes)
43
+
44
+ ### Web & Research
45
+ - WebFetch, WebSearch
46
+ - Playwright tools (browser automation)
47
+
48
+ ### Code Analysis
49
+ - Glootie tools (AST, execution, analysis)
50
+ - Vexify (code search)
51
+
52
+ ### Project Management
53
+ - TodoWrite (task tracking)
54
+ - SlashCommand (custom commands)
55
+ - ExitPlanMode (planning workflow)
@@ -75,7 +75,8 @@ export async function claudeCommand(projectDir, prompt) {
75
75
  const claudeArgs = [
76
76
  '--verbose',
77
77
  '--output-format', 'stream-json',
78
- '--permission-mode', 'bypassPermissions'
78
+ '--permission-mode', 'bypassPermissions',
79
+ '--allowed-tools', ALLOWED_TOOLS.join(',')
79
80
  ];
80
81
 
81
82
  console.log(color('blue', `📝 Running Claude Code with host settings\n`));