@openai/codex 0.61.0 → 0.62.0-alpha.1

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
@@ -92,15 +92,15 @@ prefix_rule(
92
92
 
93
93
  In this example rule, if Codex wants to run commands with the prefix `git push` or `git fetch`, it will first ask for user approval.
94
94
 
95
- Use [`execpolicy2` CLI](./codex-rs/execpolicy2/README.md) to preview decisions for policy files:
95
+ Use the `codex execpolicy check` subcommand to preview decisions before you save a rule (see the [`codex-execpolicy` README](./codex-rs/execpolicy/README.md) for syntax details):
96
96
 
97
97
  ```shell
98
- cargo run -p codex-execpolicy2 -- check --policy ~/.codex/policy/default.codexpolicy git push origin main
98
+ codex execpolicy check --policy ~/.codex/policy/default.codexpolicy git push origin main
99
99
  ```
100
100
 
101
- Pass multiple `--policy` flags to test how several files combine. See the [`codex-rs/execpolicy2` README](./codex-rs/execpolicy2/README.md) for a more detailed walkthrough of the available syntax.
101
+ Pass multiple `--policy` flags to test how several files combine, and use `--pretty` for formatted JSON output. See the [`codex-rs/execpolicy` README](./codex-rs/execpolicy/README.md) for a more detailed walkthrough of the available syntax.
102
102
 
103
- ---
103
+ ## Note: `execpolicy` commands are still in preview. The API may have breaking changes in the future.
104
104
 
105
105
  ### Docs & FAQ
106
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openai/codex",
3
- "version": "0.61.0",
3
+ "version": "0.62.0-alpha.1",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "codex": "bin/codex.js"