openrune 0.3.9 → 0.3.10
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 +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/bin/rune.js
CHANGED
|
@@ -862,7 +862,7 @@ function runRune(file, restArgs) {
|
|
|
862
862
|
if (outputFormat === 'json') {
|
|
863
863
|
claudeArgs.push('--output-format', 'json')
|
|
864
864
|
}
|
|
865
|
-
claudeArgs.push(prompt)
|
|
865
|
+
claudeArgs.push('--', prompt)
|
|
866
866
|
|
|
867
867
|
const os = require('os')
|
|
868
868
|
const child = spawn('claude', claudeArgs, {
|
package/lib/index.js
CHANGED
|
@@ -51,7 +51,7 @@ function load(filePath) {
|
|
|
51
51
|
claudeArgs.push('--system-prompt', systemParts.join('\n'))
|
|
52
52
|
}
|
|
53
53
|
claudeArgs.push('--add-dir', folderPath)
|
|
54
|
-
claudeArgs.push(prompt)
|
|
54
|
+
claudeArgs.push('--', prompt)
|
|
55
55
|
|
|
56
56
|
// Run from a temp dir to avoid loading .mcp.json from the project folder
|
|
57
57
|
const os = require('os')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openrune",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
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": {
|