# Agentuity CLI Profile Delete

> Delete a configuration profile

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

---


# Profile Delete

Delete a configuration profile

## Usage

```bash
agentuity profile delete [name] [options]
```

## Arguments

| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<name>` | string | No | - |

## Options

| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--confirm` | boolean | Yes | - | Skip confirmation prompt |

## Examples

Delete item:

```bash
bunx @agentuity/cli profile delete staging
```

Use confirm option:

```bash
bunx @agentuity/cli profile delete old-dev --confirm
```

Delete item:

```bash
bunx @agentuity/cli profile delete
```

## Output

Returns JSON object:

```json
{
  "success": "boolean",
  "name": "string"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | Whether deletion succeeded |
| `name` | string | Deleted profile name |

