maestro-flow-one 0.1.1 → 0.1.3
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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All 49 Maestro workflow commands as a single skill with dual-variant support (Codex + Claude Code).
|
|
4
4
|
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install [Maestro Flow](https://github.com/catlog22/maestro-flow) CLI first:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g maestro-flow
|
|
11
|
+
```
|
|
12
|
+
|
|
5
13
|
## Install
|
|
6
14
|
|
|
7
15
|
```bash
|
|
8
16
|
npm install -g maestro-flow-one
|
|
9
17
|
```
|
|
10
18
|
|
|
19
|
+
> **Important:** Both `maestro-flow` and `maestro-flow-one` must be globally installed to ensure delegate sessions can correctly invoke `/maestro-flow --cmd ...` during wave/step execution. Without global install, external steps and cross-command calls will fail.
|
|
20
|
+
|
|
11
21
|
### Install skill
|
|
12
22
|
|
|
13
23
|
```bash
|
package/package.json
CHANGED