원클릭으로
resource-management
Use when managing resources like memory blocks, tools, folders, files, or MCP servers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when managing resources like memory blocks, tools, folders, files, or MCP servers
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
Use when performing bulk operations like cleanup, delete-all, or bulk messaging
| name | resource-management |
| description | Use when managing resources like memory blocks, tools, folders, files, or MCP servers |
src/commands/get.ts - List resourcessrc/commands/describe.ts - Resource detailssrc/commands/delete.ts - Delete resourcessrc/commands/files.ts - Agent file statesrc/lib/block-manager.ts - Memory block opssrc/lib/resource-classifier.ts - Shared/orphaned classification# List resources
lettactl get blocks [--shared] [--orphaned] [-o table|json|yaml]
lettactl get tools [--builtin] [--custom]
lettactl get folders [--orphaned]
lettactl get files
lettactl get mcp-servers
# Describe
lettactl describe block <name>
lettactl describe tool <name>
lettactl describe folder <name>
# Delete
lettactl delete block <name> [-y] [--force]
lettactl delete tool <name> [-y]
lettactl delete folder <name> [-y]
# Agent files
lettactl files <agent>
Block { id: string; name: string; description: string; limit: number; value: string }
Tool { id: string; name: string; source_type: 'python' | 'builtin' }
Folder { id: string; name: string; files: FileInfo[] }
McpServer { id: string; name: string; type: 'sse' | 'stdio' | 'streamable_http' }
Cannot be deleted:
memory_insert, memory_replace, memory_rethink, memory, conversation_searchopen_files, grep_files, semantic_search_files# List orphaned blocks
lettactl get blocks --orphaned
# View block details
lettactl describe block company-info -o json
# Show agent's files
lettactl files my-agent
# Delete unused folder
lettactl delete folder old-docs -y