# Agentuity CLI Project Delete

> Delete a project. Requires authentication. Use for project management operations

- Skill: `majiayu000/agentuity-cli-project-delete` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/agentuity-cli-project-delete`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/agentuity-cli-project-delete/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: Apache-2.0
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/agentuity-cli-project-delete

---


# Project Delete

Delete a project

## Prerequisites

- Authenticated with `agentuity auth login`

## Usage

```bash
agentuity project delete [id] [options]
```

## Arguments

| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<id>` | string | No | - |

## Options

| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--confirm` | boolean | Yes | - | Skip confirmation prompts |

## Examples

Delete item:

```bash
bunx @agentuity/cli project delete
```

Delete item:

```bash
bunx @agentuity/cli project delete proj_abc123def456
```

Use confirm option:

```bash
bunx @agentuity/cli project delete proj_abc123def456 --confirm
```

Delete item:

```bash
bunx @agentuity/cli project rm proj_abc123def456
```

Delete item:

```bash
bunx @agentuity/cli --explain project delete proj_abc123def456
```

Delete item:

```bash
bunx @agentuity/cli --dry-run project delete proj_abc123def456
```

## Output

Returns JSON object:

```json
{
  "success": "boolean",
  "projectIds": "array",
  "count": "number"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | Whether the deletion succeeded |
| `projectIds` | array | Deleted project IDs |
| `count` | number | Number of projects deleted |

