> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appz.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# appz project

> Learn how to list, add, remove, and manage your Appz Projects using the `appz project` CLI command.

export const GlobalOptionsComponent = ({command}) => <div>
    <h2><a href="#global-options">Global Options</a></h2>
    <p>These general options can be applied when using the <code>{command}</code> command:</p>
    <ul>
    <li><code>--cwd</code></li>
    <li><code>--debug</code></li>
    <li><code>--global-config</code></li>
    <li><code>--help</code></li>
    <li><code>--local-config</code></li>
    <li><code>--no-color</code></li>
    <li><code>--scope</code></li>
    <li><code>--token</code></li>
    </ul>

    <p>For detailed information on these global options and their applications, refer to the <a href="/cli/global-options">options section</a>.</p>
    </div>;

The `appz project` command is utilized to manage your Appz Projects, providing functionality to list, add, and remove.

## Usage

```bash terminal theme={null}
appz project ls
```

> Using the `appz project` command to list all Appz Projects.

```bash terminal theme={null}
appz project add
```

> Using the `appz project` command to create a new Appz Project.

```bash terminal theme={null}
appz project rm
```

> Using the `appz project` command to remove an Appz Project.

<GlobalOptionsComponent command={'appz project'} />
