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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. 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 agent-workflow init
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 agent-workflow init` | Initialize `.blueprint/` and `SKILL.md` in your project |
27
- | `npx agent-workflow update` | Update agents, templates, and rituals to latest version |
28
- | `npx agent-workflow add-skills [agent]` | Install recommended skills for an agent (alex, cass, nigel, codey, all) |
29
- | `npx agent-workflow skills [agent]` | List recommended skills |
30
- | `npx agent-workflow help` | Show help |
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 agent-workflow add-skills all # Install all recommended skills
47
- npx agent-workflow add-skills codey # Install skills for Codey only
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestr8",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Multi-agent workflow framework for automated feature development",
5
5
  "main": "src/index.js",
6
6
  "bin": {