Skip to content

Commit d23b264

Browse files
committed
docs(user): shipped copy says Pylon, not T3 Code
`docs/user/` is shipped-product voice, and an inherited compatibility name is not permission to keep upstream's product name in it. providers-codex.md picked this up in the 2026-08-24 batch, when the de-branding pass that reworded the adjacent Codex /feedback section missed the app-approval one. Three more are outside docs/user and are the same concern: - ChatView's pull-request-unavailable string, which had drifted from its own test — PullRequestsUnavailableState.test.tsx already asserts "Pylon". - The versionSkew doc comment sitting above a hint deliberately kept as "Pylon". - The defaultThreadEnvMode schema description, which surfaces to anyone editing a project file. Compatibility identifiers are untouched: t3.json, .t3, the T3-named podspecs and source filenames, and the branding tests that exercise the upstream base name. docs/user/install.md keeps its two references because they name T3 Code as the separate app Pylon installs beside. The docs/internals and docs/operations sweep belongs to the open #67.
1 parent 3fd9e00 commit d23b264

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/web/src/components/ChatView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7490,7 +7490,7 @@ function ChatViewContent(props: ChatViewProps) {
74907490
) : activeRightPanelSurface?.kind === "pull-request" && !supportsPullRequests ? (
74917491
<PullRequestsUnavailableState
74927492
title="Pull requests unavailable"
7493-
error="Update this environment's T3 Code server to browse pull requests."
7493+
error="Update this environment's Pylon server to browse pull requests."
74947494
/>
74957495
) : activeRightPanelSurface?.kind === "pull-request" ? (
74967496
// No onClose: the surface tab's own X owns closing here, and a second X in the header

apps/web/src/versionSkew.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function versionCore(version: string): string {
3030
}
3131

3232
/**
33-
* The skew a user can act on: the connected server runs an older T3 Code than
33+
* The skew a user can act on: the connected server runs an older Pylon than
3434
* this client, so the server is the side that needs updating.
3535
*
3636
* Versions compare as semver on their core `major.minor.patch` only. Nightlies

docs/user/providers-codex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and share with OpenAI employees.
3636

3737
## Approve access to other apps
3838

39-
When a Codex tool needs access to an app such as Safari, T3 Code shows the app name and asks for
39+
When a Codex tool needs access to an app such as Safari, Pylon shows the app name and asks for
4040
approval. You can approve, decline, or cancel the request from the desktop app, web app, or mobile
4141
app. Some tools also offer approval for the current session or permanent approval.
4242

packages/contracts/src/t3ProjectFile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const T3ProjectFile = Schema.Struct({
7777
defaultThreadEnvMode: Schema.optionalKey(
7878
ThreadEnvMode.annotate({
7979
description:
80-
'Where new threads start for this repository: "worktree" for a fresh git worktree, "local" for the current checkout. A per-project setting in T3 Code overrides this; when neither is set, the global default applies.',
80+
'Where new threads start for this repository: "worktree" for a fresh git worktree, "local" for the current checkout. A per-project setting in Pylon overrides this; when neither is set, the global default applies.',
8181
}),
8282
),
8383
scripts: Schema.optionalKey(

0 commit comments

Comments
 (0)