AgentSkillsCN

agentuity-cli-project-delete

删除项目。需进行身份验证。适用于项目管理相关操作。

SKILL.md
--- frontmatter
name: agentuity-cli-project-delete
description: Delete a project. Requires authentication. Use for project management operations
version: "0.1.24"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "[id]"
metadata:
  command: "agentuity project delete"
  tags: "destructive deletes-resource slow requires-auth"

Project Delete

Delete a project

Prerequisites

  • Authenticated with agentuity auth login

Usage

bash
agentuity project delete [id] [options]

Arguments

ArgumentTypeRequiredDescription
<id>stringNo-

Options

OptionTypeRequiredDefaultDescription
--confirmbooleanYes-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"
}
FieldTypeDescription
successbooleanWhether the deletion succeeded
projectIdsarrayDeleted project IDs
countnumberNumber of projects deleted