用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AIOSAI/AIPass --skill system-status命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Multi-bot Telegram bridge — routes messages between Telegram and Claude tmux sessions
Password-lock the machine's screen while every process keeps running
Update branch memory files after completing work. Saves session history, key learnings, and collaboration observations to .trinity/ files.
基于 SOC 职业分类
正在显示 SKILL.md
| 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)