Awesome-omni-skill flowclaw
Unkillable Agent Infrastructure. Unified usage monitoring and intelligent load balancing for Anthropic, Google, OpenAI, and Ollama. Never let your agent get stuck.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ai-agents/flowclaw" ~/.claude/skills/diegosouzapw-awesome-omni-skill-flowclaw && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/ai-agents/flowclaw" ~/.openclaw/skills/diegosouzapw-awesome-omni-skill-flowclaw && rm -rf "$T"
manifest:
skills/ai-agents/flowclaw/SKILL.mdsource content
FlowClaw — LLM Usage Monitor & Load Balancer
Track usage. Balance routing. Never waste a credit.
Unified dashboard + auto-routing for all your LLM subscriptions. Uses Earliest Deadline First scheduling — accounts resetting soonest are prioritized so unused credits aren't wasted.
Supported Providers
| Provider | Auth | Data Source |
|---|---|---|
| Anthropic Claude Max | OAuth (unlimited accounts) | |
| Google Gemini CLI | OAuth via OpenClaw | |
| Google Antigravity | codexbar | codexbar usage API |
| OpenAI Codex | OAuth via OpenClaw | |
| GitHub Copilot | OAuth via OpenClaw | |
| Ollama | Local (auto-detected) | |
Commands
# 📊 Usage Monitoring flowclaw status [--fresh] [--json] # Full provider dashboard flowclaw monitor [--json] [--cached] # Clean usage report (no scoring) # 🧠 Load Balancing flowclaw score [--json] # Scored ranking of all accounts flowclaw optimize [--dry-run] # Reorder OpenClaw model priority flowclaw auto # Optimize silently (for cron jobs) # 🛠 Utilities flowclaw test # Run scoring engine unit tests flowclaw history [N] # Routing decision history
Setup
Anthropic (Claude Max) — unlimited accounts
claude login bash {baseDir}/scripts/save-account.sh # Repeat for each account
Google Gemini CLI
openclaw models auth login --provider google-gemini-cli
Google Antigravity
openclaw models auth login --provider google-antigravity brew install --cask steipete/tap/codexbar # Required for usage metrics
OpenAI Codex
openclaw models auth login --provider openai-codex
GitHub Copilot
openclaw models auth login-github-copilot
Ollama
brew install ollama && ollama pull qwen3:235b # Auto-detected — no config needed
Cron Automation
# Optimize routing every 30 minutes */30 * * * * bash ~/clawd/skills/flowclaw/scripts/flowclaw.sh auto
Scoring Algorithm
score = urgency(0.30) + availability(0.25) + proximity(0.15) + weekly_headroom(0.20) + tier(0.10)
| Factor | Formula | Measures |
|---|---|---|
| Urgency | | Credits wasting per hour |
| Availability | | Dampened capacity |
| Proximity | | Deadline pressure |
| Weekly headroom | | 7-day capacity reserve |
| Tier bonus | Free=+0.8, Sub=0, Local=-0.3 | Cost preference |
Perishable inventory: Both 5h session and 7d weekly windows expire. When ≤6h to weekly reset, penalty is removed — burn remaining credits. Family-aware: Only swaps within same capability class (Opus↔Opus, not Opus↔Gemini).