ソース情報
- リポジトリ
- AIOSAI/AIPass
- ソースの最終更新活動
- 2026年6月24日 21:24
- 検出された SKILL.md の言語
- 英語
- スター
- 264
- フォーク
- 36
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AIOSAI/AIPass --skill drone-commandsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 | 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.