openrune 0.3.0 → 0.3.2
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/bin/rune.js +2 -2
- package/package.json +1 -1
package/bin/rune.js
CHANGED
|
@@ -720,8 +720,8 @@ function runRune(file, restArgs) {
|
|
|
720
720
|
|
|
721
721
|
const claudeArgs = ['-p', '--print',
|
|
722
722
|
'--permission-mode', 'auto',
|
|
723
|
+
'--verbose',
|
|
723
724
|
'--output-format', 'stream-json',
|
|
724
|
-
'--include-hook-events',
|
|
725
725
|
]
|
|
726
726
|
if (systemPrompt) {
|
|
727
727
|
claudeArgs.push('--system-prompt', systemPrompt)
|
|
@@ -730,7 +730,7 @@ function runRune(file, restArgs) {
|
|
|
730
730
|
|
|
731
731
|
const child = spawn('claude', claudeArgs, {
|
|
732
732
|
cwd: folderPath,
|
|
733
|
-
stdio: ['
|
|
733
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
734
734
|
env: { ...process.env },
|
|
735
735
|
})
|
|
736
736
|
|
package/package.json
CHANGED