orchestr8 2.2.0 → 2.2.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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ A multi-agent workflow framework for automated feature development. Four special
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npx
|
|
17
|
+
npx orchestr8 init
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
This installs the `.blueprint/` directory and `SKILL.md` into your project. If files already exist, you'll be prompted before overwriting. It also adds the workflow queue to `.gitignore`.
|
|
@@ -23,11 +23,11 @@ This installs the `.blueprint/` directory and `SKILL.md` into your project. If f
|
|
|
23
23
|
|
|
24
24
|
| Command | Description |
|
|
25
25
|
|---------|-------------|
|
|
26
|
-
| `npx
|
|
27
|
-
| `npx
|
|
28
|
-
| `npx
|
|
29
|
-
| `npx
|
|
30
|
-
| `npx
|
|
26
|
+
| `npx orchestr8 init` | Initialize `.blueprint/` and `SKILL.md` in your project |
|
|
27
|
+
| `npx orchestr8 update` | Update agents, templates, and rituals to latest version |
|
|
28
|
+
| `npx orchestr8 add-skills [agent]` | Install recommended skills for an agent (alex, cass, nigel, codey, all) |
|
|
29
|
+
| `npx orchestr8 skills [agent]` | List recommended skills |
|
|
30
|
+
| `npx orchestr8 help` | Show help |
|
|
31
31
|
|
|
32
32
|
The `update` command preserves your content in `features/` and `system_specification/` while updating the framework files. Your `.business_context/` directory is separate from `.blueprint/` and unaffected by updates.
|
|
33
33
|
|
|
@@ -43,8 +43,8 @@ Each agent has recommended skills from the [skills.sh](https://skills.sh) ecosys
|
|
|
43
43
|
| **Codey** | `javascript-expert`, `modern-javascript-patterns` |
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
npx
|
|
47
|
-
npx
|
|
46
|
+
npx orchestr8 add-skills all # Install all recommended skills
|
|
47
|
+
npx orchestr8 add-skills codey # Install skills for Codey only
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
## Usage
|