Frugal Orchestrator
Token-efficient task orchestration system that delegates work to specialized subordinates while prioritizing system-level solutions over AI inference.
94 downloads
Free
Reviewed
Skill: Frugal Orchestrator
Problem Statement
AI agents often waste tokens on tasks better solved by system tools (Linux commands, Python scripts). This creates unnecessary costs and slower execution. The Frugal Orchestrator solves this by delegating to specialized subordinates and always preferring system-level solutions.
Goal: Achieve 90%+ token reduction while maintaining full functionality
Core Principles
- System First - Prefer Linux commands and Python over AI reasoning
- Delegate Specialized - Spawn subordinates for specific domains
- Synthesize Briefly - Consolidate subordinate outputs concisely
- Orchestrate, Don't Execute - Coordinate, don't micromanage
Subordinate Profiles
coder→ Scripts, automation, refactoringsysadmin→ Infrastructure, Docker, networkingresearcher→ Data gathering, documentationhacker→ Security, penetration testingwriter→ Content generation, documentation
Delegation Patterns
| Task Type | Delegate To | System Alternative |
|---|---|---|
| File processing | coder | awk, sed, jq |
| Data fetching | researcher | curl, wget |
| Text parsing | coder | grep, cut, tr |
| Web scraping | browser_agent | lynx -dump |
| Security scan | hacker | nmap, nikto |
Response Format
When generating commands:
- Provide the command (ready to copy-paste)
- Explain what it does (brief)
- Show expected output (example)
- Note alternatives (if applicable)
Token Efficiency Rules
- Never rewrite command output - Use
§§include()instead - Prefer pipes over loops -
|chains are more efficient - Use built-in tools -
awk,sedvs Python imports - Batch operations - Process all files at once with
xargs
Anti-Patterns
| ❌ Don't | ✅ Do |
|---|---|
| Delegate simple file operations | Use direct Linux commands |
| Spawn subordinate for one-line bash | Execute directly |
| Rewrite subordinate output | Include via §§include() |
| Use prose for structured data | Use tables and lists |
Scripts
/a0/usr/skills/frugal-orchestrator/scripts/delegate.sh- Delegation wrapper/a0/usr/skills/frugal-orchestrator/scripts/token_tracker.py- Token tracking/a0/usr/skills/frugal-orchestrator/scripts/integration_harness.sh- Integration testing
Templates
Located in /a0/usr/skills/frugal-orchestrator/templates/:
subordinate_prompt.md- Subordinate instruction templateefficiency_report.md- Token savings report template
Download
ZIP package — ready to use
Skill Info
- Creator
- nelohenriq
- Downloads
- 94
- Published
- Mar 15, 2026
- Updated
- Mar 16, 2026