> ## 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 teams

> Learn how to list, add, remove, and manage your teams using the `appz teams` 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 teams` command is designed to manage teams, offering capabilities to list, add, and invite new team members.

You can manage teams with additional options and more comprehensive control via the Appz Dashboard.

## Usage

```bash terminal theme={null}
appz teams list
```

> Executing the `appz teams` command to list all teams you’re a member of.

## Extended Usage

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

> Using the appz teams command to create a new team.

```bash terminal theme={null}
appz teams invite [email]
```

> Using the appz teams command to invite a new team member.

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