Skip to content

Commit d9bd884

Browse files
committed
Prepare CLI pre.74 release
1 parent 411e6c9 commit d9bd884

6 files changed

Lines changed: 12 additions & 7 deletions

File tree

Formula/codebase.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# that opens a PR against the tap (see Phase 12.5).
1616
class Codebase < Formula
1717
desc "AI coding agent in your terminal — TypeScript, multi-provider, OAuth-aware"
18-
homepage "https://codebase.foundation"
18+
homepage "https://codebase.design"
1919
# Replace VERSION_PLACEHOLDER with the published version on each bump.
2020
url "https://registry.npmjs.org/codebase-cli/-/codebase-cli-VERSION_PLACEHOLDER.tgz"
2121
sha256 "SHA256_PLACEHOLDER"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codebase-cli",
3-
"version": "2.0.0-pre.73",
3+
"version": "2.0.0-pre.74",
44
"description": "Codebase CLI — a TypeScript coding agent on the pi-mono runtime. OAuth-aware, any LLM provider, single install.",
55
"keywords": [
66
"ai",

scripts/help-smoke.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const repo = resolve(__dirname, "..");
1010
const cli = process.env.CODEBASE_HELP_SMOKE_CLI ?? join(repo, "dist", "cli.js");
1111

1212
const commands = [
13-
{ args: ["--help"], expect: "codebase --help" },
13+
{ args: ["--help"], expect: "sign in via codebase.design browser OAuth" },
1414
{ args: ["help"], expect: "Help topics:" },
1515
{ args: ["help", "permissions"], expect: "/permissions suggest <command>" },
1616
{ args: ["help", "web-build"], expect: "codebase web-build" },
@@ -72,6 +72,11 @@ try {
7272
console.error(`FAIL ${label}: appears to have entered a runtime mode\n${output.trim()}`);
7373
continue;
7474
}
75+
if (output.includes("codebase.foundation")) {
76+
failures++;
77+
console.error(`FAIL ${label}: references retired codebase.foundation domain\n${output.trim()}`);
78+
continue;
79+
}
7580
console.log(`ok ${label}`);
7681
}
7782
} finally {

src/commands/builtins/cost.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const cost: Command = {
1010
const promptTokens = u.input + u.cacheRead;
1111
const hitRate = promptTokens > 0 ? `${((u.cacheRead / promptTokens) * 100).toFixed(0)}%` : "—";
1212
const turnAvg = turns > 0 ? u.cost.total / turns : 0;
13-
const proxyNote = bundle.source === "proxy" ? " (proxied via codebase.foundation)" : "";
13+
const proxyNote = bundle.source === "proxy" ? " (proxied via codebase.design)" : "";
1414
const usageUnavailable =
1515
bundle.source === "proxy" &&
1616
u.input + u.output + u.cacheRead + u.cacheWrite + u.totalTokens === 0 &&

src/commands/builtins/info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const whoami: Command = {
3939
const source = ctx.bundle.source;
4040
ctx.emit(
4141
source === "proxy"
42-
? "signed in via codebase.foundation (inference proxy)"
42+
? "signed in via codebase.design (inference proxy)"
4343
: source === "explicit"
4444
? "using model selected via CODEBASE_PROVIDER + CODEBASE_MODEL"
4545
: "using auto-detected provider from env",

0 commit comments

Comments
 (0)