openrune 0.3.7 → 0.3.8

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 CHANGED
@@ -846,7 +846,7 @@ function runRune(file, restArgs) {
846
846
 
847
847
  const child = spawn('claude', claudeArgs, {
848
848
  cwd: folderPath,
849
- stdio: ['pipe', 'pipe', 'pipe'],
849
+ stdio: ['ignore', 'pipe', 'pipe'],
850
850
  env: { ...process.env },
851
851
  })
852
852
 
@@ -955,7 +955,7 @@ async function pipeRunes(args) {
955
955
  const output = await new Promise((resolve, reject) => {
956
956
  const child = spawn('claude', claudeArgs, {
957
957
  cwd: folderPath,
958
- stdio: ['pipe', 'pipe', 'pipe'],
958
+ stdio: ['ignore', 'pipe', 'pipe'],
959
959
  env: { ...process.env },
960
960
  })
961
961
 
@@ -1066,7 +1066,7 @@ function watchRune(file, restArgs) {
1066
1066
 
1067
1067
  const child = spawn('claude', claudeArgs, {
1068
1068
  cwd: folderPath,
1069
- stdio: ['pipe', 'pipe', 'pipe'],
1069
+ stdio: ['ignore', 'pipe', 'pipe'],
1070
1070
  env: { ...process.env },
1071
1071
  })
1072
1072
 
package/lib/index.js CHANGED
@@ -53,7 +53,7 @@ function load(filePath) {
53
53
  const result = await new Promise((resolve, reject) => {
54
54
  const child = spawn('claude', claudeArgs, {
55
55
  cwd: folderPath,
56
- stdio: ['pipe', 'pipe', 'pipe'],
56
+ stdio: ['ignore', 'pipe', 'pipe'],
57
57
  env: { ...process.env },
58
58
  })
59
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openrune",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Rune — File-based AI Agent Harness for Claude Code",
5
5
  "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "harness", "automation"],
6
6
  "repository": {