Agent skill
bulk-operations
Use when performing bulk operations like cleanup, delete-all, or bulk messaging
Install this agent skill to your Project
npx add-skill https://github.com/nouamanecodes/lettactl/tree/main/.skills/bulk-operations
SKILL.md
Entry Points
src/commands/delete.ts- delete-all commandsrc/commands/cleanup.ts- Orphaned resource cleanupsrc/lib/bulk-messenger.ts- Bulk messaging
Commands
# 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>
Pattern Matching
- Case-insensitive regex against agent names
^test-- starts with "test-".*-dev$- ends with "-dev"prod- contains "prod"
Examples
# 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"
Safety
delete-allandcleanuprequire confirmation unless-y--dry-runpreviews without executing- Protected tools cannot be deleted
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
lettactl
Manage Letta AI agent fleets with kubectl-style CLI
release-cycle
Use when releasing features - covers issues, branches, tests, commits, PRs, versioning, and publishing
resource-management
Use when managing resources like memory blocks, tools, folders, files, or MCP servers
fleet-deployment
Use when deploying agents from YAML configuration files
message-operations
Use when sending messages to agents, viewing conversation history, or managing message state
code-review
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.
Didn't find tool you were looking for?