# Projects

Source: https://docs.elnora.ai/docs/cli/projects
Last modified: 2026-09-08T22:34:42-06:00

> Create and manage projects and their members.

Create and manage projects and their members.

## elnora projects addMember

[DEPRECATED] Add a member to a project — projects were removed; this is a no-op.

```bash
elnora projects addMember [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID |
| `role` | string | no | Role to assign (default: Member) Default: `Member`. |
| `userId` | uuid | yes | User ID to add |

## elnora projects archive

[DEPRECATED] Archive (delete) a project — projects were removed; this is a no-op.

*Destructive*

```bash
elnora projects archive [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID to archive |

## elnora projects create

[DEPRECATED] Create a new project — projects were removed; this is a no-op.

```bash
elnora projects create [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `description` | string | no | Project description |
| `icon` | string | no | Project icon |
| `name` | string | yes | Project name |

## elnora projects get

[DEPRECATED] Get details of a specific project — projects were removed; this is a no-op.

*Read-only*

```bash
elnora projects get [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID |

## elnora projects leave

[DEPRECATED] Leave a project — projects were removed; this is a no-op.

*Destructive*

```bash
elnora projects leave [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID to leave |

## elnora projects list

[DEPRECATED] List all projects accessible to the current user — projects were removed; this is a no-op.

*Read-only*

```bash
elnora projects list [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `page` | integer | no | Page number Default: `1`. |
| `pageSize` | integer | no | Results per page Default: `25`. |

## elnora projects members

[DEPRECATED] List members of a project — projects were removed; this is a no-op.

*Read-only*

```bash
elnora projects members [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID |

## elnora projects removeMember

[DEPRECATED] Remove a member from a project — projects were removed; this is a no-op.

*Destructive*

```bash
elnora projects removeMember [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID |
| `userId` | uuid | yes | User ID to remove |

## elnora projects update

[DEPRECATED] Update an existing project — projects were removed; this is a no-op.

*Idempotent*

```bash
elnora projects update [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `description` | string | no | New project description |
| `icon` | string | no | New project icon |
| `name` | string | no | New project name |
| `projectId` | uuid | yes | Project ID |

## elnora projects updateRole

[DEPRECATED] Update a project member's role — projects were removed; this is a no-op.

*Idempotent*

```bash
elnora projects updateRole [required options] [options]
```

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `projectId` | uuid | yes | Project ID |
| `role` | string | yes | New role to assign |
| `userId` | uuid | yes | User ID of the member |
