smithery.ai

agentuity-cli-cloud-vector-delete

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

First seen Apr 5, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.24
LicenseApache-2.0
Allowed toolsBash(agentuity:*)
More metadata
command
agentuity cloud vector delete
tags
destructive deletes-resource slow requires-auth

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,906 B
  • docs SUMMARY.md 144 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Cloud Vector Delete

Delete one or more vectors by key

Prerequisites

  • Authenticated with agentuity auth login

Usage

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):

bunx @agentuity/cli vector delete products chair-001

Delete multiple vectors without confirmation:

bunx @agentuity/cli vector rm knowledge-base doc-123 doc-456 --confirm

Bulk delete without confirmation:

bunx @agentuity/cli vector del embeddings old-profile-1 old-profile-2 --confirm

Output

Returns JSON object:

{
  "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