# Agentuity CLI Cloud Vector Delete

> Delete one or more vectors by key. Requires authentication. Use for Agentuity cloud platform operations

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

---


# Cloud Vector Delete

Delete one or more vectors by key

## Prerequisites

- Authenticated with `agentuity auth login`
- Project context required (run from project directory or use `--project-id`)

## Usage

```bash
agentuity cloud vector delete <namespace> <keys...> [options]
```

## Arguments

| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<namespace>` | string | Yes | - |
| `<keys...>` | array | Yes | - |

## Options

| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--confirm` | boolean | No | `false` | if true will not prompt for confirmation |

## Examples

Delete a single vector (interactive):

```bash
bunx @agentuity/cli vector delete products chair-001
```

Delete multiple vectors without confirmation:

```bash
bunx @agentuity/cli vector rm knowledge-base doc-123 doc-456 --confirm
```

Bulk delete without confirmation:

```bash
bunx @agentuity/cli vector del embeddings old-profile-1 old-profile-2 --confirm
```

## Output

Returns JSON object:

```json
{
  "success": "boolean",
  "namespace": "string",
  "keys": "array",
  "deleted": "number",
  "durationMs": "number",
  "message": "string"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | Whether the operation succeeded |
| `namespace` | string | Namespace name |
| `keys` | array | Keys that were deleted |
| `deleted` | number | Number of vectors deleted |
| `durationMs` | number | Operation duration in milliseconds |
| `message` | string | Confirmation message |

