aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/src/App.tsx
diff options
context:
space:
mode:
authorClawd <ai@clawd.bot>2026-02-28 08:11:41 -0800
committerClawd <ai@clawd.bot>2026-02-28 08:11:41 -0800
commite4b1b26c1d61854b93c2cc3cba1714df2d7417d5 (patch)
treede9cd8e341c2b0d40c08f8c1a1ac1a1585a52887 /renderer/src/App.tsx
parentae65c31bd0e6d47e98401c93a91500d0b61c50b5 (diff)
Add onboarding screen for first-time users
- Show welcome view when no project is selected - Explain the Research → Plan → Implement workflow - Include ANTHROPIC_API_KEY setup instructions - List getting started steps (add project, create session, describe work) - Explain iteration workflow with Review/Submit buttons - Add CSS styling for onboarding content
Diffstat (limited to 'renderer/src/App.tsx')
-rw-r--r--renderer/src/App.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/renderer/src/App.tsx b/renderer/src/App.tsx
index 22082a2..d5a2efd 100644
--- a/renderer/src/App.tsx
+++ b/renderer/src/App.tsx
@@ -256,6 +256,7 @@ export function App() {
256 onChange={setDocumentContent} 256 onChange={setDocumentContent}
257 phase={selectedSession?.phase || "research"} 257 phase={selectedSession?.phase || "research"}
258 disabled={!selectedSession || selectedSession.phase === "implement"} 258 disabled={!selectedSession || selectedSession.phase === "implement"}
259 showOnboarding={!selectedProject}
259 /> 260 />
260 261
261 <ChatPane 262 <ChatPane