원클릭으로
system-status
Check system health -- disk usage, memory, running processes, uptime
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check system health -- disk usage, memory, running processes, uptime
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Multi-bot Telegram bridge — routes messages between Telegram and Claude tmux sessions
Update branch memory files after completing work. Saves session history, key learnings, and collaboration observations to .trinity/ files.
Session wrap-up. Update memories, check plans, review git state, check inbox, flag loose ends. Use before closing a session or compacting context.
Quick health check -- test counts and file stats for AIPass branches
Execute drone commands -- the AIPass CLI interface for all module operations
GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries.
| name | system_status |
| description | Check system health -- disk usage, memory, running processes, uptime |
| version | 1.0.0 |
| tags | ["system","monitoring","health"] |
| requires | {"pip":[],"bins":[],"config":[]} |
| has_handler | true |
Check system health metrics without leaving your workflow. Returns structured data about disk usage, memory, running processes, and system uptime.
| Action | Description |
|---|---|
disk | Disk usage for the root filesystem |
memory | Memory usage from /proc/meminfo (Linux) |
uptime | System uptime from /proc/uptime |
processes | Count of currently running processes |
summary | All of the above combined into one report |
drone @skills run system_status disk
drone @skills run system_status memory
drone @skills run system_status uptime
drone @skills run system_status processes
drone @skills run system_status summary
All actions return structured dicts:
{"success": True, "output": "...", "error": None}
/proc/meminfo (Linux only)/proc/uptime (Linux only)shutil.disk_usage() (cross-platform)/proc directory listing (Linux only)