From 218b0b2f4fdf15ddff19040dc4a615d2abd6e58d Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Tue, 6 Aug 2024 09:15:37 -0700 Subject: [PATCH 1/5] Docs for Prompts and Prompt Library --- docs/cody/capabilities/commands.mdx | 16 +++++++++++++--- docs/cody/index.mdx | 4 ++-- docs/cody/quickstart.mdx | 2 +- src/data/navigation.ts | 4 ++-- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/docs/cody/capabilities/commands.mdx b/docs/cody/capabilities/commands.mdx index d08d49c4b..1ee7613e9 100644 --- a/docs/cody/capabilities/commands.mdx +++ b/docs/cody/capabilities/commands.mdx @@ -1,6 +1,14 @@ -# Commands +# Prompts -

Learn how Commands can kick-start your workflow with reusable prompts.

+

Learn how prompts and prompts library can kick-start your workflow.

+ + + + + +## Commands + +Commands are now called Prompts and will not be supported for VS Code extension `v>1.28`. Gradually, commands will be deprecated and will not be available for future VS Code extension versions. Cody offers quick, ready-to-use **commands** for common actions to write, describe, fix, and smell code. These allow you to run predefined actions with smart context-fetching anywhere in the editor. Like autocomplete and chat, commands will search for context in your codebase to provide more contextually aware and informed answers. @@ -31,7 +39,7 @@ The process of running a command varies from one IDE to another. For example, in ## Custom commands -Custom Commands are in beta. +Custom Commands are now called Prompt Library and will not be supported for VS Code extension `v>1.28`. Gradually, custom commands workflow will be deprecated and will not be available for future VS Code extension versions. **Custom Commands** allow you to create and define reusable prompts for Cody tailored to your development workflows. They are defined in `JSON` format and will enable you to call CLI tools, write custom prompts, and select context to be sent to Cody. This provides a flexible way to configure Cody to handle use cases like: @@ -274,3 +282,5 @@ See the [examples](#examples) and [configuration properties](#configuration-prop You can define custom commands for Cody in the `cody.json` file. To make commands only available for a specific project, create the `cody.json` file in that project's `.vscode` directory. When you work on that project, these workspace-specific custom commands will be available. To make custom commands globally available across multiple projects, create a new `cody.json` file in your home directory's `.vscode` folder. These global custom commands will be available in Cody in any workspace. --> */} + + diff --git a/docs/cody/index.mdx b/docs/cody/index.mdx index f9f9a7f41..4693dfff9 100644 --- a/docs/cody/index.mdx +++ b/docs/cody/index.mdx @@ -45,8 +45,8 @@ Cody's main features include: Ask Cody questions about code in the chat view, and it will use Sourcegraph’s code graph to answer using knowledge of your codebase - Commands - Cody offers quick ready-to-use commands for common actions, such as adding code documentation, generating unit tests, and detecting code smells + Prompts + Cody offers quick ready-to-use prompts for common actions, such as adding code documentation, generating unit tests, and detecting code smells Debug code diff --git a/docs/cody/quickstart.mdx b/docs/cody/quickstart.mdx index 933ed6e73..2cf43ec7f 100644 --- a/docs/cody/quickstart.mdx +++ b/docs/cody/quickstart.mdx @@ -1,6 +1,6 @@ # 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:

+

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:

1. Generate unit tests for your code 2. Identify errors and get suggested code fixes diff --git a/src/data/navigation.ts b/src/data/navigation.ts index 01278cc62..742d96275 100644 --- a/src/data/navigation.ts +++ b/src/data/navigation.ts @@ -47,8 +47,8 @@ export const navigation: NavigationItem[] = [ subsections: [ { title: "Chat", href: "/cody/capabilities/chat", }, { title: "Autocomplete", href: "/cody/capabilities/autocomplete", }, - { title: "Commands", href: "/cody/capabilities/commands", }, - { title: "OpenCtx" , href: "/cody/capabilities/openctx", }, + { title: "Prompts", href: "/cody/capabilities/commands", }, + { title: "OpenCtx", href: "/cody/capabilities/openctx", }, { title: "Debug Code", href: "/cody/capabilities/debug-code", }, { title: "Context Filters", href: "/cody/capabilities/ignore-context", }, { title: "Proxy Setup", href: "/cody/capabilities/proxy-setup", }, From 29441e9618fb11605175d29b7d11acfe3e9490a9 Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Tue, 6 Aug 2024 14:20:25 -0700 Subject: [PATCH 2/5] Add more details --- docs/cody/capabilities/commands.mdx | 56 +++++++++++++++++---- docs/cody/clients/cody-with-sourcegraph.mdx | 4 +- docs/cody/clients/feature-reference.mdx | 34 ++++++++++--- docs/cody/clients/install-vscode.mdx | 4 +- docs/cody/index.mdx | 2 +- docs/cody/quickstart.mdx | 8 +-- src/data/navigation.ts | 2 +- 7 files changed, 82 insertions(+), 28 deletions(-) diff --git a/docs/cody/capabilities/commands.mdx b/docs/cody/capabilities/commands.mdx index 1ee7613e9..09fa20cc5 100644 --- a/docs/cody/capabilities/commands.mdx +++ b/docs/cody/capabilities/commands.mdx @@ -1,15 +1,11 @@ -# Prompts +# Prompts and Commands -

Learn how prompts and prompts library can kick-start your workflow.

+

Learn how prompts and commands can kick-start your workflow.

- - - +Prompts and Prompt Library are currently only supported in the VS Code editor and the Sourcegraph web app. ## Commands -Commands are now called Prompts and will not be supported for VS Code extension `v>1.28`. Gradually, commands will be deprecated and will not be available for future VS Code extension versions. - Cody offers quick, ready-to-use **commands** for common actions to write, describe, fix, and smell code. These allow you to run predefined actions with smart context-fetching anywhere in the editor. Like autocomplete and chat, commands will search for context in your codebase to provide more contextually aware and informed answers. Commands are available in VS Code, JetBrains, and the Sourcegraph web app. Commands can handle tasks like: @@ -39,7 +35,7 @@ The process of running a command varies from one IDE to another. For example, in ## Custom commands -Custom Commands are now called Prompt Library and will not be supported for VS Code extension `v>1.28`. Gradually, custom commands workflow will be deprecated and will not be available for future VS Code extension versions. +Custom Commands are currently in Beta and only supported in VS Code. **Custom Commands** allow you to create and define reusable prompts for Cody tailored to your development workflows. They are defined in `JSON` format and will enable you to call CLI tools, write custom prompts, and select context to be sent to Cody. This provides a flexible way to configure Cody to handle use cases like: @@ -82,7 +78,7 @@ If you select **User Settings**, the new custom command will only be available t See the [examples](#examples) and [configuration properties](#configuration-properties) below for more details on configuring custom commands. -### Examples + ### `commit-message` @@ -174,7 +170,9 @@ See the [examples](#examples) and [configuration properties](#configuration-prop } ``` -### Configuration properties + + + #### `commands` (required) @@ -284,3 +282,41 @@ You can define custom commands for Cody in the `cody.json` file. To make command To make custom commands globally available across multiple projects, create a new `cody.json` file in your home directory's `.vscode` folder. These global custom commands will be available in Cody in any workspace. --> */} + +## Prompts + +Prompts and Prompts Library are currently available in Cody's VS Code extension and the Sourcegraph Web UI. + +Apart from these ready-to-use commands, you can create your own prompts from the **Prompt Library** via the Sourcegraph's Web UI. From here, you can easily create, edit, share, and discover prompts you’ve created or have been shared within your organization. + +## Prompt Library + +The Prompt Library can be accessed from the **Tools > Prompt Library** in the top navigation bar in Sourcegraph's web UI. From here, you can view, create or edit a prompt. You can also search for prompts, filter the list to find a specific prompt by owner, and sort by name or recently updated. + +![prompt-library-overview](https://storage.googleapis.com/sourcegraph-assets/Docs/prompt-library-overview-0824.png) + +### Create and edit a prompt + +Click the **New prompt** button on the **Prompt Library** page to create a new prompt. + +- Select the **Owner** and **Name** of the prompt +- Then, write a prompt description +- And finally, fill out the **Prompt template** box with all your prompt instructions +- Moreover, you can mark your prompt as **Draft**. This would prevent it from being available to other users +- Once done, click the **Create prompt** button + +Completing this process will do the following: + +- The new prompt will be added to the **Prompt Library** page +- If it's not a draft, it will be available to other users in your organization +- The prompt will start appearing via your connected Sourcegraph instance inside Cody's VS Code extension and the Sourcegraph Web UI + +#### VIDEO DEMO TO CREATE A Prompt + +To edit a prompt, click the Edit button next to the prompt in the Prompt Library and make the necessary changes. You can also use this interface to **transfer ownership** of the prompt or delete it from this view. + +### Using prompts + +Prompts work in the same way as commands. Inside Cody's chat window there is a drop-down called **Prompts** next to the LLM selector. Use this to select a prompt and run on your codebase. + +#### VIDEO DEMO TO USE A Prompt diff --git a/docs/cody/clients/cody-with-sourcegraph.mdx b/docs/cody/clients/cody-with-sourcegraph.mdx index 32bff38f3..6e30826a9 100644 --- a/docs/cody/clients/cody-with-sourcegraph.mdx +++ b/docs/cody/clients/cody-with-sourcegraph.mdx @@ -61,6 +61,6 @@ If Cody's answer isn't helpful, you can try asking again with a different contex ![re-run-prompts](https://storage.googleapis.com/sourcegraph-assets/Docs/rerun-prompt-web-0724.jpg) -## Commands +## Prompts -Commands and Custom Commands are not supported in Cody for Web. If you want to run these, it's recommended that you use Cody with the IDE editor extensions (VS Code and JetBrains). However, the plain **Explain** command would work if you type `@mention explain this code` in the chat window. +Prompts and the Prompt Library are supported in Cody for Web. You can access these from the **Prompts** selector drop-down in the chat interface. Read more about Prompts and the Prompt Library [here](/cody/capabilities/commands#custom-commands). diff --git a/docs/cody/clients/feature-reference.mdx b/docs/cody/clients/feature-reference.mdx index 6493952c5..77499d3a1 100644 --- a/docs/cody/clients/feature-reference.mdx +++ b/docs/cody/clients/feature-reference.mdx @@ -60,6 +60,12 @@ | Improve variable names | ❌ | ❌ | ❌ | ✅ | | Ollama support (experimental) | ✅ | ✅ | ❌ | ❌ | +## Prompts and Prompt Library + +| **Feature** | **VS Code** | **JetBrains** | **Neovim** | **Web** | +| ------------------------------------ | ----------- | ------------- | ---------- | ------- | +| Access to prompts and prompt library | ✅ | ❌ | ❌ | ✅ | + @@ -116,6 +122,12 @@ | Improve variable names | ❌ | ❌ | ❌ | ✅ | | Ollama support (experimental) | ✅ | ✅ | ❌ | ❌ | +## Prompts and Prompt Library + +| **Feature** | **VS Code** | **JetBrains** | **Neovim** | **Web** | +| ------------------------------------ | ----------- | ------------- | ---------- | ------- | +| Access to prompts and prompt library | ✅ | ❌ | ❌ | ✅ | + @@ -136,14 +148,14 @@ ### Context Selection -| **Feature** | **VS Code** | **JetBrains** | **Neovim** | **Web** | -| ------------------------------------ | ----------- | ------------- | ---------- | ------- | -| Single-repo context | ✅ | ✅ | ✅ | ✅ | -| Multi-repo context | ✅ | ✅ | ❌ | ✅ | -| Local context | ✅ | ✅ | ❌ | ❌ | -| Embeddings | ❌ | ❌ | ❌ | ❌ | -| Guardrails | ✅ | ✅ | ❌ | ✅ | -| Repo-based Cody Context Filters | ✅ | ✅ | ❌ | ✅ | +| **Feature** | **VS Code** | **JetBrains** | **Neovim** | **Web** | +| ------------------------------- | ----------- | ------------- | ---------- | ------- | +| Single-repo context | ✅ | ✅ | ✅ | ✅ | +| Multi-repo context | ✅ | ✅ | ❌ | ✅ | +| Local context | ✅ | ✅ | ❌ | ❌ | +| Embeddings | ❌ | ❌ | ❌ | ❌ | +| Guardrails | ✅ | ✅ | ❌ | ✅ | +| Repo-based Cody Context Filters | ✅ | ✅ | ❌ | ✅ | @@ -178,5 +190,11 @@ | Improve variable names | ❌ | ❌ | ❌ | ✅ | | Admin LLM selection | ✅ | ✅ | ✅ | ✅ | +## Prompts and Prompt Library + +| **Feature** | **VS Code** | **JetBrains** | **Neovim** | **Web** | +| ------------------------------------ | ----------- | ------------- | ---------- | ------- | +| Access to prompts and prompt library | ✅ | ❌ | ❌ | ✅ | + diff --git a/docs/cody/clients/install-vscode.mdx b/docs/cody/clients/install-vscode.mdx index 97ebc06fc..723460172 100644 --- a/docs/cody/clients/install-vscode.mdx +++ b/docs/cody/clients/install-vscode.mdx @@ -239,9 +239,9 @@ For repos mentioned in the `exclude` field, Cody's commands are disabled, and yo [Read more about the Cody Context Filters here →](/cody/capabilities/ignore-context) -## Commands +## Prompts and Commands -Cody offers quick, ready-to-use [Commands](/cody/capabilities/commands) for common actions to write, describe, fix, and smell code. These allow you to run predefined actions with smart context-fetching anywhere in the editor, like: +Cody offers quick, ready-to-use [Prompts and Commands](/cody/capabilities/commands) for common actions to write, describe, fix, and smell code. These allow you to run predefined actions with smart context-fetching anywhere in the editor, like: - **New Chat**: Ask Cody a question - **Document Code**: Add code documentation diff --git a/docs/cody/index.mdx b/docs/cody/index.mdx index 4693dfff9..4064259cf 100644 --- a/docs/cody/index.mdx +++ b/docs/cody/index.mdx @@ -45,7 +45,7 @@ Cody's main features include: Ask Cody questions about code in the chat view, and it will use Sourcegraph’s code graph to answer using knowledge of your codebase - Prompts + Prompts & Commands Cody offers quick ready-to-use prompts for common actions, such as adding code documentation, generating unit tests, and detecting code smells diff --git a/docs/cody/quickstart.mdx b/docs/cody/quickstart.mdx index 2cf43ec7f..42921b47b 100644 --- a/docs/cody/quickstart.mdx +++ b/docs/cody/quickstart.mdx @@ -12,15 +12,15 @@ - 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 and commands +## 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** or get access to relevant resources. +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 icon in side activity bar ](https://storage.googleapis.com/sourcegraph-assets/Docs/cody-sidebar-0724.jpg) -Cody supports **Commands** with VS Code. These are quick, ready-to-use prompt actions that you can apply to any code or text-based snippet you've highlighted. You can run a command in the following ways: +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: -- Highlight your code and select the command from the sidebar +- Highlight your code and select the command or any prompt from the drop-down ![running-commands](https://storage.googleapis.com/sourcegraph-assets/Docs/using-commands-0724.jpg) diff --git a/src/data/navigation.ts b/src/data/navigation.ts index 742d96275..6211b23b6 100644 --- a/src/data/navigation.ts +++ b/src/data/navigation.ts @@ -47,7 +47,7 @@ export const navigation: NavigationItem[] = [ subsections: [ { title: "Chat", href: "/cody/capabilities/chat", }, { title: "Autocomplete", href: "/cody/capabilities/autocomplete", }, - { title: "Prompts", href: "/cody/capabilities/commands", }, + { title: "Prompts & Commands", href: "/cody/capabilities/commands", }, { title: "OpenCtx", href: "/cody/capabilities/openctx", }, { title: "Debug Code", href: "/cody/capabilities/debug-code", }, { title: "Context Filters", href: "/cody/capabilities/ignore-context", }, From ee5674f67e88551d01e02caff4e3099a06741c53 Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Wed, 7 Aug 2024 11:47:20 -0700 Subject: [PATCH 3/5] Change order of prompts and commands --- docs/cody/capabilities/commands.mdx | 76 ++++++++++++++--------------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/docs/cody/capabilities/commands.mdx b/docs/cody/capabilities/commands.mdx index 09fa20cc5..9aacc4692 100644 --- a/docs/cody/capabilities/commands.mdx +++ b/docs/cody/capabilities/commands.mdx @@ -2,7 +2,43 @@

Learn how prompts and commands can kick-start your workflow.

-Prompts and Prompt Library are currently only supported in the VS Code editor and the Sourcegraph web app. +## Prompts + +Prompts and Prompts Library are currently available in Cody's VS Code extension and the Sourcegraph Web UI. + +Apart from these ready-to-use commands, you can create your own prompts from the **Prompt Library** via the Sourcegraph's Web UI. From here, you can easily create, edit, share, and discover prompts you’ve created or have been shared within your organization. + +## Prompt Library + +The Prompt Library can be accessed from the **Tools > Prompt Library** in the top navigation bar in Sourcegraph's web UI. From here, you can view, create or edit a prompt. You can also search for prompts, filter the list to find a specific prompt by owner, and sort by name or recently updated. + +![prompt-library-overview](https://storage.googleapis.com/sourcegraph-assets/Docs/prompt-library-overview-0824.png) + +### Create and edit a prompt + +Click the **New prompt** button on the **Prompt Library** page to create a new prompt. + +- Select the **Owner** and **Name** of the prompt +- Then, write a prompt description +- And finally, fill out the **Prompt template** box with all your prompt instructions +- Moreover, you can mark your prompt as **Draft**. This would prevent it from being available to other users +- Once done, click the **Create prompt** button + +Completing this process will do the following: + +- The new prompt will be added to the **Prompt Library** page +- If it's not a draft, it will be available to other users in your organization +- The prompt will start appearing via your connected Sourcegraph instance inside Cody's VS Code extension and the Sourcegraph Web UI + +#### VIDEO DEMO TO CREATE A Prompt + +To edit a prompt, click the Edit button next to the prompt in the Prompt Library and make the necessary changes. You can also use this interface to **transfer ownership** of the prompt or delete it from this view. + +### Using prompts + +Prompts work in the same way as commands. Inside Cody's chat window there is a drop-down called **Prompts** next to the LLM selector. Use this to select a prompt and run on your codebase. + +#### VIDEO DEMO TO USE A Prompt ## Commands @@ -282,41 +318,3 @@ You can define custom commands for Cody in the `cody.json` file. To make command To make custom commands globally available across multiple projects, create a new `cody.json` file in your home directory's `.vscode` folder. These global custom commands will be available in Cody in any workspace. --> */}
- -## Prompts - -Prompts and Prompts Library are currently available in Cody's VS Code extension and the Sourcegraph Web UI. - -Apart from these ready-to-use commands, you can create your own prompts from the **Prompt Library** via the Sourcegraph's Web UI. From here, you can easily create, edit, share, and discover prompts you’ve created or have been shared within your organization. - -## Prompt Library - -The Prompt Library can be accessed from the **Tools > Prompt Library** in the top navigation bar in Sourcegraph's web UI. From here, you can view, create or edit a prompt. You can also search for prompts, filter the list to find a specific prompt by owner, and sort by name or recently updated. - -![prompt-library-overview](https://storage.googleapis.com/sourcegraph-assets/Docs/prompt-library-overview-0824.png) - -### Create and edit a prompt - -Click the **New prompt** button on the **Prompt Library** page to create a new prompt. - -- Select the **Owner** and **Name** of the prompt -- Then, write a prompt description -- And finally, fill out the **Prompt template** box with all your prompt instructions -- Moreover, you can mark your prompt as **Draft**. This would prevent it from being available to other users -- Once done, click the **Create prompt** button - -Completing this process will do the following: - -- The new prompt will be added to the **Prompt Library** page -- If it's not a draft, it will be available to other users in your organization -- The prompt will start appearing via your connected Sourcegraph instance inside Cody's VS Code extension and the Sourcegraph Web UI - -#### VIDEO DEMO TO CREATE A Prompt - -To edit a prompt, click the Edit button next to the prompt in the Prompt Library and make the necessary changes. You can also use this interface to **transfer ownership** of the prompt or delete it from this view. - -### Using prompts - -Prompts work in the same way as commands. Inside Cody's chat window there is a drop-down called **Prompts** next to the LLM selector. Use this to select a prompt and run on your codebase. - -#### VIDEO DEMO TO USE A Prompt From be86d15cc9ebd46f059b3ef2a5200c162335b426 Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Wed, 7 Aug 2024 13:49:09 -0700 Subject: [PATCH 4/5] Improve context --- docs/cody/capabilities/commands.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/cody/capabilities/commands.mdx b/docs/cody/capabilities/commands.mdx index 9aacc4692..c27e2555c 100644 --- a/docs/cody/capabilities/commands.mdx +++ b/docs/cody/capabilities/commands.mdx @@ -30,7 +30,7 @@ Completing this process will do the following: - If it's not a draft, it will be available to other users in your organization - The prompt will start appearing via your connected Sourcegraph instance inside Cody's VS Code extension and the Sourcegraph Web UI -#### VIDEO DEMO TO CREATE A Prompt +![prompts-in-vscode](https://storage.googleapis.com/sourcegraph-assets/Docs/prompts-ui-vscode-082024.png) To edit a prompt, click the Edit button next to the prompt in the Prompt Library and make the necessary changes. You can also use this interface to **transfer ownership** of the prompt or delete it from this view. @@ -38,7 +38,7 @@ To edit a prompt, click the Edit button next to the prompt in the Prompt Library Prompts work in the same way as commands. Inside Cody's chat window there is a drop-down called **Prompts** next to the LLM selector. Use this to select a prompt and run on your codebase. -#### VIDEO DEMO TO USE A Prompt +![prompts-in-dropdown](https://storage.googleapis.com/sourcegraph-assets/Docs/using-prompts.png) ## Commands @@ -73,7 +73,7 @@ The process of running a command varies from one IDE to another. For example, in Custom Commands are currently in Beta and only supported in VS Code. -**Custom Commands** allow you to create and define reusable prompts for Cody tailored to your development workflows. They are defined in `JSON` format and will enable you to call CLI tools, write custom prompts, and select context to be sent to Cody. This provides a flexible way to configure Cody to handle use cases like: +**Custom Commands** allow you to create and define reusable [Prompts](#prompts) for Cody tailored to your development workflows. They are defined in `JSON` format and will enable you to call CLI tools, write custom prompts, and select context to be sent to Cody. This provides a flexible way to configure Cody to handle use cases like: - Integrate with your build system to suggest fixes for errors/warnings in the latest build - Analyze software dependencies output to explain compatibility or suggest upgrades From 731ff405886dde2fb9f9afdfa5b84e6ae4f361ec Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Wed, 7 Aug 2024 13:50:30 -0700 Subject: [PATCH 5/5] Add callouts --- docs/cody/capabilities/commands.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/cody/capabilities/commands.mdx b/docs/cody/capabilities/commands.mdx index c27e2555c..fc34ccd54 100644 --- a/docs/cody/capabilities/commands.mdx +++ b/docs/cody/capabilities/commands.mdx @@ -318,3 +318,5 @@ You can define custom commands for Cody in the `cody.json` file. To make command To make custom commands globally available across multiple projects, create a new `cody.json` file in your home directory's `.vscode` folder. These global custom commands will be available in Cody in any workspace. --> */} + +Commands and Custom Commands are soon going to be replaced by [Prompts](#prompts) and [Prompt Library](#prompt-library) in the coming future.