orchestr8 2.6.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -19,6 +19,18 @@ npx orchestr8 init
19
19
 
20
20
  This installs the `.blueprint/` directory, `.business_context/`, and the `/implement-feature` skill to `.claude/commands/`. If files already exist, you'll be prompted before overwriting. It also adds the workflow queue to `.gitignore`.
21
21
 
22
+ ## Keeping Up to Date
23
+
24
+ **Modules** (history, insights, feedback, retry, validate) are part of the npm package and update automatically when you use `npx` - no action needed.
25
+
26
+ **Project files** (agent specs, templates, skill definition) are copied to your project and need explicit updating:
27
+
28
+ ```bash
29
+ npx orchestr8 update
30
+ ```
31
+
32
+ This updates `.blueprint/agents/`, `.blueprint/templates/`, `.blueprint/ways_of_working/`, and `.claude/commands/implement-feature.md` while preserving your content in `features/` and `system_specification/`.
33
+
22
34
  ## Commands
23
35
 
24
36
  ### Core Commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestr8",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Multi-agent workflow framework for automated feature development",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -20,7 +20,7 @@
20
20
  "author": "NewmanJustice",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/NewmanJustice/agent-workflow.git"
23
+ "url": "git+https://github.com/NewmanJustice/orchestr8.git"
24
24
  },
25
25
  "license": "MIT",
26
26
  "engines": {