@canonmsg/codex-plugin 0.18.2 → 0.18.3

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/dist/host.d.ts CHANGED
@@ -1,2 +1,19 @@
1
1
  #!/usr/bin/env node
2
+ /** GPT reasoning-effort levels, applied next turn via model_reasoning_effort. */
3
+ export declare const CODEX_EFFORT_OPTIONS: readonly [{
4
+ readonly value: "minimal";
5
+ readonly label: "Minimal";
6
+ }, {
7
+ readonly value: "low";
8
+ readonly label: "Low";
9
+ }, {
10
+ readonly value: "medium";
11
+ readonly label: "Medium";
12
+ }, {
13
+ readonly value: "high";
14
+ readonly label: "High";
15
+ }, {
16
+ readonly value: "xhigh";
17
+ readonly label: "Extra high";
18
+ }];
2
19
  export declare function main(): Promise<void>;
package/dist/host.js CHANGED
@@ -69,11 +69,12 @@ let workspaceOptions = [];
69
69
  let workspaceRoots = [];
70
70
  let workspaceRootMetadata = [];
71
71
  /** GPT reasoning-effort levels, applied next turn via model_reasoning_effort. */
72
- const CODEX_EFFORT_OPTIONS = [
72
+ export const CODEX_EFFORT_OPTIONS = [
73
73
  { value: 'minimal', label: 'Minimal' },
74
74
  { value: 'low', label: 'Low' },
75
75
  { value: 'medium', label: 'Medium' },
76
76
  { value: 'high', label: 'High' },
77
+ { value: 'xhigh', label: 'Extra high' },
77
78
  ];
78
79
  const CODEX_EFFORT_VALUES = new Set(CODEX_EFFORT_OPTIONS.map((option) => option.value));
79
80
  function buildCodexRuntimeDescriptor(input) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canonmsg/codex-plugin",
3
- "version": "0.18.2",
3
+ "version": "0.18.3",
4
4
  "description": "Canon host integration for Codex CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",