@diggerhq/catty 0.2.31 → 0.2.33
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 +1 -0
- package/bin/catty +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ catty login # Authenticate (required before first use)
|
|
|
41
41
|
catty logout # Remove stored credentials
|
|
42
42
|
catty new # Start Claude Code (default)
|
|
43
43
|
catty new --no-upload # Don't upload current directory
|
|
44
|
+
catty new --dangerously-skip-permissions=false # Re-enable Claude's interactive tool permission prompts
|
|
44
45
|
catty list # List active sessions
|
|
45
46
|
catty stop <session-id> # Stop a session
|
|
46
47
|
```
|
package/bin/catty
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Placeholder entrypoint so npm reliably creates the global `catty` shim.
|
|
3
|
+
// `npm/scripts/install.js` downloads the real platform binary and overwrites this file.
|
|
4
|
+
|
|
5
|
+
console.error("catty: install incomplete (postinstall did not download the binary).");
|
|
6
|
+
console.error("Try: npm config set ignore-scripts false && npm install -g @diggerhq/catty --foreground-scripts");
|
|
7
|
+
process.exit(1);
|
|
8
|
+
|
|
9
|
+
|