원클릭으로
bulk-operations
Use when performing bulk operations like cleanup, delete-all, or bulk messaging
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when performing bulk operations like cleanup, delete-all, or bulk messaging
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Thorough code review covering architecture, code quality, and performance. Use when asked to "review this plan", "review code", "audit architecture", "check code quality", or "review for performance". Walks through issues interactively with tradeoff analysis and opinionated recommendations.
Manage Letta AI agent fleets with kubectl-style CLI
Use when releasing features - covers issues, branches, tests, commits, PRs, versioning, and publishing
Use when deploying agents from YAML configuration files
Use when managing individual agents - creating, updating, deleting, listing, or describing
Architecture and design patterns for lettactl. Reference when building new features, displays, or commands.
| name | bulk-operations |
| description | Use when performing bulk operations like cleanup, delete-all, or bulk messaging |
src/commands/delete.ts - delete-all commandsrc/commands/cleanup.ts - Orphaned resource cleanupsrc/lib/bulk-messenger.ts - Bulk messaging# Bulk delete agents
lettactl delete-all --pattern <regex> [-y]
lettactl delete-all --all [-y] # Delete ALL agents
# Cleanup orphaned resources
lettactl cleanup [--blocks] [--folders] [--files] [--tools] [--dry-run] [-y]
# Bulk messaging (see message-operations skill)
lettactl send --all <message>
lettactl send --pattern <regex> <message>
^test- - starts with "test-".*-dev$ - ends with "-dev"prod - contains "prod"# Delete test agents
lettactl delete-all --pattern "^test-" -y
# Preview cleanup
lettactl cleanup --dry-run
# Cleanup only orphaned blocks
lettactl cleanup --blocks -y
# Full cleanup
lettactl cleanup -y
# Broadcast to all agents
lettactl send --all "System maintenance at 2am UTC"
# Message production agents
lettactl send --pattern "^prod-" "Health check"
delete-all and cleanup require confirmation unless -y--dry-run previews without executing