ccmanager 3.2.5 → 3.2.6
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/README.md +20 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ https://github.com/user-attachments/assets/15914a88-e288-4ac9-94d5-8127f2e19dbf
|
|
|
20
20
|
- Configurable state detection strategies for different CLI tools
|
|
21
21
|
- Status change hooks for automation and notifications
|
|
22
22
|
- Devcontainer integration
|
|
23
|
+
- **Auto Approval (experimental)**: Automatically approve safe prompts using AI verification
|
|
23
24
|
|
|
24
25
|
## Why CCManager over Claude Squad?
|
|
25
26
|
|
|
@@ -249,6 +250,25 @@ CCManager can automatically generate worktree directory paths based on branch na
|
|
|
249
250
|
|
|
250
251
|
For detailed configuration and examples, see [docs/worktree-auto-directory.md](docs/worktree-auto-directory.md).
|
|
251
252
|
|
|
253
|
+
## Auto Approval (Experimental)
|
|
254
|
+
|
|
255
|
+
CCManager can automatically approve Claude Code prompts that don't require user permission, reducing manual intervention while maintaining safety for sensitive operations.
|
|
256
|
+
|
|
257
|
+
### Features
|
|
258
|
+
|
|
259
|
+
- **Automatic decision**: Uses Claude (Haiku) to analyze prompts and determine if they need manual approval
|
|
260
|
+
- **Custom commands**: Replace the default verifier with your own script or different AI model
|
|
261
|
+
- **Safe fallback**: Always defaults to manual approval on errors or timeouts
|
|
262
|
+
- **Interruptible**: Press any key to cancel auto-approval and review manually
|
|
263
|
+
|
|
264
|
+
### Quick Start
|
|
265
|
+
|
|
266
|
+
1. Navigate to **Configuration** → **Other & Experimental**
|
|
267
|
+
2. Enable **Auto Approval (experimental)**
|
|
268
|
+
3. (Optional) Configure a custom command for verification
|
|
269
|
+
|
|
270
|
+
For detailed configuration and usage, see [docs/auto-approval.md](docs/auto-approval.md).
|
|
271
|
+
|
|
252
272
|
## Devcontainer Integration
|
|
253
273
|
|
|
254
274
|
CCManager supports running AI assistant sessions inside devcontainers while keeping the manager itself on the host machine. This enables sandboxed development environments with restricted network access while maintaining host-level notifications and automation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccmanager",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kodai Kabasawa",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"bin"
|
|
42
42
|
],
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@kodaikabasawa/ccmanager-darwin-arm64": "3.2.
|
|
45
|
-
"@kodaikabasawa/ccmanager-darwin-x64": "3.2.
|
|
46
|
-
"@kodaikabasawa/ccmanager-linux-arm64": "3.2.
|
|
47
|
-
"@kodaikabasawa/ccmanager-linux-x64": "3.2.
|
|
48
|
-
"@kodaikabasawa/ccmanager-win32-x64": "3.2.
|
|
44
|
+
"@kodaikabasawa/ccmanager-darwin-arm64": "3.2.6",
|
|
45
|
+
"@kodaikabasawa/ccmanager-darwin-x64": "3.2.6",
|
|
46
|
+
"@kodaikabasawa/ccmanager-linux-arm64": "3.2.6",
|
|
47
|
+
"@kodaikabasawa/ccmanager-linux-x64": "3.2.6",
|
|
48
|
+
"@kodaikabasawa/ccmanager-win32-x64": "3.2.6"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@eslint/js": "^9.28.0",
|