deepflow 0.1.3 → 0.1.4
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/.claude/commands/df/update.md +33 -0
- package/VERSION +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# /df:update — Update deepflow
|
|
2
|
+
|
|
3
|
+
Update deepflow to the latest version from npm.
|
|
4
|
+
|
|
5
|
+
## Instructions
|
|
6
|
+
|
|
7
|
+
1. Run the update command:
|
|
8
|
+
```bash
|
|
9
|
+
npx deepflow@latest
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
2. When prompted, choose the same installation level you used before (Global or Project).
|
|
13
|
+
|
|
14
|
+
3. The installer will update all commands, skills, agents, and hooks.
|
|
15
|
+
|
|
16
|
+
4. Restart Claude Code to apply changes.
|
|
17
|
+
|
|
18
|
+
## What Gets Updated
|
|
19
|
+
|
|
20
|
+
- Commands: `/df:spec`, `/df:plan`, `/df:execute`, `/df:verify`
|
|
21
|
+
- Skills: gap-discovery, atomic-commits, code-completeness
|
|
22
|
+
- Agents: reasoner
|
|
23
|
+
- Hooks: statusline, update checker (global only)
|
|
24
|
+
|
|
25
|
+
## Check Current Version
|
|
26
|
+
|
|
27
|
+
Your installed version is stored in `~/.claude/deepflow/VERSION` (global) or `.claude/deepflow/VERSION` (project).
|
|
28
|
+
|
|
29
|
+
Run this to see versions:
|
|
30
|
+
```bash
|
|
31
|
+
cat ~/.claude/deepflow/VERSION # installed
|
|
32
|
+
npm view deepflow version # latest on npm
|
|
33
|
+
```
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|