Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# fusionAIze Gate Changelog

## Unreleased

### Changed

- Reframed Claude-native bridge model aliases around routing intent instead of direct frontier spend: built-in Claude Code model ids now resolve to `auto`, `premium`, or `eco` so Gate can still choose the cheapest capable route for the request
- Tightened the shipped config and integration examples around coding auto modes, so `claude`, `opencode`, `openclaw`, and related coding clients can share clearer `coding-auto`, `coding-fast`, and `coding-premium` entry points instead of muddled provider-first defaults
- Updated the roadmap and implementation plan to prioritize cost-aware coding auto modes first, then stronger product surfaces and licensing-aware stack boundaries for Gate as a standalone product
- Added a dedicated dashboard IA document so the next web and shell dashboard work is grouped around operator jobs such as overview, providers, clients, routes, analytics, request log, integrations, and troubleshooting instead of one long admin surface

## v1.13.0 - 2026-03-30

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ Start here for the deeper deployment details:
- [Publishing](./docs/PUBLISHING.md)
- [Troubleshooting](./docs/TROUBLESHOOTING.md)
- [Adaptive model orchestration](./docs/ADAPTIVE-ORCHESTRATION.md)
- [Dashboard IA](./docs/DASHBOARD-IA.md)
- [Roadmap](./docs/FAIGATE-ROADMAP.md)
- [Implementation plan](./docs/IMPLEMENTATION-PLAN.md)
- [Claude Desktop feasibility](./docs/CLAUDE-DESKTOP-FEASIBILITY.md)
Expand Down
120 changes: 72 additions & 48 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,9 @@ client_profiles:
- default
routing_mode: eco
claude:
prefer_tiers:
- default
- mid
- high
- reasoning
routing_mode: auto
routing_mode: coding-auto
codex:
prefer_providers:
- deepseek-chat
- anthropic-haiku
- gemini-flash
prefer_tiers:
- default
- mid
routing_mode: auto
routing_mode: coding-auto
deepseek-cli:
prefer_providers:
- deepseek-chat
Expand All @@ -87,35 +75,14 @@ client_profiles:
- mid
routing_mode: auto
kilocode:
prefer_tiers:
- default
- mid
- high
- reasoning
routing_mode: auto
routing_mode: coding-fast
openclaw:
prefer_tiers:
- default
- reasoning
routing_mode: auto
routing_mode: coding-auto
opencode:
prefer_tiers:
- default
- mid
- high
- reasoning
routing_mode: auto
routing_mode: coding-auto
# ── opencode named profiles (selectable as model in opencode UI) ─────────
coding:
prefer_providers:
- deepseek-reasoner
- deepseek-chat
- anthropic-haiku
prefer_tiers:
- reasoning
- default
- mid
routing_mode: auto
routing_mode: coding-auto
coding-free:
prefer_providers:
- kilocode
Expand All @@ -126,15 +93,7 @@ client_profiles:
- cheap
routing_mode: free
research:
prefer_providers:
- gemini-pro-high
- anthropic-sonnet
- anthropic-claude
prefer_tiers:
- high
- premium
- mid
routing_mode: auto
routing_mode: premium
rules:
- match:
any:
Expand Down Expand Up @@ -929,6 +888,14 @@ anthropic_bridge:
claude-code: auto
claude-code-fast: eco
claude-code-premium: premium
claude-sonnet-4-6: auto
claude-sonnet-4-6-20251001: auto
claude-sonnet-4-6[1m]: auto
claude-opus-4-6: premium
claude-opus-4-6-20251001: premium
claude-opus-4-6[1m]: premium
claude-haiku-4-5: eco
claude-haiku-4-5-20251001: eco
routing_modes:
default: auto
enabled: true
Expand All @@ -943,6 +910,63 @@ routing_modes:
- default
- reasoning
- mid
coding-auto:
aliases:
- code-auto
- dev-auto
best_for: Daily coding with strong cost control
description: Cheapest capable coding route
savings: High savings
select:
capability_values:
cost_tier:
- free
- cheap
- standard
prefer_tiers:
- default
- cheap
- fallback
- reasoning
- mid
routing_mode: eco
coding-fast:
aliases:
- code-fast
- dev-fast
best_for: Fast iterative coding loops
description: Speed-first coding workhorse
savings: High savings
select:
capability_values:
cost_tier:
- free
- cheap
- standard
prefer_tiers:
- cheap
- default
- fallback
prefer_providers:
- gemini-flash-lite
- gemini-flash
- anthropic-haiku
- deepseek-chat
routing_mode: eco
coding-premium:
aliases:
- code-premium
- dev-premium
best_for: Architecture, review, and high-risk coding changes
description: Strongest coding lanes with cost still visible
savings: Lowest savings
select:
prefer_tiers:
- reasoning
- default
- mid
- high
routing_mode: premium
eco:
aliases: []
best_for: Maximum savings
Expand Down
Loading
Loading