Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 01-setup-and-first-steps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@ Plan mode helps you create a step-by-step plan before writing any code. Use the

> 💡 **Tip**: **Shift+Tab** cycles between modes: Interactive → Plan → Autopilot. Press it anytime during an interactive session to switch modes without typing a command.

> 💡 **Startup shortcut**: You can launch the CLI directly in Plan mode from your terminal using the `--plan` flag — great when you already know what you want to plan:
> 💡 **Startup shortcut**: You can launch the CLI directly in Plan mode from your terminal using the `--plan` flag.
> ```bash
> copilot --plan "Add a mark as read command to the book app"
> copilot --plan
> ```
Comment on lines +279 to 282
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The startup shortcut example (copilot --plan) doesn’t show what the user should type next to actually create a plan. Consider either keeping the previous one-liner with an example prompt, or extending the snippet to include the first prompt entered after startup so readers can see the intended flow.

See below for a potential fix:

> 💡 **Startup shortcut**: You can launch the CLI directly in Plan mode from your terminal using the `--plan` flag, then enter your planning request:
> ```bash
> copilot --plan
>
> > Add a "mark as read" command to the book app

Copilot uses AI. Check for mistakes.

```bash
Expand Down
Loading