openrune 0.5.0 → 0.5.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.
Files changed (3) hide show
  1. package/README.md +20 -3
  2. package/bin/rune.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <h1 align="center">Rune</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>The simplest agent harness for Claude Code</strong><br/>
8
+ <strong>The simplest agent toolkit for Claude Code</strong><br/>
9
9
  No SDK. No boilerplate. Just one file per agent.
10
10
  </p>
11
11
 
@@ -35,14 +35,14 @@ npm install -g openrune
35
35
 
36
36
  ---
37
37
 
38
- ## 30-Second Harness
38
+ ## 30-Second Quick Start
39
39
 
40
40
  ```bash
41
41
  rune new reviewer --role "Code reviewer, security focused"
42
42
  rune run reviewer.rune "Review the latest commit"
43
43
  ```
44
44
 
45
- That's it. You just built an agent harness.
45
+ That's it. You just built an agent.
46
46
 
47
47
  ---
48
48
 
@@ -118,6 +118,23 @@ rune run reviewer.rune "Review this project" --auto --log review.json
118
118
  }
119
119
  ```
120
120
 
121
+ ### Self-spawning agents
122
+
123
+ An agent can create and coordinate other agents on its own:
124
+
125
+ ```bash
126
+ rune new manager --role "Project manager. Create agents with rune new and coordinate them with rune pipe."
127
+ rune run manager.rune "Create a summarizer and a translator agent, then pipe them to summarize and translate this news article into Korean." --auto
128
+ ```
129
+
130
+ The manager will:
131
+ 1. Run `rune new summarizer --role "..."`
132
+ 2. Run `rune new translator --role "..."`
133
+ 3. Run `rune pipe summarizer.rune translator.rune "..."`
134
+ 4. If something fails, debug and fix it autonomously
135
+
136
+ Agents creating agents. No human intervention.
137
+
121
138
  ### Headless execution
122
139
 
123
140
  Run agents from the terminal. No GUI needed:
package/bin/rune.js CHANGED
@@ -1416,7 +1416,7 @@ function uninstall() {
1416
1416
 
1417
1417
  function showHelp() {
1418
1418
  console.log(`
1419
- 🔮 Rune — File-based AI Agent Harness
1419
+ 🔮 Rune — File-based AI Agent Toolkit
1420
1420
 
1421
1421
  Usage:
1422
1422
  rune install Install Rune (build app, register file association, add Quick Action)
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "openrune",
3
- "version": "0.5.0",
4
- "description": "Rune — File-based AI Agent Harness for Claude Code",
5
- "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "harness", "automation"],
3
+ "version": "0.5.2",
4
+ "description": "Rune — File-based AI Agent Toolkit for Claude Code",
5
+ "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "toolkit", "automation"],
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/gilhyun/Rune.git"