@openai/codex 0.10.0 → 0.11.0

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
@@ -95,6 +95,12 @@ codex login
95
95
 
96
96
  If you complete the process successfully, you should have a `~/.codex/auth.json` file that contains the credentials that Codex will use.
97
97
 
98
+ To verify whether you are currently logged in, run:
99
+
100
+ ```
101
+ codex login status
102
+ ```
103
+
98
104
  If you encounter problems with the login flow, please comment on <https://github.com/openai/codex/issues/1243>.
99
105
 
100
106
  <details>
Binary file
Binary file
Binary file
Binary file
Binary file
package/bin/codex.js CHANGED
@@ -83,6 +83,7 @@ if (wantsNative && process.platform !== 'win32') {
83
83
 
84
84
  const child = spawn(binaryPath, process.argv.slice(2), {
85
85
  stdio: "inherit",
86
+ env: { ...process.env, CODEX_MANAGED_BY_NPM: "1" },
86
87
  });
87
88
 
88
89
  child.on("error", (err) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openai/codex",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "codex": "bin/codex.js"