Execute drone commands -- the AIPass CLI interface for all module operations
Scanned 9/2/2026
Install to Claude Code
npx -y skills add AIOSAI/AIPass --skill drone_commands --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Drone Commands?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aiosai-drone-commands)More formats (shields.io, HTML) on the badges page.
---
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
---
# Drone Commands Skill
Execute drone commands programmatically. Drone is the AIPass CLI router that dispatches commands to system modules.
## Available Actions
| 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`) |
## Usage
```bash
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"}'
```
## How Drone Routing Works
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
```
## Architecture
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
```
## Output Format
All actions return structured dicts:
```python
{"success": True, "output": "...", "error": None}
```
The `run` action returns the full stdout/stderr from the drone command.
## Notes
- Commands execute in the AIPASS_ROOT directory by default
- Timeout defaults to 30 seconds (configurable)
- Never runs commands that modify system state without explicit action
- All output is captured, never printed directly
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!