@masslessai/push-todo 3.6.2 → 3.6.3
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/lib/daemon.js +2 -5
- package/package.json +1 -1
package/lib/daemon.js
CHANGED
|
@@ -889,13 +889,10 @@ If you need to understand the codebase, start by reading the CLAUDE.md file if i
|
|
|
889
889
|
const claudeArgs = [
|
|
890
890
|
'-p', prompt,
|
|
891
891
|
'--allowedTools', allowedTools,
|
|
892
|
-
'--output-format', 'json'
|
|
892
|
+
'--output-format', 'json',
|
|
893
|
+
'--permission-mode', 'bypassPermissions'
|
|
893
894
|
];
|
|
894
895
|
|
|
895
|
-
if (executionMode === 'planning') {
|
|
896
|
-
claudeArgs.push('--permission-mode', 'plan');
|
|
897
|
-
}
|
|
898
|
-
|
|
899
896
|
try {
|
|
900
897
|
const child = spawn('claude', claudeArgs, {
|
|
901
898
|
cwd: worktreePath,
|