openrune 0.3.11 → 0.3.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openrune",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
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": {
@@ -86,6 +86,12 @@ export function TerminalPanel({ cwd, autoCommand }: TerminalPanelProps) {
86
86
  const onOutput = (msg: { id: string; data: string }) => {
87
87
  if (msg.id !== id) return
88
88
  term.write(msg.data)
89
+ // Auto-select "I am using this for local development" when prompted
90
+ if (msg.data.includes('I am using this for local development')) {
91
+ setTimeout(() => {
92
+ window.rune.send('terminal:input', { id, data: '\r' })
93
+ }, 300)
94
+ }
89
95
  }
90
96
  window.rune.on('terminal:output', onOutput)
91
97