deepflow 0.1.11 → 0.1.13

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/bin/install.js CHANGED
@@ -85,21 +85,21 @@ async function main() {
85
85
 
86
86
  // Copy commands
87
87
  copyDir(
88
- path.join(PACKAGE_DIR, '.claude', 'commands', 'df'),
88
+ path.join(PACKAGE_DIR, 'src', 'commands', 'df'),
89
89
  path.join(CLAUDE_DIR, 'commands', 'df')
90
90
  );
91
91
  log('Commands installed');
92
92
 
93
93
  // Copy skills
94
94
  copyDir(
95
- path.join(PACKAGE_DIR, '.claude', 'skills'),
95
+ path.join(PACKAGE_DIR, 'src', 'skills'),
96
96
  path.join(CLAUDE_DIR, 'skills')
97
97
  );
98
98
  log('Skills installed');
99
99
 
100
100
  // Copy agents
101
101
  copyDir(
102
- path.join(PACKAGE_DIR, '.claude', 'agents'),
102
+ path.join(PACKAGE_DIR, 'src', 'agents'),
103
103
  path.join(CLAUDE_DIR, 'agents')
104
104
  );
105
105
  log('Agents installed');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepflow",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Stay in flow state - lightweight spec-driven task orchestration for Claude Code",
5
5
  "keywords": [
6
6
  "claude",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "files": [
31
31
  "bin/",
32
- ".claude/",
32
+ "src/",
33
33
  "hooks/",
34
34
  "templates/",
35
35
  "VERSION"
@@ -0,0 +1,22 @@
1
+ # /df:update — Update deepflow
2
+
3
+ ## Update
4
+
5
+ ```bash
6
+ npx deepflow@latest
7
+ ```
8
+
9
+ Auto-detects existing installation and updates it.
10
+
11
+ ## Uninstall
12
+
13
+ ```bash
14
+ npx deepflow --uninstall
15
+ ```
16
+
17
+ ## Check Version
18
+
19
+ ```bash
20
+ cat ~/.claude/deepflow/VERSION # installed
21
+ npm view deepflow version # latest
22
+ ```
@@ -1,31 +0,0 @@
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. The installer auto-detects your existing installation (global or project) and updates it.
13
-
14
- 3. Restart Claude Code to apply changes.
15
-
16
- ## What Gets Updated
17
-
18
- - Commands: `/df:spec`, `/df:plan`, `/df:execute`, `/df:verify`
19
- - Skills: gap-discovery, atomic-commits, code-completeness
20
- - Agents: reasoner
21
- - Hooks: statusline, update checker (global only)
22
-
23
- ## Check Current Version
24
-
25
- Your installed version is stored in `~/.claude/deepflow/VERSION` (global) or `.claude/deepflow/VERSION` (project).
26
-
27
- Run this to see versions:
28
- ```bash
29
- cat ~/.claude/deepflow/VERSION # installed
30
- npm view deepflow version # latest on npm
31
- ```
@@ -1,12 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(git add:*)",
5
- "Bash(git commit -m \"$\\(cat <<''EOF''\nfeat: add spec lifecycle states and context-aware execution\n\nSpec file states \\(doing-/done- prefixes\\):\n- New specs: specs/*.md \\(no prefix\\)\n- In progress: specs/doing-*.md \\(has tasks in PLAN.md\\)\n- Completed: specs/done-*.md \\(history embedded\\)\n\nPlan command:\n- Only reads new specs \\(excludes doing-/done-\\)\n- Renames to doing-* after creating tasks\n- Appends to PLAN.md \\(preserves existing\\)\n\nExecute command:\n- Context-aware via .deepflow/context.json\n- At ≥50% context: stop spawning, wait, checkpoint\n- File-based agent results \\(no TaskOutput\\)\n- Completes specs: embed history, rename done-*, clean PLAN.md\n\nVerify command:\n- Verifies done-* specs by default\n- --doing flag for in-progress specs\n\nStatusline hook:\n- Writes context % to .deepflow/context.json\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
6
- "Bash(git push)",
7
- "Bash(npm version:*)",
8
- "Bash(git commit:*)",
9
- "Bash(npm publish:*)"
10
- ]
11
- }
12
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes