omni-combos-routing

Solid

Create and manage routing combos with 14 strategies (priority, weighted, round-robin, Auto-combo, etc.). Configure fallback chains, test routing outcomes, and retrieve combo metrics.

AI & Automation 6,067 stars 1058 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

<!-- generated by src/lib/agentSkills/generator.ts; manual edits will be overwritten --> ## Overview Create and manage routing combos with 14 strategies (priority, weighted, round-robin, Auto-combo, etc.). Configure fallback chains, test routing outcomes, and retrieve combo metrics. ## Authentication All requests require a valid Bearer token or session cookie. Obtain a token via `POST /api/auth/login` or configure `REQUIRE_API_KEY=false` for local development. ## Endpoints ### GET /api/combos List routing combos ```bash curl https://localhost:20128/api/combos \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" ``` ### POST /api/combos Create routing combo ```bash curl -X POST https://localhost:20128/api/combos \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" -H "Content-Type: application/json" \ -d '{}' ``` ### PATCH /api/combos/{id} Update combo ```bash curl -X PATCH https://localhost:20128/api/combos/{id} \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" -H "Content-Type: application/json" \ -d '{}' ``` ### DELETE /api/combos/{id} Delete combo ```bash curl -X DELETE https://localhost:20128/api/combos/{id} \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" ``` ### GET /api/combos/metrics Get combo metrics ```bash curl https://localhost:20128/api/combos/metrics \ -H "Authorization: Bearer $OMNIROUTE_TOKEN" ``` ### POST /api/combos/test Test a combo configuration ```bash curl -X POST https://localhost:20128/api/combos/test \ -H "Authorization: Bearer $...

Details

Author
diegosouzapw
Repository
diegosouzapw/OmniRoute
Created
3 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category