openrune 0.5.0 → 0.5.1
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/README.md +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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/package.json
CHANGED