원클릭으로
observability
Use when checking server health, viewing context window usage, or managing async runs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when checking server health, viewing context window usage, or managing async runs
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 | observability |
| description | Use when checking server health, viewing context window usage, or managing async runs |
src/commands/health.ts - Server health checksrc/commands/context.ts - Context window analysissrc/commands/runs.ts - Async job management# Health check
lettactl health [-q] [-v]
# Context usage
lettactl context <agent> [-o table|json|yaml]
# Async runs
lettactl runs <agent> [--limit <n>] [--status pending|running|completed|failed] [-o table|json]
ContextUsage {
total_tokens: number
max_tokens: number
usage_percent: number
breakdown: { system_prompt, memory_blocks, tool_definitions, conversation: number }
}
Run {
id: string
status: 'pending' | 'running' | 'completed' | 'failed' | 'cancelled'
created_at: string
completed_at?: string
}
# Check server
lettactl health
# View context usage
lettactl context my-agent
# Get usage as JSON
lettactl context my-agent -o json
# List recent runs
lettactl runs my-agent
# Show only failed runs
lettactl runs my-agent --status failed
# Show last 50 runs
lettactl runs my-agent --limit 50
0 - Success1 - General error2 - Connection failed3 - Auth failed4 - Agent not found