@tryarcanist/cli 0.1.210 → 0.1.211

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
@@ -140,7 +140,7 @@ JSON mode prints the raw `/api/auth/whoami` API response. Fields currently inclu
140
140
 
141
141
  ### `arcanist codex login`
142
142
 
143
- Authenticates a Codex/ChatGPT subscription and stores it for your Codex sessions, then activates it (turns on "use subscription auth for OpenAI sessions"). Runs the Codex CLI device-authorization login locally under a temporary `CODEX_HOME`, then uploads the resulting `auth.json` to Arcanist (encrypted, per user). The credential is never written to your default `~/.codex`. Requires a write-scoped token and a workspace with Codex subscription auth enabled. If activation fails the credential is still saved; run `arcanist codex use on`.
143
+ Authenticates a Codex/ChatGPT subscription and stores it for your Codex sessions, then activates it (turns on "use subscription auth for OpenAI sessions"). Runs the Codex CLI device-authorization login locally under a temporary `CODEX_HOME`, then uploads the resulting `auth.json` to Arcanist (encrypted, per user). The credential is never written to your default `~/.codex`. Requires a write-scoped token. If activation fails the credential is still saved; run `arcanist codex use on`.
144
144
 
145
145
  ```bash
146
146
  arcanist codex login
@@ -160,14 +160,15 @@ arcanist codex use off
160
160
 
161
161
  ### `arcanist codex status`
162
162
 
163
- Shows whether your workspace is eligible for Codex subscription auth and whether an `auth.json` is currently saved.
163
+ Shows that Codex subscription auth is available and whether an `auth.json` is currently saved.
164
164
 
165
165
  ```bash
166
166
  arcanist codex status
167
167
  arcanist codex status --json
168
168
  ```
169
169
 
170
- JSON mode returns `{eligible, credential: {isSet, lastValidationStatus?, lastValidationReasonCode?}}`.
170
+ JSON mode returns `{eligible, credential: {isSet, lastValidationStatus?, lastValidationReasonCode?}}`; `eligible` is always
171
+ `true` and remains for compatibility with older clients.
171
172
 
172
173
  ### `arcanist codex logout`
173
174
 
package/dist/index.js CHANGED
@@ -6234,8 +6234,8 @@ codex.command("login").description("Authenticate a Codex/ChatGPT subscription an
6234
6234
  "after",
6235
6235
  `
6236
6236
  Runs the Codex CLI device-authorization login locally under a temporary CODEX_HOME, then uploads
6237
- the resulting auth.json to Arcanist (encrypted, per user) and activates it. Your workspace must have
6238
- Codex subscription auth enabled. The credential is never written to your default ~/.codex.
6237
+ the resulting auth.json to Arcanist (encrypted, per user) and activates it. The credential is never
6238
+ written to your default ~/.codex.
6239
6239
 
6240
6240
  Examples:
6241
6241
  arcanist codex login
@@ -6243,7 +6243,7 @@ Examples:
6243
6243
  `
6244
6244
  ).action((options, command) => codexLoginCommand(options, command));
6245
6245
  codex.command("use <state>").description("Turn using your saved Codex subscription auth for OpenAI sessions on or off (state: on|off)").action((state, options, command) => codexUseCommand(state, options, command));
6246
- codex.command("status").description("Show whether your workspace is eligible and whether a Codex subscription auth is saved").action((options, command) => codexStatusCommand(options, command));
6246
+ codex.command("status").description("Show Codex subscription availability and whether auth is saved").action((options, command) => codexStatusCommand(options, command));
6247
6247
  codex.command("logout").description("Deactivate the selector and remove the stored Codex subscription auth for your user").action((options, command) => codexLogoutCommand(options, command));
6248
6248
  var grok = program.command("grok").description("Grok (xAI) subscription (bring-your-own-subscription) commands");
6249
6249
  grok.command("login").description("Authenticate a Grok (xAI) subscription and store it for future Grok BYOS sessions").option("--grok-path <path>", "Path to the grok executable (default: grok on PATH, or ARCANIST_GROK_BIN)").addHelpText(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.210",
3
+ "version": "0.1.211",
4
4
  "description": "CLI for Arcanist — create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {