@ast-ai-model-router/cli 1.1.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -245,6 +245,13 @@ This project is part of the [`faraa2m`](https://github.com/faraa2m) token-econom
|
|
|
245
245
|
|
|
246
246
|
The router reads local source files to compute AST complexity and launches the local `claude` or `codex` CLI. It does not run a separate network service and does not upload source code. Any model traffic comes from the Claude Code or Codex CLI you choose to run.
|
|
247
247
|
|
|
248
|
+
## Project Health
|
|
249
|
+
|
|
250
|
+
- [Contributing guide](./CONTRIBUTING.md)
|
|
251
|
+
- [Security policy](./SECURITY.md)
|
|
252
|
+
- [Code of Conduct](./CODE_OF_CONDUCT.md)
|
|
253
|
+
- [Changelog](./CHANGELOG.md)
|
|
254
|
+
|
|
248
255
|
## Status
|
|
249
256
|
|
|
250
257
|
This is an explainable heuristic router. It is production-usable for policy and workflow guardrails, but it does not claim empirically proven model-quality optimization yet. Future releases can add outcome logging and calibration against real task success.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ast-ai-model-router/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "AST-based Claude Code and Codex model router with token-cost estimates, CI policy checks, and explainable AI coding-agent model selection.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"@changesets/cli": "^2.31.0"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
|
-
"node": ">=
|
|
69
|
+
"node": ">=26"
|
|
70
70
|
}
|
|
71
71
|
}
|