> 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: Determine Which CLI Your Project Uses ## Article: Check your Wix CLI Version ## Article Link: https://dev.wix.com/docs/wix-cli/guides/development/determine-which-cli-your-project-uses.md ## Article Content: # Determine Which CLI Your Project Uses The new Wix CLI is a unified tool for both Wix apps and Wix Headless projects. If you're working on an existing project, you can identify which CLI it uses by checking a few key indicators. ## Check your package.json Look for `@wix/astro` in your project's `devDependencies`. ```json { "devDependencies": { "@wix/astro": "^2.0.0" } } ``` ## Check for extensions.ts file Look for an `extensions.ts` file in your project's `src` folder. ``` src/ ├── extensions.ts └── ... ``` If your project has these indicators, then it uses the new Wix CLI documented in this reference. If your project doesn't have these indicators, your project uses one of the other CLI tools. To learn more, see the relevant documentation: - [Wix CLI for Apps](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/wix-cli/about-the-wix-cli-for-apps.md) - [Wix CLI for Headless](https://dev.wix.com/docs/wix-cli/legacy/wix-cli-for-headless/about-the-wix-cli-for-headless.md).