oh-my-opencode 4.11.0 → 4.11.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 (61) hide show
  1. package/dist/agents/atlas/agent.d.ts +3 -2
  2. package/dist/agents/sisyphus/glm-5-2.d.ts +4 -0
  3. package/dist/agents/sisyphus/index.d.ts +1 -0
  4. package/dist/agents/sisyphus-agent-config.d.ts +1 -0
  5. package/dist/agents/sisyphus-junior/agent.d.ts +1 -1
  6. package/dist/agents/sisyphus-junior/glm-5-2.d.ts +1 -0
  7. package/dist/agents/sisyphus-junior/index.d.ts +1 -0
  8. package/dist/cli/index.js +25 -26
  9. package/dist/cli-node/index.js +25 -26
  10. package/dist/hooks/keyword-detector/ultrawork/glm.d.ts +2 -0
  11. package/dist/hooks/keyword-detector/ultrawork/index.d.ts +4 -2
  12. package/dist/hooks/keyword-detector/ultrawork/source-detector.d.ts +5 -4
  13. package/dist/index.js +953 -31
  14. package/dist/skills/init-deep/SKILL.md +21 -26
  15. package/dist/skills/programming/SKILL.md +25 -121
  16. package/dist/skills/programming/references/code-smells.md +390 -0
  17. package/package.json +13 -13
  18. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
  19. package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +26 -12
  20. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  21. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  22. package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +8 -4
  23. package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
  24. package/packages/omo-codex/plugin/components/codegraph/src/hook.ts +8 -7
  25. package/packages/omo-codex/plugin/components/codegraph/test/hook.test.ts +11 -10
  26. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  27. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  28. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  29. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  30. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  31. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
  32. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  33. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  34. package/packages/omo-codex/plugin/components/rules/dist/cli.js +2 -2
  35. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  36. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  37. package/packages/omo-codex/plugin/components/rules/src/sparkshell-awareness.ts +2 -2
  38. package/packages/omo-codex/plugin/components/rules/test/sparkshell-awareness.test.ts +3 -0
  39. package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
  40. package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
  41. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  42. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  43. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  44. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
  45. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +2 -2
  46. package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
  47. package/packages/omo-codex/plugin/hooks/hooks.json +19 -19
  48. package/packages/omo-codex/plugin/package-lock.json +12 -12
  49. package/packages/omo-codex/plugin/package.json +1 -1
  50. package/packages/omo-codex/plugin/scripts/auto-update.mjs +1 -1
  51. package/packages/omo-codex/plugin/skills/init-deep/SKILL.md +21 -26
  52. package/packages/omo-codex/plugin/skills/programming/SKILL.md +25 -121
  53. package/packages/omo-codex/plugin/skills/programming/references/code-smells.md +390 -0
  54. package/packages/omo-codex/plugin/test/auto-update.test.mjs +1 -1
  55. package/packages/omo-codex/plugin/test/bootstrap-setup.test.mjs +31 -0
  56. package/packages/omo-codex/scripts/install-dist/install-local.mjs +30 -13
  57. package/packages/omo-codex/scripts/install-git-bash-mcp-env.test.mjs +24 -0
  58. package/packages/omo-codex/scripts/install-mcp-runtime.test.mjs +36 -0
  59. package/packages/shared-skills/skills/init-deep/SKILL.md +21 -26
  60. package/packages/shared-skills/skills/programming/SKILL.md +25 -121
  61. package/packages/shared-skills/skills/programming/references/code-smells.md +390 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-comment-checker",
3
- "version": "4.11.0",
3
+ "version": "4.11.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.11.0): Recommending Git Bash MCP"
11
+ "statusMessage": "LazyCodex(4.11.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.11.0): Resetting Git Bash MCP Reminder"
23
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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}/components/lazycodex-executor-verify/dist/cli.js\" hook subagent-stop",
10
10
  "timeout": 10,
11
- "statusMessage": "LazyCodex(4.11.0): Verifying LazyCodex Executor Evidence"
11
+ "statusMessage": "LazyCodex(4.11.1): Verifying LazyCodex Executor Evidence"
12
12
  }
13
13
  ]
14
14
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/codex-lazycodex-executor-verify",
3
- "version": "4.11.0",
3
+ "version": "4.11.1",
4
4
  "description": "Codex SubagentStop evidence verifier for LazyCodex executor completions.",
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 post-tool-use",
10
10
  "timeout": 60,
11
- "statusMessage": "LazyCodex(4.11.0): Checking LSP Diagnostics"
11
+ "statusMessage": "LazyCodex(4.11.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.11.0): Resetting LSP Diagnostics Cache"
24
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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",
@@ -4036,9 +4036,9 @@ function getSparkShellRuntimeAwareness(env = process.env, deps = {}) {
4036
4036
  `- Use \`${command} sparkshell --shell '<command>'\` only when shell metacharacters are required.`,
4037
4037
  `- Use \`${command} sparkshell --tmux-pane <pane-id> --tail-lines 400\` to inspect an existing tmux pane. Tail lines must stay between 100 and 1000.`,
4038
4038
  "- When no native sidecar or appserver is available, Sparkshell silently falls back to raw command execution. `OMO_SPARKSHELL_BIN` selects a native sidecar path.",
4039
- "- When `CODEX_THREAD_ID` identifies a Codex session, Sparkshell appends recent session context (first/latest user request + last 5 conversation messages) after the shell result so output consumers stay aligned with the session goals. `OMO_SPARKSHELL_SESSION_CONTEXT=0` disables it.",
4039
+ "- When `CODEX_THREAD_ID` identifies a Codex session, Sparkshell feeds recent session context (first/latest user request + last 5 conversation messages) into oversized-output condensation for relevance ranking, but never appends that context to command output. `OMO_SPARKSHELL_SESSION_CONTEXT=0` disables the lookup.",
4040
4040
  `- Route potentially huge output (full log files, big diffs, \`cat\`/\`grep\` over large artifacts) through \`${command} sparkshell\` instead of reading it raw: oversized output is condensed to a budget while preserving error signatures, repeated patterns, session-goal-relevant lines, and head/tail. Tune with \`--budget <chars>\`; disable with \`OMO_SPARKSHELL_CONDENSE=0\`.`,
4041
- "- Oversized output is first summarized by the spark model (`codex exec`, default `gpt-5.3-codex-spark`) fed with the session context: the summary reproduces the output as-is (no masking) and ends with a `[sparkshell caption]` line describing what ran and which lines were omitted. `OMO_SPARKSHELL_SPARK=0` skips the model and uses deterministic condensation directly."
4041
+ "- Oversized output is first summarized by the spark model (`codex exec`, default `gpt-5.3-codex-spark`) fed with the shell output plus session context: the summary keeps selected output as-is (no masking) and ends with a `[sparkshell caption]` line describing what ran, what the full output contained, and which lines were omitted. `OMO_SPARKSHELL_SPARK=0` skips the model and uses deterministic condensation directly."
4042
4042
  ].join(`
4043
4043
  `);
4044
4044
  }
@@ -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.11.0): Loading Project Rules"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0): Loading Project Rules"
22
+ "statusMessage": "LazyCodex(4.11.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.11.0): Matching Project Rules"
35
+ "statusMessage": "LazyCodex(4.11.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.11.0): Resetting Project Rule Cache"
48
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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",
@@ -85,9 +85,9 @@ export function getSparkShellRuntimeAwareness(env: RuntimeEnv = process.env, dep
85
85
  `- Use \`${command} sparkshell --shell '<command>'\` only when shell metacharacters are required.`,
86
86
  `- Use \`${command} sparkshell --tmux-pane <pane-id> --tail-lines 400\` to inspect an existing tmux pane. Tail lines must stay between 100 and 1000.`,
87
87
  "- When no native sidecar or appserver is available, Sparkshell silently falls back to raw command execution. `OMO_SPARKSHELL_BIN` selects a native sidecar path.",
88
- "- When `CODEX_THREAD_ID` identifies a Codex session, Sparkshell appends recent session context (first/latest user request + last 5 conversation messages) after the shell result so output consumers stay aligned with the session goals. `OMO_SPARKSHELL_SESSION_CONTEXT=0` disables it.",
88
+ "- When `CODEX_THREAD_ID` identifies a Codex session, Sparkshell feeds recent session context (first/latest user request + last 5 conversation messages) into oversized-output condensation for relevance ranking, but never appends that context to command output. `OMO_SPARKSHELL_SESSION_CONTEXT=0` disables the lookup.",
89
89
  `- Route potentially huge output (full log files, big diffs, \`cat\`/\`grep\` over large artifacts) through \`${command} sparkshell\` instead of reading it raw: oversized output is condensed to a budget while preserving error signatures, repeated patterns, session-goal-relevant lines, and head/tail. Tune with \`--budget <chars>\`; disable with \`OMO_SPARKSHELL_CONDENSE=0\`.`,
90
- "- Oversized output is first summarized by the spark model (`codex exec`, default `gpt-5.3-codex-spark`) fed with the session context: the summary reproduces the output as-is (no masking) and ends with a `[sparkshell caption]` line describing what ran and which lines were omitted. `OMO_SPARKSHELL_SPARK=0` skips the model and uses deterministic condensation directly.",
90
+ "- Oversized output is first summarized by the spark model (`codex exec`, default `gpt-5.3-codex-spark`) fed with the shell output plus session context: the summary keeps selected output as-is (no masking) and ends with a `[sparkshell caption]` line describing what ran, what the full output contained, and which lines were omitted. `OMO_SPARKSHELL_SPARK=0` skips the model and uses deterministic condensation directly.",
91
91
  ].join("\n");
92
92
  }
93
93
 
@@ -90,7 +90,10 @@ describe("Codex Sparkshell awareness", () => {
90
90
  expect(parseAdditionalContext(output)).toContain("OMO_SPARKSHELL_CONDENSE");
91
91
  expect(parseAdditionalContext(output)).toContain("OMO_SPARKSHELL_SPARK");
92
92
  expect(parseAdditionalContext(output)).toContain("[sparkshell caption]");
93
+ expect(parseAdditionalContext(output)).toContain("never appends that context to command output");
94
+ expect(parseAdditionalContext(output)).toContain("what the full output contained");
93
95
  expect(parseAdditionalContext(output)).not.toContain("[REDACTED]");
96
+ expect(parseAdditionalContext(output)).not.toContain("appends recent session context");
94
97
  });
95
98
 
96
99
  it("#given inactive env #when SessionStart runs #then emits no Sparkshell guidance", async () => {
@@ -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.11.0): Checking Start-Work Continuation"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0): Checking Start-Work Continuation"
22
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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.11.0): Recording Session Telemetry"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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.11.0): Checking Ultrawork Trigger"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.1",
4
4
  "description": "Codex plugin that injects the ultrawork orchestration directive and ships LazyCodex planning, review, QA, and gate agent roles.",
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.11.0): Checking Ulw-Loop Steering"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0): Enforcing Unlimited Ulw-Loop Budget"
23
+ "statusMessage": "LazyCodex(4.11.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.11.0",
3
+ "version": "4.11.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.11.0): Loading Project Rules"
10
+ "statusMessage": "LazyCodex(4.11.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.11.0): Recording Session Telemetry"
20
+ "statusMessage": "LazyCodex(4.11.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.11.0): Checking Auto Update"
31
+ "statusMessage": "LazyCodex(4.11.1): Checking Auto Update"
32
32
  }
33
33
  ]
34
34
  },
@@ -39,7 +39,7 @@
39
39
  "command": "node \"${PLUGIN_ROOT}/components/bootstrap/dist/cli.js\" hook session-start",
40
40
  "commandWindows": "powershell -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\components\\bootstrap\\scripts\\bootstrap.ps1\"",
41
41
  "timeout": 30,
42
- "statusMessage": "LazyCodex(4.11.0): Checking Bootstrap Provisioning"
42
+ "statusMessage": "LazyCodex(4.11.1): Checking Bootstrap Provisioning"
43
43
  }
44
44
  ]
45
45
  },
@@ -49,7 +49,7 @@
49
49
  "type": "command",
50
50
  "command": "node \"${PLUGIN_ROOT}/components/codegraph/dist/cli.js\" hook session-start",
51
51
  "timeout": 5,
52
- "statusMessage": "LazyCodex(4.11.0): Checking Codegraph Bootstrap"
52
+ "statusMessage": "LazyCodex(4.11.1): Checking Codegraph Bootstrap"
53
53
  }
54
54
  ]
55
55
  }
@@ -61,7 +61,7 @@
61
61
  "type": "command",
62
62
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook user-prompt-submit",
63
63
  "timeout": 10,
64
- "statusMessage": "LazyCodex(4.11.0): Loading Project Rules"
64
+ "statusMessage": "LazyCodex(4.11.1): Loading Project Rules"
65
65
  }
66
66
  ]
67
67
  },
@@ -71,7 +71,7 @@
71
71
  "type": "command",
72
72
  "command": "node \"${PLUGIN_ROOT}/components/ultrawork/dist/cli.js\" hook user-prompt-submit",
73
73
  "timeout": 5,
74
- "statusMessage": "LazyCodex(4.11.0): Checking Ultrawork Trigger"
74
+ "statusMessage": "LazyCodex(4.11.1): Checking Ultrawork Trigger"
75
75
  }
76
76
  ]
77
77
  },
@@ -81,7 +81,7 @@
81
81
  "type": "command",
82
82
  "command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook user-prompt-submit",
83
83
  "timeout": 10,
84
- "statusMessage": "LazyCodex(4.11.0): Checking Ulw-Loop Steering"
84
+ "statusMessage": "LazyCodex(4.11.1): Checking Ulw-Loop Steering"
85
85
  }
86
86
  ]
87
87
  }
@@ -94,7 +94,7 @@
94
94
  "type": "command",
95
95
  "command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook pre-tool-use",
96
96
  "timeout": 5,
97
- "statusMessage": "LazyCodex(4.11.0): Recommending Git Bash MCP"
97
+ "statusMessage": "LazyCodex(4.11.1): Recommending Git Bash MCP"
98
98
  }
99
99
  ]
100
100
  },
@@ -105,7 +105,7 @@
105
105
  "type": "command",
106
106
  "command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook pre-tool-use",
107
107
  "timeout": 5,
108
- "statusMessage": "LazyCodex(4.11.0): Enforcing Unlimited Goal Budget"
108
+ "statusMessage": "LazyCodex(4.11.1): Enforcing Unlimited Goal Budget"
109
109
  }
110
110
  ]
111
111
  }
@@ -118,13 +118,13 @@
118
118
  "type": "command",
119
119
  "command": "node \"${PLUGIN_ROOT}/components/comment-checker/dist/cli.js\" hook post-tool-use",
120
120
  "timeout": 30,
121
- "statusMessage": "LazyCodex(4.11.0): Checking Comments"
121
+ "statusMessage": "LazyCodex(4.11.1): Checking Comments"
122
122
  },
123
123
  {
124
124
  "type": "command",
125
125
  "command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-tool-use",
126
126
  "timeout": 60,
127
- "statusMessage": "LazyCodex(4.11.0): Checking LSP Diagnostics"
127
+ "statusMessage": "LazyCodex(4.11.1): Checking LSP Diagnostics"
128
128
  }
129
129
  ]
130
130
  },
@@ -135,7 +135,7 @@
135
135
  "type": "command",
136
136
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-tool-use",
137
137
  "timeout": 10,
138
- "statusMessage": "LazyCodex(4.11.0): Matching Project Rules"
138
+ "statusMessage": "LazyCodex(4.11.1): Matching Project Rules"
139
139
  }
140
140
  ]
141
141
  }
@@ -148,7 +148,7 @@
148
148
  "type": "command",
149
149
  "command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook post-compact",
150
150
  "timeout": 5,
151
- "statusMessage": "LazyCodex(4.11.0): Resetting Git Bash MCP Reminder"
151
+ "statusMessage": "LazyCodex(4.11.1): Resetting Git Bash MCP Reminder"
152
152
  }
153
153
  ]
154
154
  },
@@ -159,7 +159,7 @@
159
159
  "type": "command",
160
160
  "command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-compact",
161
161
  "timeout": 10,
162
- "statusMessage": "LazyCodex(4.11.0): Resetting Project Rule Cache"
162
+ "statusMessage": "LazyCodex(4.11.1): Resetting Project Rule Cache"
163
163
  }
164
164
  ]
165
165
  },
@@ -170,7 +170,7 @@
170
170
  "type": "command",
171
171
  "command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-compact",
172
172
  "timeout": 5,
173
- "statusMessage": "LazyCodex(4.11.0): Resetting LSP Diagnostics Cache"
173
+ "statusMessage": "LazyCodex(4.11.1): Resetting LSP Diagnostics Cache"
174
174
  }
175
175
  ]
176
176
  }
@@ -182,7 +182,7 @@
182
182
  "type": "command",
183
183
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook stop",
184
184
  "timeout": 10,
185
- "statusMessage": "LazyCodex(4.11.0): Checking Start-Work Continuation"
185
+ "statusMessage": "LazyCodex(4.11.1): Checking Start-Work Continuation"
186
186
  }
187
187
  ]
188
188
  }
@@ -194,7 +194,7 @@
194
194
  "type": "command",
195
195
  "command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook subagent-stop",
196
196
  "timeout": 10,
197
- "statusMessage": "LazyCodex(4.11.0): Checking Start-Work Continuation"
197
+ "statusMessage": "LazyCodex(4.11.1): Checking Start-Work Continuation"
198
198
  }
199
199
  ]
200
200
  },
@@ -205,7 +205,7 @@
205
205
  "type": "command",
206
206
  "command": "node \"${PLUGIN_ROOT}/components/lazycodex-executor-verify/dist/cli.js\" hook subagent-stop",
207
207
  "timeout": 10,
208
- "statusMessage": "LazyCodex(4.11.0): Verifying LazyCodex Executor Evidence"
208
+ "statusMessage": "LazyCodex(4.11.1): Verifying LazyCodex Executor Evidence"
209
209
  }
210
210
  ]
211
211
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@sisyphuslabs/omo-codex-plugin",
3
- "version": "4.10.0",
3
+ "version": "4.11.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@sisyphuslabs/omo-codex-plugin",
9
- "version": "4.10.0",
9
+ "version": "4.11.0",
10
10
  "workspaces": [
11
11
  "components/codegraph",
12
12
  "components/comment-checker",
@@ -97,7 +97,7 @@
97
97
  },
98
98
  "components/codegraph": {
99
99
  "name": "@sisyphuslabs/codex-codegraph",
100
- "version": "4.10.0",
100
+ "version": "4.11.0",
101
101
  "bin": {
102
102
  "omo-codegraph": "dist/cli.js"
103
103
  },
@@ -113,7 +113,7 @@
113
113
  },
114
114
  "components/comment-checker": {
115
115
  "name": "@code-yeongyu/codex-comment-checker",
116
- "version": "4.10.0",
116
+ "version": "4.11.0",
117
117
  "license": "MIT",
118
118
  "bin": {
119
119
  "omo-comment-checker": "dist/cli.js"
@@ -134,7 +134,7 @@
134
134
  },
135
135
  "components/git-bash": {
136
136
  "name": "@sisyphuslabs/codex-git-bash-hook",
137
- "version": "4.10.0",
137
+ "version": "4.11.0",
138
138
  "bin": {
139
139
  "omo-git-bash-hook": "dist/cli.js"
140
140
  },
@@ -149,7 +149,7 @@
149
149
  },
150
150
  "components/lazycodex-executor-verify": {
151
151
  "name": "@code-yeongyu/codex-lazycodex-executor-verify",
152
- "version": "4.10.0",
152
+ "version": "4.11.0",
153
153
  "license": "MIT",
154
154
  "bin": {
155
155
  "lazycodex-executor-verify": "dist/cli.js"
@@ -166,7 +166,7 @@
166
166
  },
167
167
  "components/lsp": {
168
168
  "name": "@code-yeongyu/codex-lsp",
169
- "version": "4.10.0",
169
+ "version": "4.11.0",
170
170
  "license": "MIT",
171
171
  "dependencies": {
172
172
  "@code-yeongyu/lsp-daemon": "file:../../../../lsp-daemon"
@@ -186,7 +186,7 @@
186
186
  },
187
187
  "components/rules": {
188
188
  "name": "@code-yeongyu/codex-rules",
189
- "version": "4.10.0",
189
+ "version": "4.11.0",
190
190
  "license": "MIT",
191
191
  "dependencies": {
192
192
  "picomatch": "^4.0.3"
@@ -208,7 +208,7 @@
208
208
  },
209
209
  "components/start-work-continuation": {
210
210
  "name": "@code-yeongyu/codex-start-work-continuation",
211
- "version": "4.10.0",
211
+ "version": "4.11.0",
212
212
  "license": "MIT",
213
213
  "bin": {
214
214
  "omo-start-work-continuation": "dist/cli.js"
@@ -226,7 +226,7 @@
226
226
  },
227
227
  "components/telemetry": {
228
228
  "name": "@code-yeongyu/codex-telemetry",
229
- "version": "4.10.0",
229
+ "version": "4.11.0",
230
230
  "license": "MIT",
231
231
  "bin": {
232
232
  "omo-telemetry": "dist/cli.js"
@@ -244,7 +244,7 @@
244
244
  },
245
245
  "components/ultrawork": {
246
246
  "name": "@code-yeongyu/codex-ultrawork",
247
- "version": "4.10.0",
247
+ "version": "4.11.0",
248
248
  "license": "MIT",
249
249
  "bin": {
250
250
  "omo-ultrawork": "dist/cli.js"
@@ -262,7 +262,7 @@
262
262
  },
263
263
  "components/ulw-loop": {
264
264
  "name": "@code-yeongyu/codex-ulw-loop",
265
- "version": "4.10.0",
265
+ "version": "4.11.0",
266
266
  "license": "MIT",
267
267
  "bin": {
268
268
  "omo-ulw-loop": "dist/cli.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisyphuslabs/omo-codex-plugin",
3
- "version": "4.11.0",
3
+ "version": "4.11.1",
4
4
  "description": "Aggregate Codex plugin root for OMO components.",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.12.1",
@@ -23,7 +23,7 @@ const DEFAULT_RETRY_INTERVAL_MS = 30 * 60 * 1_000;
23
23
  const DEFAULT_UPDATE_COMMAND = "npx";
24
24
  const DEFAULT_UPDATE_ARGS = ["--yes", "lazycodex-ai@latest", "install", "--no-tui", "--codex-autonomous"];
25
25
  const MARKETPLACE_FLOW_NOTICE =
26
- "[LazyCodex] Auto-update skipped: this LazyCodex install is managed by the Codex plugin marketplace, so the npx self-update was not started. Tell the user to upgrade with `codex plugin marketplace upgrade sisyphuslabs`, and that Codex will ask them to re-approve hooks after the upgrade.";
26
+ "[LazyCodex] Auto-update skipped: this LazyCodex install is managed by the Codex plugin marketplace, so the npx self-update was not started. Tell the user to upgrade with `codex plugin marketplace upgrade sisyphuslabs`, and that Codex will require hook re-approval after the upgrade.";
27
27
 
28
28
  export function resolveAutoUpdatePlan({ env = process.env, now = Date.now(), lastCheckedAt, lastAttemptedAt, lastStatus, installFlow } = {}) {
29
29
  if (env.LAZYCODEX_AUTO_UPDATE_DISABLED === "1" || env.OMO_CODEX_AUTO_UPDATE_DISABLED === "1") {