diff --git a/components/AtlasChat.tsx b/components/AtlasChat.tsx
index 94c11f8..f85b729 100644
--- a/components/AtlasChat.tsx
+++ b/components/AtlasChat.tsx
@@ -489,8 +489,44 @@ export function AtlasChat({ projectId }: AtlasChatProps) {
)}
+ {/* Quick-action chips — shown when there's a conversation and AI isn't typing */}
+ {!isEmpty && !isStreaming && (
+
+ {[
+ { label: "Give me suggestions", prompt: "Can you give me some examples or suggestions to help me think through this?" },
+ { label: "What's most important?", prompt: "What's the most important thing for me to nail down right now?" },
+ { label: "Move on", prompt: "That's enough detail for now — let's move to the next phase." },
+ ].map(({ label, prompt }) => (
+
+ ))}
+