Skip to content

Commit 15f0ce6

Browse files
committed
chore(cli): remove official wording
1 parent 3ab9706 commit 15f0ce6

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Development instructions for agents working on this repository.
44

55
## Repo
66

7-
- Standalone TypeScript package for the official put.io CLI
7+
- Standalone TypeScript package for the put.io CLI
88
- Main code lives in `src/*`
99
- Durable docs live in `docs/*`
1010
- Consumer-facing skills live in `skills/*`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<h1>putio-cli</h1>
77

8-
<p>Agent-first official CLI for the put.io API.</p>
8+
<p>Agent-first CLI for the put.io API.</p>
99
<p>Built for deterministic automation first, with readable terminal output when humans are driving.</p>
1010

1111
<p>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@putdotio/cli",
33
"version": "0.0.0",
4-
"description": "Agent-first official CLI for the put.io API.",
4+
"description": "Agent-first CLI for the put.io API.",
55
"homepage": "https://github.com/putdotio/putio-cli#readme",
66
"bugs": {
77
"url": "https://github.com/putdotio/putio-cli/issues"

scripts/build-sea.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const resolveOfficialNodeRuntime = async () => {
8787
await unlink(archivePath);
8888

8989
if (!existsSync(nodeBinary)) {
90-
throw new Error(`Expected official Node runtime at ${nodeBinary}.`);
90+
throw new Error(`Expected Node runtime at ${nodeBinary}.`);
9191
}
9292

9393
return nodeBinary;

src/i18n/catalog/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export const en = {
252252
transfersRetry: "Retry a failed transfer.",
253253
transfersWatch: "Watch a transfer until it finishes or the watch times out.",
254254
version: "Print the CLI version and render the brand mark in terminal mode.",
255-
whoami: "Read broad account information through the official SDK.",
255+
whoami: "Read broad account information through the put.io SDK.",
256256
},
257257
root: {
258258
chooseAuthSubcommand: "Choose `status`, `login`, `logout`, or `preview`.",

src/internal/auth-flow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const mockRuntime: CliRuntimeService = {
2828
};
2929

3030
describe("resolveAuthFlowConfig", () => {
31-
it("uses the built-in official app id and sensible defaults", async () => {
31+
it("uses the built-in CLI app id and sensible defaults", async () => {
3232
const result = await Effect.runPromise(
3333
resolveAuthFlowConfig().pipe(
3434
Effect.provide(makeCliAppLayer(makeCliRuntime({ hostName: "cli-test-host" }))),

0 commit comments

Comments
 (0)