diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx
index 9468c09..ed58535 100644
--- a/docs/quickstart.mdx
+++ b/docs/quickstart.mdx
@@ -23,35 +23,43 @@ This guide takes you from no account to a coding agent deploying on InstaCloud.
- Copy the line from the console, or use either form below with your project id.
+ Copy the prompt or the command from the console, or use either form below with your project id.
- ```bash title="One command"
- npx -y insta@latest setup agent --project
+ ```text title="Prompt" wrap
+ Fetch and execute the appropriate instructions to set me up for InstaCloud from https://instacloud.com/prompt.md. Project id: .
```
- ```text title="One prompt" wrap
- Fetch and execute the appropriate instructions to set me up for InstaCloud from https://instacloud.com/prompt.md. Project id: .
+ ```bash title="CLI"
+ npx -y insta@latest setup agent --project
```
- Both paths do the same work. The `insta` CLI is installed globally, the `insta` skill and the remote MCP server are registered for every coding agent on this machine, the console opens in your browser once so you can approve the sign-in, and the current directory is linked to the project. The command is safe to run again.
+ Both do the same work. The `insta` CLI is installed globally, the `insta` skill and the remote MCP server are registered for every coding agent on this machine, the console opens in your browser once so you can approve the sign-in, and the current directory is linked to the project. Both are safe to run again.
- The command targets production. Machines without Node, native Windows shells, and the staging deployment are covered in [Set up your coding agent](/agents/setup).
+ Setup targets production. Machines without Node, native Windows shells, and the staging deployment are covered in [Set up your coding agent](/agents/setup).
- Check the CLI first:
+ Start a new agent session so it picks up the MCP server, then ask it to check the wiring. Or run the check yourself.
- ```bash
+
+
+ ```text title="Prompt" wrap
+ Check my InstaCloud setup: run insta status and call insta_whoami.
+ ```
+
+ ```bash title="CLI"
insta status
```
- It prints the environment, the signed-in user, and the linked project and branch:
+
+
+ Either way you should see the environment, the signed-in user, and the linked project and branch:
```text
env: prod
@@ -60,13 +68,7 @@ This guide takes you from no account to a coding agent deploying on InstaCloud.
project: 7d3c2a10-5b8e-4f61-9a2c-0e4f6b1d8c35 (branch main)
```
- Then start a new session in your agent and send it this prompt:
-
- ```text wrap
- Check my InstaCloud setup: run insta status and call insta_whoami.
- ```
-
- If both answer, the CLI, the skill, and the MCP server are all wired. In Claude Code, `claude mcp list` also shows `insta-cloud` as connected.
+ If the agent gets answers from both `insta status` and `insta_whoami`, the CLI, the skill, and the MCP server are all wired. In Claude Code, `claude mcp list` also shows `insta-cloud` as connected.
@@ -91,7 +93,7 @@ This guide takes you from no account to a coding agent deploying on InstaCloud.
The agent adds the services, wires the database credentials into compute, and deploys. When it finishes it reports the service URL. You approve the sign-in, and the agent drives the rest.
-
+
The same commands work by hand:
```bash