@ymdvsymd/tornado 0.5.0 → 0.6.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 -4
- package/bin/tornado.js +1054 -523
- package/package.json +5 -5
- package/sdk/parallel-runner.mjs +46 -0
- package/sdk/parallel-runner.mts +70 -0
package/README.md
CHANGED
|
@@ -8,19 +8,19 @@ Multi-agent development orchestrator with TUI.
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# run from a plan file (first positional arg must be an existing file)
|
|
11
|
-
npx -y @
|
|
11
|
+
npx -y @ymdvsymd/tornado ./plan.md --dev=codex --review=claude
|
|
12
12
|
|
|
13
13
|
# run with explicit config
|
|
14
|
-
npx -y @
|
|
14
|
+
npx -y @ymdvsymd/tornado --config=./tornado.json --dev=codex --review=claude
|
|
15
15
|
|
|
16
16
|
# validate config
|
|
17
|
-
npx -y @
|
|
17
|
+
npx -y @ymdvsymd/tornado validate ./tornado.json
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
### Pattern 2: Install globally with `npm i -g`
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm i -g @
|
|
23
|
+
npm i -g @ymdvsymd/tornado
|
|
24
24
|
|
|
25
25
|
# run from a plan file
|
|
26
26
|
tornado ./plan.md --dev=codex --review=claude
|
|
@@ -32,6 +32,19 @@ tornado --config=./tornado.json --dev=codex --review=claude
|
|
|
32
32
|
tornado validate ./tornado.json
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
### Pattern 3: Ralph mode (milestone-driven autonomous development)
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# run with default preset (Planner + Builder + Verifier)
|
|
39
|
+
tornado --ralph
|
|
40
|
+
|
|
41
|
+
# run with config file
|
|
42
|
+
tornado --ralph --config=./tornado.json
|
|
43
|
+
|
|
44
|
+
# override builder kind
|
|
45
|
+
tornado --ralph --dev=codex --lang=ja
|
|
46
|
+
```
|
|
47
|
+
|
|
35
48
|
## Agent kind options
|
|
36
49
|
|
|
37
50
|
- `claude` / `claude-code`
|