deepflow 0.1.11 → 0.1.12
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.
|
@@ -1,31 +1,22 @@
|
|
|
1
1
|
# /df:update — Update deepflow
|
|
2
2
|
|
|
3
|
-
Update
|
|
3
|
+
## Update
|
|
4
4
|
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
|
-
1. Run the update command:
|
|
8
5
|
```bash
|
|
9
6
|
npx deepflow@latest
|
|
10
7
|
```
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
3. Restart Claude Code to apply changes.
|
|
15
|
-
|
|
16
|
-
## What Gets Updated
|
|
9
|
+
Auto-detects existing installation and updates it.
|
|
17
10
|
|
|
18
|
-
|
|
19
|
-
- Skills: gap-discovery, atomic-commits, code-completeness
|
|
20
|
-
- Agents: reasoner
|
|
21
|
-
- Hooks: statusline, update checker (global only)
|
|
11
|
+
## Uninstall
|
|
22
12
|
|
|
23
|
-
|
|
13
|
+
```bash
|
|
14
|
+
npx deepflow --uninstall
|
|
15
|
+
```
|
|
24
16
|
|
|
25
|
-
|
|
17
|
+
## Check Version
|
|
26
18
|
|
|
27
|
-
Run this to see versions:
|
|
28
19
|
```bash
|
|
29
|
-
cat ~/.claude/deepflow/VERSION
|
|
30
|
-
npm view deepflow version
|
|
20
|
+
cat ~/.claude/deepflow/VERSION # installed
|
|
21
|
+
npm view deepflow version # latest
|
|
31
22
|
```
|