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

# submission list

> List the submission packages of a project

List the submission packages of a project, so you can find the one to inspect or update: its ID, the directory it targets, the environment it was built from, its Beacon audit, and when it last changed.

## Usage

```bash theme={null}
alpic submission list
```

Lists the packages of the project linked to the current directory, grouped by store and most recently updated first.

## Extended Usage

List the packages of a project by ID or by name:

```bash theme={null}
alpic submission list --project-id <projectId>
alpic submission list --project-name <projectName>
```

Narrow the list to one environment, or to one directory:

```bash theme={null}
alpic submission list --environment-id <environmentId>
alpic submission list --platform chatgpt
```

Pick a package out of the list without leaving the shell:

```bash theme={null}
alpic submission list --json | jq -r '.[0].id'
```

## Options

| Flag                | Description                                                           | Default |
| ------------------- | --------------------------------------------------------------------- | ------- |
| `--project-id`      | The ID of the project.                                                | —       |
| `--project-name`    | The name of the project.                                              | —       |
| `--environment-id`  | Filter by environment ID.                                             | —       |
| `--platform`        | Filter by the directory the package targets: `chatgpt` or `claudeai`. | —       |
| `--json`            | Print the unmodified API response as JSON.                            | `false` |
| `--non-interactive` | Skip interactive prompts.                                             |         |
