diff --git a/docs/cody/quickstart.mdx b/docs/cody/quickstart.mdx
index 534982fd4..597221dd9 100644
--- a/docs/cody/quickstart.mdx
+++ b/docs/cody/quickstart.mdx
@@ -1,138 +1,75 @@
# Cody Quickstart
-
In this quickstart guide, you'll learn how to use Cody once you have installed the extension in your VS Code editor. Here you will perform the following three tasks:
+This quickstart guide shows how to use Cody in the VS Code editor. You'll learn about the following tasks:
-1. Generate unit tests for your code
-2. Identify errors and get suggested code fixes
-3. Add documentation to your code snippets
+- Chat with Cody to ask questions about your code
+- Code completions and suggestions
+- Use Cody to refactor code
+- Use Cody to debug code and ask Cody to fix bugs
-## Prerequisites
-
-- Make sure you have the [Cody extension installed](/cody/clients/install-vscode) in your VS Code editor
-- You have a Free or Pro account through Sourcegraph.com or a Sourcegraph Enterprise account
-- You have a project open in VS Code
-
-## Getting started with the Cody extension, prompts, and commands
-
-After installing the extension, the side activity bar will display an icon for **Cody**. Click this icon, and Cody's panel will open. This interface is used to start a **New Chat**, run Cody **commands**, prompts or get access to relevant resources.
-
-
-
-Cody supports **Prompts** and **Commands** with VS Code. These are quick, ready-to-use actions that you can apply to any code or text-based snippet you've highlighted. You can run a command in the following ways:
+There are [many ways to use Cody](/cody/clients). For this guide, we'll be using the [VS Code](/cody/clients/install-vscode) extension.
-- Highlight your code and select the command or any prompt from the sidebar
-- Press `Option+K` to run an edit command exclusively
-- Right-click on any code element and select **Cody > Choose a command** from the list
-
-## Working with the Cody extension
-
-Let's create a JavaScript function that converts a `given date` into a human-readable description of the time elapsed between the `given date` and the `current date`. This example uses a starter boilerplate code that helps you set up and run three tasks with the Cody VS Code extension.
-
-Here's the code for the date elapsed function:
-
-```js
-function getTimeAgoDescription(dateString) {
- const startDate = new Date(dateString);
- const currentDate = new Date();
-
- const years = currentDate.getFullYear() - startDate.getFullYear();
- const months = currentDate.getMonth() - startDate.getMonth();
- const days = currentDate.getDate() - startDate.getDate();
+## Prerequisites
- let timeAgoDescription = '';
+Before you start, you'll need the following:
- if (years > 0) {
- timeAgoDescription += `${years} ${years === 1 ? 'year' : 'years'}`;
- }
+- [Cody extension installed](/cody/clients/install-vscode) in your VS Code editor
+- Free or Pro account via Sourcegraph.com or a Sourcegraph Enterprise account
+- A project open in VS Code
- if (months > 0) {
- if (timeAgoDescription !== '') {
- timeAgoDescription += ' ';
- }
- timeAgoDescription += `${months} ${months === 1 ? 'month' : 'months'}`;
- }
+## Getting started with the Cody
- if (days > 0) {
- if (timeAgoDescription !== '') {
- timeAgoDescription += ' ';
- }
- timeAgoDescription += `${days} ${days === 1 ? 'day' : 'days'}`;
- }
+After installing the extension and connecting to a Sourcegraph instance, you can leverage Cody to use the best LLM and context to understand, write, and fix code. Click the **Cody** icon from the VS Code side activity bar to open the Cody chat panel.
- if (timeAgoDescription === '') {
- timeAgoDescription = 'today';
- } else {
- timeAgoDescription += ' ago';
- }
+By default, the chat input will have the context of your entire codebase, and Claude 3.5 Sonnet (New) is selected as the default chat model. Based on your [Cody tier](https://sourcegraph.com/pricing?product=cody), you can change the LLM model and context based on your use case to optimize speed, accuracy, or cost.
- return timeAgoDescription;
-}
-```
+To help you automate your key tasks in your development workflow, you get **[Prompts](/cody/capabilities/commands)**. If you are a part of an organization on Sourcegraph.com or a self-hosted Sourcegraph instance, you can view these pre-built Prompts created by your teammates. On the contrary, you can create your own Prompts via the **Prompt Library** from your Sourcegraph instance.
-## 1. Generate a unit test
+The Cody chat interface offers a few more options and settings. [You can read more in these docs](/cody/capabilities/chat).
-To ensure code quality and early bug detection, one of the most useful commands that Cody offers is **Generate unit tests**. It quickly helps you write test code for any snippet that you have highlighted. To generate a unit test for our example function:
+
-- Open the `date.js` file in VS Code
-- Highlight a code snippet that you'd like to test
-- Inside Cody chat, type `/test` or press the command hotkey (`⌥` + `c` / `alt` + `c`)
-- Select `Generate unit tests` option and hit `Enter`
+## Chat with Cody
-Cody will help you generate the following unit test in the sidebar:
+The best way to see Cody in action is through chat. Cody allows you to chat directly with AI to ask questions about your code. You can start by asking simple questions like:
-```js
-import assert from 'assert';
-import { getTimeAgoDescription } from '../src/date.js';
+- What does this code do?
+- Explain this codebase in three to four lines
-describe('getTimeAgoDescription', () => {
- it('returns correct relative time for date 1 month ago', () => {
- const oneMonthAgo = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000).toISOString().split('T')[0];
- const result = getTimeAgoDescription(oneMonthAgo);
- assert.equal(result, '1 month ago');
- });
+Or ask more complex questions like:
- it('returns correct relative time for date 2 months ago', () => {
- const twoMonthsAgo = new Date(Date.now() - 2 * 30 * 24 * 60 * 60 * 1000).toISOString().split('T')[0];
- const result = getTimeAgoDescription(twoMonthsAgo);
- assert.equal(result, '2 months ago');
- });
-});
+- Suggest ways to refactor the codebase?
+- How can I make this code more performant?
-```
+Cody will respond with a code snippet, a suggested fix, or an explanation.
-This unit test file tests the `getTimeAgoDescription()` function from the `date.js` file. These tests help you validate that the `getTimeAgoDescription()` function correctly returns the relative time descriptions for dates in the past. The tests generate specific sample input dates and confirm that the output matches the expected result.
+
-## 2. Suggest bug fixes and changes to code snippets
+## Code completions and suggestions
-Cody is very efficient at catching bugs and suggesting improvements to code snippets. To try this out, let's run our previously generated unit test and see if Cody notices any issues. Inside your VS Code terminal, run the following command to try the unit test:
+Cody helps you code faster by providing real-time single and multi-line code completions. It uses the context of the code around your cursor to make accurate suggestions and starts predicting what you're trying to write before you type it.
-```bash
-node tests/test.js
-```
+Let's try it by typing a `bubbleSort()` function in a JavaScript file.
-This results in an error, as our function does not identify the `describe` statement.
+
-
+Cody automatically predicts the function body in gray-dimmed text. Press `Tab` to accept the suggestion or `Esc` to dismiss it.
-Let's paste this error into the Cody chat and see what suggestions it provides:
+## Use Cody to refactor code
-
+You can refactor your code with inline edits. All you need to do is highlight the code, hit the edit hotkey (`Opt + K`), and describe a change. Cody will generate a diff for the change in seconds.
-Leveraging the failed test output, Cody is able to identify the potential bug and suggest a fix. It recommends installing `mocha`, importing it at the top of the `test.js` file to identify `describe`, and finally running it with `mocha`.
+Let's use the same `bubbleSort()` function from the previous section. Now, refactor the function to sort dates in descending order. Highlight the function and press `Opt + K`.
-
+
-## 3. Ask Cody to add code documentation
+Type your refactoring suggestion in the input field and press `Enter`. Cody will generate a diff for the change in seconds. You can review the diff, accept the change, reject it, or retry if you are unsatisfied with the result.
-Cody can also create well-crafted code documentation and comments, significantly improving the readability experience.
-You can add it by selecting a code snippet and running the **Document** command. Cody will add a comment to the top of the code snippet.
+## Use Cody to debug code
-## Try other commands and Cody chat
+You can ask Cody to debug your code and fix bugs. Cody chat and inline edits are both quite powerful in debugging. If you are running into a bug, you can ask Cody to debug and fix the code. If you are a VS Code user and have the Cody extension installed, you can use **code actions** to debug your code.
-That's it for this quickstart guide! Feel free to continue chatting with Cody to learn more about its [capabilities](/cody/capabilities). Cody can run some other useful commands including:
+When there is a mistake, a red warning is triggered. Along with this, you get a lightbulb icon. If you click on this lightbulb icon, there is an **Ask Cody to fix** option. Click this, and Cody will try to fix the bug with **Cody is working** notice.
+
-- Explain code snippets
-- Refactor code and variable names
-- Translate code to different languages
-- Answer general questions about your code
-- Write context-aware code with a general awareness of the broader codebase
+That's it for this quickstart guide! Feel free to continue chatting with Cody to learn more about its [capabilities](/cody/capabilities).