> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/sdk/getting-started/move-sdk-cli.md).

# Move SDK CLI

MOVE SDK CLI is a command-line interface (CLI) for the MOVE SDK. It provides various commands to interact with the SDK, such as creating a project, listing projects, logging in and out, and more.

#### Installation

You can install MOVE SDK CLI via npm. Make sure you have Node.js and npm installed on your system before proceeding.

```bash
npm install movesdk-cli
```

#### Usage

Here are some of the commands you can use:

* **clone**: Clones the test projects.
* **login**: Logs in to the MOVE SDK CLI.
* **logout**: Logs out from the MOVE SDK CLI.
* **projects**: Lists the projects.
* **create-project**: Creates a new project.
* **delete-project**: Deletes a project.
* **services**: Lists the services.
* **help**: Opens the MOVE documentation.
* **open-project**: Opens the MOVE dashboard.
* **keys**: List move sdk project keys

For example, to create a new project, you would run:

```bash
movesdk create-project
```

***

This documentation provides an overview of the available commands and their usage. For detailed information on each command and additional examples, please refer to the MOVE SDK documentation.

This is a command-line interface (CLI) for the MOVE SDK. It provides various commands to interact with the SDK, such as creating a project, listing projects, logging in and out, and more.

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.movesdk.com/move-platform/sdk/getting-started/move-sdk-cli.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
