chore: rebrand user-facing copy to OpenClaude (#851)
* chore: rebrand user-facing copy to OpenClaude Replace lingering Claude Code branding in CLI, tips, and runtime UI with OpenClaude/openclaude, including the startup tip Gitlawb mention. Co-Authored-By: Claude GPT-5.4 <noreply@openclaude.dev> * chore: address branding-sweep review feedback - PermissionRequest.tsx: rebrand the two remaining "Claude needs your approval/permission" notifications to OpenClaude (review-artifact and generic tool permission paths). - main.tsx, teleport.tsx, session.tsx, WebFetchTool/utils.ts, skills/bundled/{debug,updateConfig}.ts: replace leftover `claude --…` CLI hints and "Claude Code" labels missed by the original sweep. - main.tsx: drop the inline gitlawb.com marketing copy from the stale-prompt tip; keep it a pure rebrand. - auth.ts: finish the half-rename so both `claude setup-token` and `claude auth login` references in the same error block now read `openclaude …`. - mcp/client.ts: keep `name: 'claude-code'` for MCP server allowlist compatibility (now explicit via comment) and replace the "Anthropic's agentic coding tool" description with an OpenClaude one. - MCPSettings.tsx: point the empty-server-list hint at https://github.com/Gitlawb/openclaude instead of code.claude.com. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: replace help link with OpenClaude repo URL Replace https://code.claude.com/docs/en/overview with https://github.com/Gitlawb/openclaude in the help screen. Co-Authored-By: OpenClaude <openclaude@gitlawb.com> --------- Co-authored-by: Claude GPT-5.4 <noreply@openclaude.dev> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: OpenClaude <openclaude@gitlawb.com>
This commit is contained in:
@@ -44,7 +44,7 @@ type Props = {
|
||||
export function formatToolUseSummary(name: string, input: unknown): string {
|
||||
// plan_ready phase is only reached via ExitPlanMode tool
|
||||
if (name === EXIT_PLAN_MODE_V2_TOOL_NAME) {
|
||||
return 'Review the plan in Claude Code on the web';
|
||||
return 'Review the plan in OpenClaude on the web';
|
||||
}
|
||||
if (!input || typeof input !== 'object') return name;
|
||||
// AskUserQuestion: show the question text as a CTA, not the tool name.
|
||||
@@ -168,7 +168,7 @@ function UltraplanSessionDetail(t0) {
|
||||
}
|
||||
let t7;
|
||||
if ($[12] === Symbol.for("react.memo_cache_sentinel")) {
|
||||
t7 = <Text dimColor={true}>This will terminate the Claude Code on the web session.</Text>;
|
||||
t7 = <Text dimColor={true}>This will terminate the OpenClaude on the web session.</Text>;
|
||||
$[12] = t7;
|
||||
} else {
|
||||
t7 = $[12];
|
||||
@@ -311,7 +311,7 @@ function UltraplanSessionDetail(t0) {
|
||||
let t19;
|
||||
if ($[47] === Symbol.for("react.memo_cache_sentinel")) {
|
||||
t19 = {
|
||||
label: "Review in Claude Code on the web",
|
||||
label: "Review in OpenClaude on the web",
|
||||
value: "open" as const
|
||||
};
|
||||
$[47] = t19;
|
||||
@@ -595,13 +595,13 @@ function ReviewSessionDetail(t0) {
|
||||
let t3;
|
||||
if ($[11] !== completed || $[12] !== onKill || $[13] !== running) {
|
||||
t3 = completed ? [{
|
||||
label: "Open in Claude Code on the web",
|
||||
label: "Open in OpenClaude on the web",
|
||||
value: "open"
|
||||
}, {
|
||||
label: "Dismiss",
|
||||
value: "dismiss"
|
||||
}] : [{
|
||||
label: "Open in Claude Code on the web",
|
||||
label: "Open in OpenClaude on the web",
|
||||
value: "open"
|
||||
}, ...(onKill && running ? [{
|
||||
label: "Stop ultrareview",
|
||||
|
||||
Reference in New Issue
Block a user