oh-my-opencode 4.9.0 → 4.9.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.
Files changed (24) hide show
  1. package/dist/cli/doctor/checks/dependencies.d.ts +2 -2
  2. package/dist/cli/index.js +36 -24
  3. package/dist/cli-node/index.js +36 -24
  4. package/dist/shared/module-resolution-failure.d.ts +7 -0
  5. package/package.json +12 -12
  6. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
  7. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  8. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  9. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  10. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  11. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  12. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  13. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  14. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  15. package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
  16. package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
  17. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  18. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  19. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  20. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
  21. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +2 -2
  22. package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
  23. package/packages/omo-codex/plugin/hooks/hooks.json +16 -16
  24. package/packages/omo-codex/plugin/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import type { DependencyInfo } from "../types";
2
2
  export declare function checkAstGrepCli(): Promise<DependencyInfo>;
3
- export declare function checkAstGrepNapi(): Promise<DependencyInfo>;
4
- export declare function findCommentCheckerPackageBinary(baseDirOverride?: string): string | null;
3
+ export declare function checkAstGrepNapi(importNapiProbe?: () => Promise<unknown>): Promise<DependencyInfo>;
4
+ export declare function findCommentCheckerPackageBinary(baseDirOverride?: string, resolvePackageJsonPath?: () => string): string | null;
5
5
  export declare function checkCommentChecker(): Promise<DependencyInfo>;
package/dist/cli/index.js CHANGED
@@ -60157,7 +60157,7 @@ var package_default2;
60157
60157
  var init_package = __esm(() => {
60158
60158
  package_default2 = {
60159
60159
  name: "@oh-my-opencode/omo-codex",
60160
- version: "4.9.0",
60160
+ version: "4.9.1",
60161
60161
  type: "module",
60162
60162
  private: true,
60163
60163
  description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
@@ -62300,7 +62300,7 @@ var {
62300
62300
  // package.json
62301
62301
  var package_default = {
62302
62302
  name: "oh-my-opencode",
62303
- version: "4.9.0",
62303
+ version: "4.9.1",
62304
62304
  description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
62305
62305
  main: "./dist/index.js",
62306
62306
  types: "dist/index.d.ts",
@@ -62444,17 +62444,17 @@ var package_default = {
62444
62444
  zod: "^4.4.3"
62445
62445
  },
62446
62446
  optionalDependencies: {
62447
- "oh-my-opencode-darwin-arm64": "4.9.0",
62448
- "oh-my-opencode-darwin-x64": "4.9.0",
62449
- "oh-my-opencode-darwin-x64-baseline": "4.9.0",
62450
- "oh-my-opencode-linux-arm64": "4.9.0",
62451
- "oh-my-opencode-linux-arm64-musl": "4.9.0",
62452
- "oh-my-opencode-linux-x64": "4.9.0",
62453
- "oh-my-opencode-linux-x64-baseline": "4.9.0",
62454
- "oh-my-opencode-linux-x64-musl": "4.9.0",
62455
- "oh-my-opencode-linux-x64-musl-baseline": "4.9.0",
62456
- "oh-my-opencode-windows-x64": "4.9.0",
62457
- "oh-my-opencode-windows-x64-baseline": "4.9.0"
62447
+ "oh-my-opencode-darwin-arm64": "4.9.1",
62448
+ "oh-my-opencode-darwin-x64": "4.9.1",
62449
+ "oh-my-opencode-darwin-x64-baseline": "4.9.1",
62450
+ "oh-my-opencode-linux-arm64": "4.9.1",
62451
+ "oh-my-opencode-linux-arm64-musl": "4.9.1",
62452
+ "oh-my-opencode-linux-x64": "4.9.1",
62453
+ "oh-my-opencode-linux-x64-baseline": "4.9.1",
62454
+ "oh-my-opencode-linux-x64-musl": "4.9.1",
62455
+ "oh-my-opencode-linux-x64-musl-baseline": "4.9.1",
62456
+ "oh-my-opencode-windows-x64": "4.9.1",
62457
+ "oh-my-opencode-windows-x64-baseline": "4.9.1"
62458
62458
  },
62459
62459
  overrides: {
62460
62460
  hono: "^4.12.18",
@@ -88404,6 +88404,19 @@ function getCachedBinaryPath2() {
88404
88404
 
88405
88405
  // packages/omo-opencode/src/cli/doctor/checks/dependencies.ts
88406
88406
  init_bun_which_shim();
88407
+
88408
+ // packages/omo-opencode/src/shared/module-resolution-failure.ts
88409
+ var MODULE_RESOLUTION_ERROR_CODES = new Set(["ERR_MODULE_NOT_FOUND", "MODULE_NOT_FOUND", "ERR_PACKAGE_PATH_NOT_EXPORTED"]);
88410
+ function isModuleResolutionFailure(error51) {
88411
+ if (typeof error51 !== "object" || error51 === null)
88412
+ return false;
88413
+ const { code, name } = error51;
88414
+ if (typeof code === "string" && MODULE_RESOLUTION_ERROR_CODES.has(code))
88415
+ return true;
88416
+ return name === "ResolveMessage";
88417
+ }
88418
+
88419
+ // packages/omo-opencode/src/cli/doctor/checks/dependencies.ts
88407
88420
  async function checkBinaryExists(binary) {
88408
88421
  try {
88409
88422
  const path14 = bunWhich(binary);
@@ -88452,9 +88465,9 @@ async function checkAstGrepCli() {
88452
88465
  path: binary.path
88453
88466
  };
88454
88467
  }
88455
- async function checkAstGrepNapi() {
88468
+ async function checkAstGrepNapi(importNapiProbe = () => import("@ast-grep/napi")) {
88456
88469
  try {
88457
- await import("@ast-grep/napi");
88470
+ await importNapiProbe();
88458
88471
  return {
88459
88472
  name: "AST-Grep NAPI",
88460
88473
  required: false,
@@ -88463,7 +88476,7 @@ async function checkAstGrepNapi() {
88463
88476
  path: null
88464
88477
  };
88465
88478
  } catch (error51) {
88466
- if (!(error51 instanceof Error))
88479
+ if (!(error51 instanceof Error) && !isModuleResolutionFailure(error51))
88467
88480
  throw error51;
88468
88481
  const { existsSync: existsSync50 } = await import("fs");
88469
88482
  const { join: join63 } = await import("path");
@@ -88493,16 +88506,15 @@ async function checkAstGrepNapi() {
88493
88506
  };
88494
88507
  }
88495
88508
  }
88496
- function findCommentCheckerPackageBinary(baseDirOverride) {
88509
+ function resolveCommentCheckerPackageJson() {
88510
+ const require2 = createRequire2(import.meta.url);
88511
+ return require2.resolve("@code-yeongyu/comment-checker/package.json");
88512
+ }
88513
+ function findCommentCheckerPackageBinary(baseDirOverride, resolvePackageJsonPath = resolveCommentCheckerPackageJson) {
88497
88514
  const binaryName = process.platform === "win32" ? "comment-checker.exe" : "comment-checker";
88498
88515
  const platformKey = `${process.platform}-${process.arch === "x64" ? "x64" : process.arch}`;
88499
88516
  try {
88500
- let packageDir = baseDirOverride;
88501
- if (!packageDir) {
88502
- const require2 = createRequire2(import.meta.url);
88503
- const pkgPath = require2.resolve("@code-yeongyu/comment-checker/package.json");
88504
- packageDir = dirname23(pkgPath);
88505
- }
88517
+ const packageDir = baseDirOverride ?? dirname23(resolvePackageJsonPath());
88506
88518
  const vendorPath = join62(packageDir, "vendor", platformKey, binaryName);
88507
88519
  if (existsSync49(vendorPath))
88508
88520
  return vendorPath;
@@ -88510,7 +88522,7 @@ function findCommentCheckerPackageBinary(baseDirOverride) {
88510
88522
  if (existsSync49(binPath))
88511
88523
  return binPath;
88512
88524
  } catch (error51) {
88513
- if (!(error51 instanceof Error))
88525
+ if (!(error51 instanceof Error) && !isModuleResolutionFailure(error51))
88514
88526
  throw error51;
88515
88527
  }
88516
88528
  return null;
@@ -60158,7 +60158,7 @@ var package_default2;
60158
60158
  var init_package = __esm(() => {
60159
60159
  package_default2 = {
60160
60160
  name: "@oh-my-opencode/omo-codex",
60161
- version: "4.9.0",
60161
+ version: "4.9.1",
60162
60162
  type: "module",
60163
60163
  private: true,
60164
60164
  description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
@@ -62301,7 +62301,7 @@ var {
62301
62301
  // package.json
62302
62302
  var package_default = {
62303
62303
  name: "oh-my-opencode",
62304
- version: "4.9.0",
62304
+ version: "4.9.1",
62305
62305
  description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
62306
62306
  main: "./dist/index.js",
62307
62307
  types: "dist/index.d.ts",
@@ -62445,17 +62445,17 @@ var package_default = {
62445
62445
  zod: "^4.4.3"
62446
62446
  },
62447
62447
  optionalDependencies: {
62448
- "oh-my-opencode-darwin-arm64": "4.9.0",
62449
- "oh-my-opencode-darwin-x64": "4.9.0",
62450
- "oh-my-opencode-darwin-x64-baseline": "4.9.0",
62451
- "oh-my-opencode-linux-arm64": "4.9.0",
62452
- "oh-my-opencode-linux-arm64-musl": "4.9.0",
62453
- "oh-my-opencode-linux-x64": "4.9.0",
62454
- "oh-my-opencode-linux-x64-baseline": "4.9.0",
62455
- "oh-my-opencode-linux-x64-musl": "4.9.0",
62456
- "oh-my-opencode-linux-x64-musl-baseline": "4.9.0",
62457
- "oh-my-opencode-windows-x64": "4.9.0",
62458
- "oh-my-opencode-windows-x64-baseline": "4.9.0"
62448
+ "oh-my-opencode-darwin-arm64": "4.9.1",
62449
+ "oh-my-opencode-darwin-x64": "4.9.1",
62450
+ "oh-my-opencode-darwin-x64-baseline": "4.9.1",
62451
+ "oh-my-opencode-linux-arm64": "4.9.1",
62452
+ "oh-my-opencode-linux-arm64-musl": "4.9.1",
62453
+ "oh-my-opencode-linux-x64": "4.9.1",
62454
+ "oh-my-opencode-linux-x64-baseline": "4.9.1",
62455
+ "oh-my-opencode-linux-x64-musl": "4.9.1",
62456
+ "oh-my-opencode-linux-x64-musl-baseline": "4.9.1",
62457
+ "oh-my-opencode-windows-x64": "4.9.1",
62458
+ "oh-my-opencode-windows-x64-baseline": "4.9.1"
62459
62459
  },
62460
62460
  overrides: {
62461
62461
  hono: "^4.12.18",
@@ -88405,6 +88405,19 @@ function getCachedBinaryPath2() {
88405
88405
 
88406
88406
  // packages/omo-opencode/src/cli/doctor/checks/dependencies.ts
88407
88407
  init_bun_which_shim();
88408
+
88409
+ // packages/omo-opencode/src/shared/module-resolution-failure.ts
88410
+ var MODULE_RESOLUTION_ERROR_CODES = new Set(["ERR_MODULE_NOT_FOUND", "MODULE_NOT_FOUND", "ERR_PACKAGE_PATH_NOT_EXPORTED"]);
88411
+ function isModuleResolutionFailure(error51) {
88412
+ if (typeof error51 !== "object" || error51 === null)
88413
+ return false;
88414
+ const { code, name } = error51;
88415
+ if (typeof code === "string" && MODULE_RESOLUTION_ERROR_CODES.has(code))
88416
+ return true;
88417
+ return name === "ResolveMessage";
88418
+ }
88419
+
88420
+ // packages/omo-opencode/src/cli/doctor/checks/dependencies.ts
88408
88421
  async function checkBinaryExists(binary) {
88409
88422
  try {
88410
88423
  const path14 = bunWhich(binary);
@@ -88453,9 +88466,9 @@ async function checkAstGrepCli() {
88453
88466
  path: binary.path
88454
88467
  };
88455
88468
  }
88456
- async function checkAstGrepNapi() {
88469
+ async function checkAstGrepNapi(importNapiProbe = () => import("@ast-grep/napi")) {
88457
88470
  try {
88458
- await import("@ast-grep/napi");
88471
+ await importNapiProbe();
88459
88472
  return {
88460
88473
  name: "AST-Grep NAPI",
88461
88474
  required: false,
@@ -88464,7 +88477,7 @@ async function checkAstGrepNapi() {
88464
88477
  path: null
88465
88478
  };
88466
88479
  } catch (error51) {
88467
- if (!(error51 instanceof Error))
88480
+ if (!(error51 instanceof Error) && !isModuleResolutionFailure(error51))
88468
88481
  throw error51;
88469
88482
  const { existsSync: existsSync50 } = await import("fs");
88470
88483
  const { join: join63 } = await import("path");
@@ -88494,16 +88507,15 @@ async function checkAstGrepNapi() {
88494
88507
  };
88495
88508
  }
88496
88509
  }
88497
- function findCommentCheckerPackageBinary(baseDirOverride) {
88510
+ function resolveCommentCheckerPackageJson() {
88511
+ const require2 = createRequire3(import.meta.url);
88512
+ return require2.resolve("@code-yeongyu/comment-checker/package.json");
88513
+ }
88514
+ function findCommentCheckerPackageBinary(baseDirOverride, resolvePackageJsonPath = resolveCommentCheckerPackageJson) {
88498
88515
  const binaryName = process.platform === "win32" ? "comment-checker.exe" : "comment-checker";
88499
88516
  const platformKey = `${process.platform}-${process.arch === "x64" ? "x64" : process.arch}`;
88500
88517
  try {
88501
- let packageDir = baseDirOverride;
88502
- if (!packageDir) {
88503
- const require2 = createRequire3(import.meta.url);
88504
- const pkgPath = require2.resolve("@code-yeongyu/comment-checker/package.json");
88505
- packageDir = dirname23(pkgPath);
88506
- }
88518
+ const packageDir = baseDirOverride ?? dirname23(resolvePackageJsonPath());
88507
88519
  const vendorPath = join62(packageDir, "vendor", platformKey, binaryName);
88508
88520
  if (existsSync49(vendorPath))
88509
88521
  return vendorPath;
@@ -88511,7 +88523,7 @@ function findCommentCheckerPackageBinary(baseDirOverride) {
88511
88523
  if (existsSync49(binPath))
88512
88524
  return binPath;
88513
88525
  } catch (error51) {
88514
- if (!(error51 instanceof Error))
88526
+ if (!(error51 instanceof Error) && !isModuleResolutionFailure(error51))
88515
88527
  throw error51;
88516
88528
  }
88517
88529
  return null;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Bun reports failed module resolution (dynamic `import()` and
3
+ * `createRequire().resolve()`) by throwing a `ResolveMessage`, which is NOT an
4
+ * `instanceof Error`. Catch blocks that rethrow non-Error values therefore
5
+ * escalate a routine "optional dependency is absent" probe into a crash.
6
+ */
7
+ export declare function isModuleResolutionFailure(error: unknown): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -144,17 +144,17 @@
144
144
  "zod": "^4.4.3"
145
145
  },
146
146
  "optionalDependencies": {
147
- "oh-my-opencode-darwin-arm64": "4.9.0",
148
- "oh-my-opencode-darwin-x64": "4.9.0",
149
- "oh-my-opencode-darwin-x64-baseline": "4.9.0",
150
- "oh-my-opencode-linux-arm64": "4.9.0",
151
- "oh-my-opencode-linux-arm64-musl": "4.9.0",
152
- "oh-my-opencode-linux-x64": "4.9.0",
153
- "oh-my-opencode-linux-x64-baseline": "4.9.0",
154
- "oh-my-opencode-linux-x64-musl": "4.9.0",
155
- "oh-my-opencode-linux-x64-musl-baseline": "4.9.0",
156
- "oh-my-opencode-windows-x64": "4.9.0",
157
- "oh-my-opencode-windows-x64-baseline": "4.9.0"
147
+ "oh-my-opencode-darwin-arm64": "4.9.1",
148
+ "oh-my-opencode-darwin-x64": "4.9.1",
149
+ "oh-my-opencode-darwin-x64-baseline": "4.9.1",
150
+ "oh-my-opencode-linux-arm64": "4.9.1",
151
+ "oh-my-opencode-linux-arm64-musl": "4.9.1",
152
+ "oh-my-opencode-linux-x64": "4.9.1",
153
+ "oh-my-opencode-linux-x64-baseline": "4.9.1",
154
+ "oh-my-opencode-linux-x64-musl": "4.9.1",
155
+ "oh-my-opencode-linux-x64-musl-baseline": "4.9.1",
156
+ "oh-my-opencode-windows-x64": "4.9.1",
157
+ "oh-my-opencode-windows-x64-baseline": "4.9.1"
158
158
  },
159
159
  "overrides": {
160
160
  "hono": "^4.12.18",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omo",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "One Codex plugin namespace for Yeongyu's local Codex components.",
5
5
  "author": {
6
6
  "name": "Yeongyu Kim",
@@ -8,7 +8,7 @@
8
8
  "type": "command",
9
9
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-tool-use",
10
10
  "timeout": 30,
11
- "statusMessage": "LazyCodex(4.9.0): Checking Comments"
11
+ "statusMessage": "LazyCodex(4.9.1): Checking Comments"
12
12
  }
13
13
  ]
14
14
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-comment-checker",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin that runs comment-checker after edit-like PostToolUse hooks.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -8,7 +8,7 @@
8
8
  "type": "command",
9
9
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook pre-tool-use",
10
10
  "timeout": 5,
11
- "statusMessage": "LazyCodex(4.9.0): Recommending Git Bash Mcp"
11
+ "statusMessage": "LazyCodex(4.9.1): Recommending Git Bash Mcp"
12
12
  }
13
13
  ]
14
14
  }
@@ -20,7 +20,7 @@
20
20
  "type": "command",
21
21
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
22
22
  "timeout": 5,
23
- "statusMessage": "LazyCodex(4.9.0): Resetting Git Bash Mcp Reminder"
23
+ "statusMessage": "LazyCodex(4.9.1): Resetting Git Bash Mcp Reminder"
24
24
  }
25
25
  ]
26
26
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisyphuslabs/codex-git-bash-hook",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex hook component that reminds Windows sessions to prefer the OMO git_bash MCP.",
5
5
  "type": "module",
6
6
  "private": true,
@@ -8,7 +8,7 @@
8
8
  "type": "command",
9
9
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-tool-use",
10
10
  "timeout": 60,
11
- "statusMessage": "LazyCodex(4.9.0): Checking LSP Diagnostics"
11
+ "statusMessage": "LazyCodex(4.9.1): Checking LSP Diagnostics"
12
12
  }
13
13
  ]
14
14
  }
@@ -21,7 +21,7 @@
21
21
  "type": "command",
22
22
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
23
23
  "timeout": 5,
24
- "statusMessage": "LazyCodex(4.9.0): Resetting LSP Diagnostics Cache"
24
+ "statusMessage": "LazyCodex(4.9.1): Resetting LSP Diagnostics Cache"
25
25
  }
26
26
  ]
27
27
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-lsp",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin that exposes Language Server Protocol tools and post-edit diagnostics.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook session-start",
9
9
  "timeout": 10,
10
- "statusMessage": "LazyCodex(4.9.0): Loading Project Rules"
10
+ "statusMessage": "LazyCodex(4.9.1): Loading Project Rules"
11
11
  }
12
12
  ]
13
13
  }
@@ -19,7 +19,7 @@
19
19
  "type": "command",
20
20
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook user-prompt-submit",
21
21
  "timeout": 10,
22
- "statusMessage": "LazyCodex(4.9.0): Loading Project Rules"
22
+ "statusMessage": "LazyCodex(4.9.1): Loading Project Rules"
23
23
  }
24
24
  ]
25
25
  }
@@ -32,7 +32,7 @@
32
32
  "type": "command",
33
33
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-tool-use",
34
34
  "timeout": 10,
35
- "statusMessage": "LazyCodex(4.9.0): Matching Project Rules"
35
+ "statusMessage": "LazyCodex(4.9.1): Matching Project Rules"
36
36
  }
37
37
  ]
38
38
  }
@@ -45,7 +45,7 @@
45
45
  "type": "command",
46
46
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
47
47
  "timeout": 10,
48
- "statusMessage": "LazyCodex(4.9.0): Resetting Project Rule Cache"
48
+ "statusMessage": "LazyCodex(4.9.1): Resetting Project Rule Cache"
49
49
  }
50
50
  ]
51
51
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-rules",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin that injects project rule files into model context through lifecycle hooks.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook stop",
9
9
  "timeout": 10,
10
- "statusMessage": "LazyCodex(4.9.0): Checking Start-Work Continuation"
10
+ "statusMessage": "LazyCodex(4.9.1): Checking Start-Work Continuation"
11
11
  }
12
12
  ]
13
13
  }
@@ -19,7 +19,7 @@
19
19
  "type": "command",
20
20
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook subagent-stop",
21
21
  "timeout": 10,
22
- "statusMessage": "LazyCodex(4.9.0): Checking Start-Work Continuation"
22
+ "statusMessage": "LazyCodex(4.9.1): Checking Start-Work Continuation"
23
23
  }
24
24
  ]
25
25
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-start-work-continuation",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex Stop hook continuation injector for omo-codex start-work plans.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook session-start",
9
9
  "timeout": 5,
10
- "statusMessage": "LazyCodex(4.9.0): Recording Session Telemetry"
10
+ "statusMessage": "LazyCodex(4.9.1): Recording Session Telemetry"
11
11
  }
12
12
  ]
13
13
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-telemetry",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin component that emits omo-codex anonymous daily-active telemetry on SessionStart.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook user-prompt-submit",
9
9
  "timeout": 5,
10
- "statusMessage": "LazyCodex(4.9.0): Checking Ultrawork Trigger"
10
+ "statusMessage": "LazyCodex(4.9.1): Checking Ultrawork Trigger"
11
11
  }
12
12
  ]
13
13
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-ultrawork",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin that injects the ultrawork orchestration directive and syncs the ultrawork reviewer agent role.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook user-prompt-submit",
9
9
  "timeout": 10,
10
- "statusMessage": "LazyCodex(4.9.0): Checking Ulw-Loop Steering"
10
+ "statusMessage": "LazyCodex(4.9.1): Checking Ulw-Loop Steering"
11
11
  }
12
12
  ]
13
13
  }
@@ -20,7 +20,7 @@
20
20
  "type": "command",
21
21
  "command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook pre-tool-use",
22
22
  "timeout": 5,
23
- "statusMessage": "LazyCodex(4.9.0): Enforcing Unlimited Ulw-Loop Budget"
23
+ "statusMessage": "LazyCodex(4.9.1): Enforcing Unlimited Ulw-Loop Budget"
24
24
  }
25
25
  ]
26
26
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-ulw-loop",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Codex plugin: durable repo-native multi-goal orchestration with embedded success criteria and observable evidence audit.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -7,7 +7,7 @@
7
7
  "type": "command",
8
8
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook session-start",
9
9
  "timeout": 10,
10
- "statusMessage": "LazyCodex(4.9.0): Loading Project Rules"
10
+ "statusMessage": "LazyCodex(4.9.1): Loading Project Rules"
11
11
  }
12
12
  ]
13
13
  },
@@ -17,7 +17,7 @@
17
17
  "type": "command",
18
18
  "command": "node \"${PLUGIN_ROOT}/components/telemetry/dist/cli.js\" hook session-start",
19
19
  "timeout": 5,
20
- "statusMessage": "LazyCodex(4.9.0): Recording Session Telemetry"
20
+ "statusMessage": "LazyCodex(4.9.1): Recording Session Telemetry"
21
21
  }
22
22
  ]
23
23
  },
@@ -28,7 +28,7 @@
28
28
  "type": "command",
29
29
  "command": "node \"${PLUGIN_ROOT}/scripts/auto-update.mjs\" hook session-start",
30
30
  "timeout": 5,
31
- "statusMessage": "LazyCodex(4.9.0): Checking Auto Update"
31
+ "statusMessage": "LazyCodex(4.9.1): Checking Auto Update"
32
32
  }
33
33
  ]
34
34
  }
@@ -40,7 +40,7 @@
40
40
  "type": "command",
41
41
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook user-prompt-submit",
42
42
  "timeout": 10,
43
- "statusMessage": "LazyCodex(4.9.0): Loading Project Rules"
43
+ "statusMessage": "LazyCodex(4.9.1): Loading Project Rules"
44
44
  }
45
45
  ]
46
46
  },
@@ -50,7 +50,7 @@
50
50
  "type": "command",
51
51
  "command": "node \"${PLUGIN_ROOT}/components/ultrawork/dist/cli.js\" hook user-prompt-submit",
52
52
  "timeout": 5,
53
- "statusMessage": "LazyCodex(4.9.0): Checking Ultrawork Trigger"
53
+ "statusMessage": "LazyCodex(4.9.1): Checking Ultrawork Trigger"
54
54
  }
55
55
  ]
56
56
  },
@@ -60,7 +60,7 @@
60
60
  "type": "command",
61
61
  "command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook user-prompt-submit",
62
62
  "timeout": 10,
63
- "statusMessage": "LazyCodex(4.9.0): Checking Ulw-Loop Steering"
63
+ "statusMessage": "LazyCodex(4.9.1): Checking Ulw-Loop Steering"
64
64
  }
65
65
  ]
66
66
  }
@@ -73,7 +73,7 @@
73
73
  "type": "command",
74
74
  "command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook pre-tool-use",
75
75
  "timeout": 5,
76
- "statusMessage": "LazyCodex(4.9.0): Recommending Git Bash Mcp"
76
+ "statusMessage": "LazyCodex(4.9.1): Recommending Git Bash Mcp"
77
77
  }
78
78
  ]
79
79
  },
@@ -84,7 +84,7 @@
84
84
  "type": "command",
85
85
  "command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook pre-tool-use",
86
86
  "timeout": 5,
87
- "statusMessage": "LazyCodex(4.9.0): Enforcing Unlimited Goal Budget"
87
+ "statusMessage": "LazyCodex(4.9.1): Enforcing Unlimited Goal Budget"
88
88
  }
89
89
  ]
90
90
  }
@@ -97,13 +97,13 @@
97
97
  "type": "command",
98
98
  "command": "node \"${PLUGIN_ROOT}/components/comment-checker/dist/cli.js\" hook post-tool-use",
99
99
  "timeout": 30,
100
- "statusMessage": "LazyCodex(4.9.0): Checking Comments"
100
+ "statusMessage": "LazyCodex(4.9.1): Checking Comments"
101
101
  },
102
102
  {
103
103
  "type": "command",
104
104
  "command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-tool-use",
105
105
  "timeout": 60,
106
- "statusMessage": "LazyCodex(4.9.0): Checking LSP Diagnostics"
106
+ "statusMessage": "LazyCodex(4.9.1): Checking LSP Diagnostics"
107
107
  }
108
108
  ]
109
109
  },
@@ -114,7 +114,7 @@
114
114
  "type": "command",
115
115
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-tool-use",
116
116
  "timeout": 10,
117
- "statusMessage": "LazyCodex(4.9.0): Matching Project Rules"
117
+ "statusMessage": "LazyCodex(4.9.1): Matching Project Rules"
118
118
  }
119
119
  ]
120
120
  }
@@ -127,7 +127,7 @@
127
127
  "type": "command",
128
128
  "command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook post-compact",
129
129
  "timeout": 5,
130
- "statusMessage": "LazyCodex(4.9.0): Resetting Git Bash Mcp Reminder"
130
+ "statusMessage": "LazyCodex(4.9.1): Resetting Git Bash Mcp Reminder"
131
131
  }
132
132
  ]
133
133
  },
@@ -138,7 +138,7 @@
138
138
  "type": "command",
139
139
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-compact",
140
140
  "timeout": 10,
141
- "statusMessage": "LazyCodex(4.9.0): Resetting Project Rule Cache"
141
+ "statusMessage": "LazyCodex(4.9.1): Resetting Project Rule Cache"
142
142
  }
143
143
  ]
144
144
  },
@@ -149,7 +149,7 @@
149
149
  "type": "command",
150
150
  "command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-compact",
151
151
  "timeout": 5,
152
- "statusMessage": "LazyCodex(4.9.0): Resetting LSP Diagnostics Cache"
152
+ "statusMessage": "LazyCodex(4.9.1): Resetting LSP Diagnostics Cache"
153
153
  }
154
154
  ]
155
155
  }
@@ -161,7 +161,7 @@
161
161
  "type": "command",
162
162
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook stop",
163
163
  "timeout": 10,
164
- "statusMessage": "LazyCodex(4.9.0): Checking Start-Work Continuation"
164
+ "statusMessage": "LazyCodex(4.9.1): Checking Start-Work Continuation"
165
165
  }
166
166
  ]
167
167
  }
@@ -173,7 +173,7 @@
173
173
  "type": "command",
174
174
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook subagent-stop",
175
175
  "timeout": 10,
176
- "statusMessage": "LazyCodex(4.9.0): Checking Start-Work Continuation"
176
+ "statusMessage": "LazyCodex(4.9.1): Checking Start-Work Continuation"
177
177
  }
178
178
  ]
179
179
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisyphuslabs/omo-codex-plugin",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "Aggregate Codex plugin root for OMO components.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",