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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # coderouter-cli
2
2
 
3
- **Route smarter. Ship 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.
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 — a prebuilt `ripgrep` is bundled in, and first launch walks you through adding an API key or auto-detects a local Claude Code / Codex CLI.
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. ship faster.";
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. ship faster.</div>
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. ship faster.`).version("0.1.0");
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
  });