Install
openclaw skills install frugal-orchestratorToken-efficient task orchestration system that delegates work to specialized subordinates while prioritizing system-level solutions over AI inference.
openclaw skills install frugal-orchestratorAI agents often waste tokens on tasks better solved by system tools (Linux commands, Python scripts). This creates unnecessary costs and slower execution.
Solution: Frugal Orchestrator v0.5.0 with intelligent task routing, caching layer, and specialized subordinate delegation.
Result: 90%+ token reduction while maintaining full functionality
Purpose: Automatically detect task type and route optimally
TaskRouterPurpose: TOON-format token metrics logging
TokenTrackerPurpose: Content-addressable result caching with TTL
CacheManagerPurpose: Resilient execution with retry/fallback chains
ErrorRecovery, FailureTypePurpose: Parallel task execution
BatchProcessorPurpose: Agent-to-Agent mesh communication
A2AAdapterPurpose: Pattern recognition for routing decisions
LearningEnginePurpose: Recurring task scheduling
SchedulerClient# Run demonstration
cd /a0/usr/projects/frugal_orchestrator/demo && bash run_demo.sh
from scripts.auto_router import TaskRouter
from scripts.cache_manager import CacheManager
from scripts.token_tracker import TokenTracker
# Initialize
router = TaskRouter(TokenTracker())
result = router.route("file_operations", task_input)
| Metric | Value |
|---|---|
| Python Modules | 10 |
| Shell Scripts | 6 |
| Total Files | 58 |
| Python LOC | 1,763 |
| Token Reduction | 90%+ |
| Feature | Token Reduction |
|---|---|
| Auto-routing | 90-95% |
| Caching | >99% for repeats |
| Batch processing | Linear scaling |
https://github.com/nelohenriq/frugal_orchestrator (v0.5.0)