1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
import React, { useState, useRef, useEffect } from "react";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";
import { EditorState } from "@codemirror/state";
import { EditorView, keymap, lineNumbers, highlightActiveLine } from "@codemirror/view";
import { markdown } from "@codemirror/lang-markdown";
import { languages } from "@codemirror/language-data";
import { defaultKeymap, history, historyKeymap } from "@codemirror/commands";
import { oneDark } from "@codemirror/theme-one-dark";
import type { Phase } from "../types";
interface DocumentPaneProps {
content: string;
onChange: (content: string) => void;
phase: Phase;
disabled: boolean;
showOnboarding?: boolean;
}
function MarkdownEditor({
content,
onChange,
disabled,
}: {
content: string;
onChange: (content: string) => void;
disabled: boolean;
}) {
const editorRef = useRef<HTMLDivElement>(null);
const viewRef = useRef<EditorView | null>(null);
useEffect(() => {
if (!editorRef.current) return;
const updateListener = EditorView.updateListener.of((update) => {
if (update.docChanged) {
onChange(update.state.doc.toString());
}
});
const state = EditorState.create({
doc: content,
extensions: [
lineNumbers(),
highlightActiveLine(),
history(),
keymap.of([...defaultKeymap, ...historyKeymap]),
markdown({ codeLanguages: languages }),
oneDark,
updateListener,
EditorView.editable.of(!disabled),
EditorView.theme({
"&": {
height: "100%",
fontSize: "14px",
},
".cm-scroller": {
overflow: "auto",
fontFamily: '"SF Mono", Monaco, "Cascadia Code", monospace',
},
".cm-content": {
padding: "16px 0",
},
".cm-line": {
padding: "0 16px",
},
}),
],
});
const view = new EditorView({
state,
parent: editorRef.current,
});
viewRef.current = view;
return () => {
view.destroy();
viewRef.current = null;
};
}, [disabled]);
// Update content when it changes externally
useEffect(() => {
const view = viewRef.current;
if (!view) return;
const currentContent = view.state.doc.toString();
if (content !== currentContent) {
view.dispatch({
changes: {
from: 0,
to: currentContent.length,
insert: content,
},
});
}
}, [content]);
return <div ref={editorRef} className="codemirror-editor" />;
}
export function DocumentPane({
content,
onChange,
phase,
disabled,
showOnboarding,
}: DocumentPaneProps) {
const [isEditing, setIsEditing] = useState(false);
if (showOnboarding) {
return (
<div className="document-pane">
<div className="document-header">
<span>Welcome to Claude Flow</span>
</div>
<div className="document-content rendered onboarding">
<h1>Claude Flow</h1>
<p>
A structured workflow for AI-assisted coding:{" "}
<strong>Research → Plan → Implement</strong>.
</p>
<h2>Setup</h2>
<p>Export your Anthropic API key:</p>
<pre>
<code>export ANTHROPIC_API_KEY=your-key-here</code>
</pre>
<p>
Get one at{" "}
<a
href="https://platform.claude.com"
target="_blank"
rel="noopener"
>
platform.claude.com
</a>
</p>
<h2>Getting Started</h2>
<ol>
<li>
<strong>Add a project</strong> — Select a codebase folder
</li>
<li>
<strong>Create a session</strong> — Start a new task
</li>
<li>
<strong>Describe your work</strong> — Tell Claude what you want to
build
</li>
</ol>
<h2>Workflow</h2>
<p>
<strong>Research:</strong> Claude analyzes your codebase and writes
findings to <code>research.md</code>. Add notes like{" "}
<code>// REVIEW: check this</code> — click <strong>Review</strong>{" "}
when done.
</p>
<p>
<strong>Plan:</strong> Claude drafts an implementation plan in{" "}
<code>plan.md</code> with code snippets and a TODO list. Iterate the
same way.
</p>
<p>
<strong>Implement:</strong> Claude executes the plan, marking tasks
complete as it goes.
</p>
<p className="onboarding-tip">
Iterate on research and plan docs as long as you want. Click{" "}
<strong>Submit</strong> when happy to move to the next phase.
</p>
</div>
</div>
);
}
if (phase === "implement") {
return (
<div className="document-pane">
<div className="document-header">
<span>plan.md</span>
<span className="badge">Implementing...</span>
</div>
<div className="document-content rendered">
<ReactMarkdown remarkPlugins={[remarkGfm]}>{content}</ReactMarkdown>
</div>
</div>
);
}
const filename = phase === "research" ? "research.md" : "plan.md";
return (
<div className="document-pane">
<div className="document-header">
<span>{filename}</span>
<button onClick={() => setIsEditing(!isEditing)}>
{isEditing ? "Preview" : "Edit"}
</button>
</div>
{isEditing ? (
<MarkdownEditor
content={content}
onChange={onChange}
disabled={disabled}
/>
) : (
<div
className="document-content rendered"
onClick={() => !disabled && setIsEditing(true)}
>
{content ? (
<ReactMarkdown remarkPlugins={[remarkGfm]}>{content}</ReactMarkdown>
) : (
<p className="empty">
Document will appear here after Claude generates it...
</p>
)}
</div>
)}
</div>
);
}
|