aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClawd <ai@clawd.bot>2026-02-28 18:37:06 -0800
committerClawd <ai@clawd.bot>2026-02-28 18:37:06 -0800
commitde242df9cbe7dfe483f59f9b25e980727baa4c11 (patch)
treeb11c35f7ec47d900148a7f1c267934719f03f592
parent4aaed77705081009fe9e3d7025b545108f7db205 (diff)
Remove git integration from README
-rw-r--r--README.md18
1 files changed, 7 insertions, 11 deletions
diff --git a/README.md b/README.md
index 0c4927a..ceac0f3 100644
--- a/README.md
+++ b/README.md
@@ -8,25 +8,21 @@ Built with Electron, React, and the Claude Agent SDK.
8 8
91. **Research** — Claude analyzes your codebase, writes findings to session `research.md` 91. **Research** — Claude analyzes your codebase, writes findings to session `research.md`
102. **Plan** — Claude creates an implementation plan with code snippets and TODO checklist 102. **Plan** — Claude creates an implementation plan with code snippets and TODO checklist
113. **Implement** — Claude executes the plan, committing as it goes 113. **Implement** — Claude executes the plan
12 12
13At each phase, edit the document to add notes (`// REVIEW:`, `// NOTE:`), click **Review** for feedback, then **Submit** to advance. 13At each phase, edit the document to add notes (`// REVIEW:`, `// NOTE:`), click **Review** for feedback, then **Submit** to advance.
14 14
15## Git Integration 15## Sessions
16 16
17Each session creates an isolated git worktree: 17Each session has isolated artifacts:
18 18
19``` 19```
20.claude-flow/ 20.claude-flow/sessions/{sessionId}/
21├── sessions/{sessionId}/ 21├── research.md # Session research
22│ ├── research.md # Session-specific research 22└── plan.md # Session plan
23│ └── plan.md # Session-specific plan
24└── worktrees/{sessionId}/ # Git worktree (branch: claude-flow/{sessionId})
25``` 23```
26 24
27- Concurrent sessions supported — each has its own branch 25Concurrent sessions supported — switch between them freely.
28- Implementation commits incrementally
29- Review in worktree, then merge or discard
30 26
31## Setup 27## Setup
32 28