一键导入
drone-commands
Execute drone commands -- the AIPass CLI interface for all module operations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute drone commands -- the AIPass CLI interface for all module operations
用 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
GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries.
Check ai_mail inbox status across AIPass branches
| name | drone_commands |
| description | Execute drone commands -- the AIPass CLI interface for all module operations |
| version | 1.0.0 |
| tags | ["system","cli","drone","aipass"] |
| requires | {"pip":[],"bins":[],"config":[]} |
| has_handler | true |
Execute drone commands programmatically. Drone is the AIPass CLI router that dispatches commands to system modules.
| Action | Description |
|---|---|
run | Execute an arbitrary drone command string |
list | List all available drone modules (drone systems) |
help | Get help for a specific module (drone @module --help) |
drone @skills run drone_commands run --args '{"command": "drone @ai_mail inbox"}'
drone @skills run drone_commands list
drone @skills run drone_commands help --args '{"module": "ai_mail"}'
Drone uses @module syntax to route commands to the correct system module:
drone @ai_mail inbox -> routes to ai_mail module
drone @skills list -> routes to skills module
drone @devpulse dashboard -> routes to devpulse module
drone commons feed -> special case (no @ prefix)
drone systems -> lists all registered modules
This skill follows the AIPass 3-layer pattern:
drone_commands/
SKILL.md # This file
handler.py # Top-level handler (delegates to apps/)
apps/
modules/
command_runner.py # Orchestrates drone command execution
handlers/
executor.py # Runs commands via subprocess
parser.py # Parses drone output
All actions return structured dicts:
{"success": True, "output": "...", "error": None}
The run action returns the full stdout/stderr from the drone command.