feat(providers): integrate audited free-tier gateways (#9210)

* feat(providers): add Zylo UnoRouter and Poolside registries

* feat(providers): integrate audited free-tier gateways

* feat: add wave2 free-tier provider registries

* feat(providers): add Mixlayer Speka and TokenReply registries

* feat: add wave 2 free-tier provider registries

* fix: align meganova provider slug

* feat(providers): integrate wave2 free-tier gateways

* feat(providers): add Wave 3-A free-tier registries

* feat(providers): add HelyxAI Auriko and Poixe registries

* feat(providers): add Naga AI and Chat Oripe registries

* feat(providers): integrate wave3 free-tier gateways

* feat(providers): add FreeInference registry

* feat(providers): add Free.ai registry

* feat(providers): integrate wave4 free-tier gateways

* docs: synchronize provider and free-tier inventories

* refactor(providers): split audited gateway catalog

* feat(providers): add audited Void AI and HelixMind gateways

* feat(providers): finalize audited free-tier integration

* test(providers): update APIKEY split count to 229 after rebase onto release/v3.8.50

The rebase merged the release catalog (201 APIKEY providers) with the PR's
28 free-tier additions, yielding 229 total. Correct the characterization
count so the partition assertion reflects the true merged state.

---------

Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com>
Co-authored-by: backryun <bakryun0718@proton.me>
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-08-12 16:19:25 -03:00
committed by GitHub
parent f6ccd3cf9f
commit ecc89eef14
345 changed files with 9108 additions and 9012 deletions

View File

@@ -35,11 +35,11 @@ export interface CuratedSkillEntry {
isNew?: boolean;
}
// ── Canonical 42-entry curated list (D28) ────────────────────────────────────
// ── Canonical 45-entry curated list (D28) ────────────────────────────────────
/** Curated metadata for all 42 agent skills. Source-of-truth for the catalog. */
/** Curated metadata for all 45 agent skills. Source-of-truth for the catalog. */
export const CURATED_SKILLS: CuratedSkillEntry[] = [
// ── API Skills (22) ─────────────────────────────────────────────────────────
// ── API Skills (23) ─────────────────────────────────────────────────────────
{
id: "omni-auth",
@@ -55,7 +55,7 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [
id: "omni-providers",
name: "Providers",
description:
"Manage provider connections, API keys, OAuth flows, and connection tests via the REST API. List, add, update, remove, and test AI provider integrations (OpenAI, Anthropic, Gemini, and 160+).",
"Manage provider connections, API keys, OAuth flows, and connection tests via the REST API. List, add, update, remove, and test AI provider integrations across OmniRoute's 327-provider catalog.",
category: "api",
area: "providers",
icon: "key",
@@ -73,7 +73,7 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [
id: "omni-combos-routing",
name: "Combos & Routing",
description:
"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.",
"Create and manage routing combos with 19 strategies (priority, weighted, round-robin, Auto-combo, and more). Configure fallback chains, test routing outcomes, and retrieve combo metrics.",
category: "api",
area: "combos-routing",
icon: "route",
@@ -212,7 +212,7 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [
id: "omni-mcp",
name: "MCP Server",
description:
"Connect to the OmniRoute MCP server (37 tools, 3 transports: SSE/stdio/HTTP). Covers routing, cache, compression, memory, skills, providers, and audit tools across 16 permission scopes.",
"Connect to the OmniRoute MCP server (107 tools, 3 transports: SSE/stdio/HTTP). Covers routing, cache, compression, memory, skills, providers, and audit tools across 32 permission scopes.",
category: "api",
area: "mcp",
icon: "electrical_services",
@@ -245,7 +245,7 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [
icon: "hub",
},
// ── CLI Skills (20) ──────────────────────────────────────────────────────────
// ── CLI Skills (21) ──────────────────────────────────────────────────────────
{
id: "cli-serve",
@@ -457,7 +457,7 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [
id: "omni-github-skills",
name: "GitHub Skill Discovery",
description:
"Search, score, scan, and import agent skills from GitHub repositories that contain SKILL.md, CLAUDE.md, .cursorrules, and similar agent skill files. Discover community skills across 160+ provider categories, evaluate relevance with heuristic scoring, check for malware or hardcoded secrets, and install into Hermes, Claude Code, Gemini CLI, or OpenCode agent directories.",
"Search, score, scan, and import agent skills from GitHub repositories that contain SKILL.md, CLAUDE.md, .cursorrules, and similar agent skill files. Discover community skills across many tool and provider categories, evaluate relevance with heuristic scoring, check for malware or hardcoded secrets, and install into Hermes, Claude Code, Gemini CLI, or OpenCode agent directories.",
category: "api",
area: "github-skills",
icon: "explore",

View File

@@ -34,6 +34,8 @@ export const PROVIDER_ENDPOINTS = {
"chat-oripe": "https://api.oriper.com/v1/chat/completions",
freeinference: "https://freeinference.org/v1/chat/completions",
"free-ai": "https://api.free.ai/v1/chat/",
"void-ai": "https://api.voidai.app/v1/chat/completions",
helixmind: "https://helixmind.online/v1/chat/completions",
glm: "https://api.z.ai/api/anthropic/v1/messages",
glmt: "https://api.z.ai/api/anthropic/v1/messages",
"bailian-coding-plan": "https://coding-intl.dashscope.aliyuncs.com/apps/anthropic/v1/messages",

View File

@@ -120,6 +120,8 @@ export const AGGREGATOR_PROVIDER_IDS = new Set([
"chat-oripe",
"freeinference",
"free-ai",
"void-ai",
"helixmind",
]);;

View File

@@ -63,7 +63,7 @@ export const APIKEY_PROVIDERS_FRONTIER = {
website: "https://aistudio.google.com",
hasFree: true,
freeNote:
"Free forever: 1,500 req/day for Gemini 2.5 Flash — no credit card, get key at aistudio.google.com",
"Free tier available through Google AI Studio; current per-model quotas and regional limits apply",
},
groq: {
id: "groq",
@@ -85,7 +85,8 @@ export const APIKEY_PROVIDERS_FRONTIER = {
textIcon: "BB",
website: "https://blackbox.ai",
hasFree: true,
freeNote: "Free tier: unlimited basic chat plus Minimax-M2.5, no credit card required",
freeNote:
"Limited free access is available through Blackbox; model availability and account limits apply",
},
xai: {
id: "xai",

View File

@@ -1215,4 +1215,34 @@ export const APIKEY_PROVIDERS_GATEWAYS = {
authHint:
"Get API key at naga.ac — Google/GitHub/Discord signup available.",
},
"void-ai": {
id: "void-ai",
alias: "void-ai",
name: "Void AI",
icon: "science",
color: "#111827",
textIcon: "VA",
passthroughModels: true,
website: "https://voidai.app",
hasFree: true,
freeNote:
"The public model catalog marks some models with a free plan requirement, but access is conditional and no numeric quota is confirmed.",
apiHint:
"Use https://api.voidai.app/v1 only after confirming authentication, account eligibility and terms. Treat this integration as experimental until the blocked documentation becomes public.",
},
helixmind: {
id: "helixmind",
alias: "helixmind",
name: "HelixMind",
icon: "hub",
color: "#4F46E5",
textIcon: "HM",
passthroughModels: true,
website: "https://helixmind.online",
hasFree: false,
freeNote:
"Previously circulated 3 RPM/50 RPD and no-card claims were not confirmed during the 2026-08-02 audit; current quota and billing require account verification.",
apiHint:
"Create a helix- key and use https://helixmind.online/v1. OpenAI requests use Bearer authentication; the Anthropic-compatible messages endpoint accepts x-api-key.",
},
};

View File

@@ -127,7 +127,8 @@ export const APIKEY_PROVIDERS_INFERENCE = {
textIcon: "SF",
website: "https://cloud.siliconflow.com",
hasFree: true,
freeNote: "$1 free credits plus permanently free models after identity verification",
freeNote:
"$1 free credits plus currently listed $0 models after identity verification; availability and limits may change",
},
hyperbolic: {
id: "hyperbolic",