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

# repr repos

> Manage tracked repositories

Manage which git repositories repr is watching.

## Usage

```bash theme={null}
repr repos [ACTION] [PATH]
```

## Actions

| Action          | Description                               |
| --------------- | ----------------------------------------- |
| `list`          | (Default) List all tracked repositories.  |
| `add <path>`    | Add a repository to track.                |
| `remove <path>` | Stop tracking a repository.               |
| `pause <path>`  | Temporarily stop tracking (keeps config). |
| `resume <path>` | Resume tracking.                          |

## Examples

Add a new project:

```bash theme={null}
repr repos add ~/code/new-project
```

Stop tracking a project:

```bash theme={null}
repr repos remove ~/code/old-project
```
