بنقرة واحدة
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)