deepflow 0.1.8 → 0.1.9
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,12 +61,14 @@ CONVERSATION
|
|
|
61
61
|
│ Creates specs/{name}.md
|
|
62
62
|
▼
|
|
63
63
|
/df:plan
|
|
64
|
+
│ Detects project context/patterns
|
|
64
65
|
│ Analyzes specs vs codebase
|
|
65
66
|
│ Creates PLAN.md with tasks
|
|
66
67
|
│ Renames: feature.md → doing-feature.md
|
|
67
68
|
▼
|
|
68
69
|
/df:execute
|
|
69
|
-
│
|
|
70
|
+
│ Follows existing patterns
|
|
71
|
+
│ Parallel agents, file conflicts serialize
|
|
70
72
|
│ Context-aware (≥50% → checkpoint)
|
|
71
73
|
│ Atomic commit per task
|
|
72
74
|
▼
|
|
@@ -84,6 +86,12 @@ specs/
|
|
|
84
86
|
done-feature.md → completed, history embedded
|
|
85
87
|
```
|
|
86
88
|
|
|
89
|
+
## Works With Any Project
|
|
90
|
+
|
|
91
|
+
**Greenfield:** Everything is new, agents create from scratch.
|
|
92
|
+
|
|
93
|
+
**Ongoing:** Detects existing patterns, follows conventions, integrates with current code.
|
|
94
|
+
|
|
87
95
|
## Context-Aware Execution
|
|
88
96
|
|
|
89
97
|
Statusline shows context usage. At ≥50%:
|