From e4b1b26c1d61854b93c2cc3cba1714df2d7417d5 Mon Sep 17 00:00:00 2001 From: Clawd Date: Sat, 28 Feb 2026 08:11:41 -0800 Subject: Add onboarding screen for first-time users MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- renderer/src/App.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'renderer/src/App.tsx') 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() { onChange={setDocumentContent} phase={selectedSession?.phase || "research"} disabled={!selectedSession || selectedSession.phase === "implement"} + showOnboarding={!selectedProject} />