dev-playbooks 1.5.5 → 1.5.6
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,6 +97,20 @@ dev-playbooks init --tools claude --scope project # Project-level
|
|
|
97
97
|
dev-playbooks init --tools claude --scope global # Global
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
+
### Update
|
|
101
|
+
|
|
102
|
+
Use the `update` command to update both CLI and project Skills:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
dev-playbooks update
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
The update command will:
|
|
109
|
+
1. **Check for CLI updates**: Automatically detects new versions on npm and prompts to update
|
|
110
|
+
2. **Update project files**: Updates Skills, rule files, instruction files, etc.
|
|
111
|
+
|
|
112
|
+
> **Tip**: No need to manually run `npm install -g dev-playbooks` anymore - the `update` command handles it automatically.
|
|
113
|
+
|
|
100
114
|
### Quick integration
|
|
101
115
|
|
|
102
116
|
DevBooks uses two directory roots:
|