deepflow 0.1.29 → 0.1.30
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 +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
- **Stay in flow** — Minimize context switches, maximize deep work
|
|
25
25
|
- **Conversational ideation** with proactive gap discovery
|
|
26
26
|
- **Specs define intent**, tasks close reality gaps
|
|
27
|
+
- **Worktree isolation** — Main branch stays clean during execution
|
|
27
28
|
- **Parallel execution** with context-aware checkpointing
|
|
28
29
|
- **Atomic commits** for clean rollback
|
|
29
30
|
|
|
@@ -70,7 +71,7 @@ CONVERSATION
|
|
|
70
71
|
│ Renames: feature.md → doing-feature.md
|
|
71
72
|
▼
|
|
72
73
|
/df:execute
|
|
73
|
-
│
|
|
74
|
+
│ Creates isolated worktree (main stays clean)
|
|
74
75
|
│ Parallel agents, file conflicts serialize
|
|
75
76
|
│ Context-aware (≥50% → checkpoint)
|
|
76
77
|
│ Atomic commit per task
|
|
@@ -95,6 +96,14 @@ specs/
|
|
|
95
96
|
|
|
96
97
|
**Ongoing:** Detects existing patterns, follows conventions, integrates with current code.
|
|
97
98
|
|
|
99
|
+
## Worktree Isolation
|
|
100
|
+
|
|
101
|
+
Execution happens in an isolated git worktree:
|
|
102
|
+
- Main branch stays clean during execution
|
|
103
|
+
- On failure, worktree preserved for debugging
|
|
104
|
+
- Resume with `/df:execute --continue`
|
|
105
|
+
- On success, changes merged back to main
|
|
106
|
+
|
|
98
107
|
## Context-Aware Execution
|
|
99
108
|
|
|
100
109
|
Statusline shows context usage. At ≥50%:
|
|
@@ -124,7 +133,8 @@ your-project/
|
|
|
124
133
|
└── .deepflow/
|
|
125
134
|
├── context.json # context % for execution
|
|
126
135
|
├── checkpoint.json # resume state
|
|
127
|
-
└──
|
|
136
|
+
└── worktrees/ # isolated execution (main stays clean)
|
|
137
|
+
└── df/doing-upload/20260202-1430/
|
|
128
138
|
```
|
|
129
139
|
|
|
130
140
|
## Configuration
|