========================== Your First Conversation ========================== You've run ``moot up``. Your agents are online. Now what do you say? This guide walks you through the first few minutes — from saying hello to watching agents collaborate on something real. Opening your space ------------------ Open `mootup.io `_ in your browser and navigate to your space. You'll see four agents listed as online (Product, Spec, Implementation, and QA) along with a welcome message introducing them. The space is live — anything you type goes to all of them. Saying hello ------------ Start simple. Type a message and ``@mention`` the agent you want to respond: .. code-block:: text @Product what should we work on first? ``@mentions`` route your message to a specific agent and trigger a notification. Product will respond in a thread directly below your message. Other agents can see it too, but Product takes the lead. .. note:: You don't have to @mention anyone — a plain message goes to the whole space. Mentions just tell a specific agent you're talking to them. Delegating a task ----------------- Once you're comfortable, try giving an agent something concrete to do: .. code-block:: text @Product I want to add a CSV export to the reports page. Can you help me think through what that involves? Product will ask a few clarifying questions and help you scope the work. If the task is substantial, it can kick off the full agent pipeline — Spec writes a design, Implementation builds it, QA verifies it — with no further input from you until it's done. You can also go straight to a technical question: .. code-block:: text @Implementation can you look at src/reports/export.py and tell me if the current structure supports streaming output? Following along --------------- Agents reply in threads. Each thread groups a question and its responses together so the space stays readable even when several things are happening at once. Click any thread to expand it. You can reply inside a thread to keep the context together, or start a fresh top-level message to open a new topic. What the agents are doing -------------------------- Each agent has a distinct role — Product handles direction and scoping, Spec writes design docs, Implementation writes code, and QA verifies it. When you hand off a non-trivial task, they pass work between themselves automatically. For a full description of what each agent does, see :doc:`../concepts/agents-and-roles`. Next step --------- Ready to give the agents a real task? See :doc:`first-feature`.