> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Add New CLI Commands to Existing Projects ## Article: Add New CLI Commands to Existing Projects ## Article Link: https://dev.wix.com/docs/wix-cli/guides/development/add-new-cli-commands-to-existing-projects.md ## Article Content: # Add New CLI Commands to Existing Projects When a new command is introduced to the CLI, it enhances the functionality and capabilities available for development. However, it's important to note that projects created before the release of the new command won't automatically have it integrated into their environments. Instead, you need to add the new command to your `package.json` file manually before you can use it. Failure to update the `package.json` with the new command will result in errors when you attempt to use the new command. ## Adding a new command 1. Identify the new command from the [CLI Command Reference](https://dev.wix.com/docs/wix-cli/command-reference/introduction.md). 1. Open your project and locate the `package.json`. This file contains all the dependencies and configurations for your project. > **Note**: Your project's file structure is documented in [CLI Project Structure](https://dev.wix.com/docs/wix-cli/guides/get-started/project-structure.md). 1. Under the `scripts` section in the `package.json` file, add the command and a name as a key:value pair. For example: ```json "scripts": { ... "release": "wix release", ... } ``` 1. Save your changes. 1. Ensure you are using the [latest version](https://dev.wix.com/docs/wix-cli/guides/development/development-overview.md#keep-the-cli-up-to-date) of the CLI before using the new command.