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

# Creating & Cloning Projects

Almost all CLI operations need to be performed within a *local project* directory. A local project directory can be created by cloning a RedBrick AI project, or by creating a new project using the CLI.&#x20;

## Creating a New Project

To create a new project, first navigate to an empty directory. We recommend *creating a new* directory, and naming it after your new project.

```bash theme={null}
$ mkdir my-new-project
$ cd my-new-project
```

Now to create a new project, simply run:&#x20;

```bash theme={null}
$ redbrick init
> Name: my-new-project
> Taxonomy: my-taxonomy-name
> Reviews: 1
```

You can now verify your current directory is a *local project directory* by doing:&#x20;

```bash theme={null}
$ redbrick info
                 Organization                  
╭──────┬──────────────────────────────────────╮
│ ID   │               ...                    │
│ Name │ My Organization                      │
╰──────┴──────────────────────────────────────╯
                                    Project                                     
╭──────────┬───────────────────────────────────────────────────────────────────╮
│ ID       │ ...                                                               │
│ Name     │ my-new-project                                                    │
│ Taxonomy │ my-taxonomy-name                                                  │
│ URL      │ https://app.redbrickai.com/.../projects/.../                      │
╰──────────┴───────────────────────────────────────────────────────────────────╯
```

## Clone an Existing Project

You can clone an existing project that you (or someone else) created.&#x20;

```bash theme={null}
$ redbrick clone 
> Project: 
❯ 3/3
❯ my-new-project (...)
  my-first-project (...)
  my-old-project (...)
```

You can directly clone a project using its project ID.

```bash theme={null}
$ redbrick clone PROJECTID # replace PROJECTID with your project's ID
```

The project will now be cloned **in a directory named after your project** (within your current working directory).&#x20;
