coderouter-cli 0.1.0 → 0.1.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 +2 -2
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# coderouter-cli
|
|
2
2
|
|
|
3
|
-
**Route smarter.
|
|
3
|
+
**Route smarter. Build faster.** CodeRouter is a coding-agent orchestration layer: it classifies each task by its *cognitive shape*, picks the best model from the providers you've enabled, runs edits safely in a git-worktree sandbox, validates the result, and remembers what works on your repo.
|
|
4
4
|
|
|
5
5
|
It works with your existing **Claude Code** / **Codex** CLI, or with any API key — **OpenAI, Anthropic, OpenRouter, DeepSeek, Groq** — via a built-in first-party coding agent.
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ Then run:
|
|
|
18
18
|
coderouter
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
That's the whole setup —
|
|
21
|
+
That's the whole setup — first launch walks you through adding an API key or auto-detects a local Claude Code / Codex CLI you already have.
|
|
22
22
|
|
|
23
23
|
Prefer no global install?
|
|
24
24
|
|
package/dist/cli.js
CHANGED
|
@@ -24514,7 +24514,7 @@ var WORDMARK_SMALL = String.raw`
|
|
|
24514
24514
|
║ ║ ║ ║║║╣ ╠╦╝║ ║║ ║ ║ ║╣ ╠╦╝
|
|
24515
24515
|
╚═╝╚═╝═╩╝╚═╝ ╩╚═╚═╝╚═╝ ╩ ╚═╝╩╚═
|
|
24516
24516
|
`.trimEnd();
|
|
24517
|
-
var WORDMARK_TAGLINE = "route smarter.
|
|
24517
|
+
var WORDMARK_TAGLINE = "route smarter. build faster.";
|
|
24518
24518
|
var BRAND_GLYPH = "\u25E2\u25E4";
|
|
24519
24519
|
var BRAND_NAME = "CodeRouter";
|
|
24520
24520
|
var SYMBOLS = {
|
|
@@ -28341,7 +28341,7 @@ var INDEX_HTML = (
|
|
|
28341
28341
|
<div class="nav-item" data-view="models"><span class="dot"></span>Models</div>
|
|
28342
28342
|
<div class="nav-item" data-view="settings"><span class="dot"></span>Settings</div>
|
|
28343
28343
|
<div class="spacer"></div>
|
|
28344
|
-
<div class="footer">Local \xB7 127.0.0.1<br/>route smarter.
|
|
28344
|
+
<div class="footer">Local \xB7 127.0.0.1<br/>route smarter. build faster.</div>
|
|
28345
28345
|
</aside>
|
|
28346
28346
|
<main class="main"><div id="view"></div></main>
|
|
28347
28347
|
</div>
|
|
@@ -28835,7 +28835,7 @@ function openBrowser(url) {
|
|
|
28835
28835
|
async function runCli(argv) {
|
|
28836
28836
|
loadCredentialsIntoEnv();
|
|
28837
28837
|
const program2 = new Command();
|
|
28838
|
-
program2.name("coderouter").description(`${BRAND_NAME} - route smarter.
|
|
28838
|
+
program2.name("coderouter").description(`${BRAND_NAME} - route smarter. build faster.`).version("0.1.0");
|
|
28839
28839
|
program2.command("repl", { isDefault: true }).description("start interactive CodeRouter REPL").option("-c, --cwd <path>", "working directory", process.cwd()).action(async (opts) => {
|
|
28840
28840
|
await runReplCommand({ cwd: opts.cwd ?? process.cwd() });
|
|
28841
28841
|
});
|