lazycodex-ai 4.16.2 → 4.16.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.
Files changed (117) hide show
  1. package/README.md +2 -2
  2. package/dist/cli/index.js +800 -536
  3. package/dist/cli-node/index.js +800 -536
  4. package/package.json +1 -1
  5. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
  6. package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +398 -246
  7. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  8. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  9. package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
  10. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  11. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  12. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  13. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  14. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  15. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
  16. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  17. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  18. package/packages/omo-codex/plugin/components/rules/bundled-rules/hephaestus/gpt-5.6.md +93 -0
  19. package/packages/omo-codex/plugin/components/rules/dist/cli.js +43 -24
  20. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  21. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  22. package/packages/omo-codex/plugin/components/rules/src/codex-hook.ts +2 -1
  23. package/packages/omo-codex/plugin/components/rules/src/dynamic-target-fingerprints.ts +15 -6
  24. package/packages/omo-codex/plugin/components/rules/src/rules-engine-factory.ts +7 -2
  25. package/packages/omo-codex/plugin/components/rules/src/static-injection.ts +2 -2
  26. package/packages/omo-codex/plugin/components/rules/test/codex-hook.test.ts +32 -0
  27. package/packages/omo-codex/plugin/components/rules/test/hephaestus-model-variant.test.ts +106 -0
  28. package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
  29. package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
  30. package/packages/omo-codex/plugin/components/teammode/AGENTS.md +12 -9
  31. package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
  32. package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
  33. package/packages/omo-codex/plugin/components/teammode/skills/teammode/SKILL.md +136 -76
  34. package/packages/omo-codex/plugin/components/teammode/skills/teammode/scripts/team-guide.mjs +94 -23
  35. package/packages/omo-codex/plugin/components/teammode/skills/teammode/scripts/team-state.mjs +94 -14
  36. package/packages/omo-codex/plugin/components/teammode/skills/teammode/scripts/team-transport.mjs +55 -0
  37. package/packages/omo-codex/plugin/components/teammode/skills/teammode/scripts/team.mjs +72 -18
  38. package/packages/omo-codex/plugin/components/teammode/test/thread-title-hook.test.ts +23 -0
  39. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  40. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  41. package/packages/omo-codex/plugin/components/ultrawork/agents/explorer.toml +24 -41
  42. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-clone-fidelity-reviewer.toml +1 -1
  43. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +1 -1
  44. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-executor.toml +2 -2
  45. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
  46. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-qa-executor.toml +1 -1
  47. package/packages/omo-codex/plugin/components/ultrawork/agents/librarian.toml +21 -49
  48. package/packages/omo-codex/plugin/components/ultrawork/agents/metis.toml +17 -29
  49. package/packages/omo-codex/plugin/components/ultrawork/agents/momus.toml +20 -50
  50. package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +18 -39
  51. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  52. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
  53. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +1 -1
  54. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +2 -2
  55. package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
  56. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +1 -1
  57. package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
  58. package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
  59. package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
  60. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
  61. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
  62. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
  63. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
  64. package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
  65. package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
  66. package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
  67. package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
  68. package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
  69. package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
  70. package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
  71. package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
  72. package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
  73. package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
  74. package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
  75. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
  76. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
  77. package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
  78. package/packages/omo-codex/plugin/package-lock.json +13 -13
  79. package/packages/omo-codex/plugin/package.json +1 -1
  80. package/packages/omo-codex/plugin/scripts/auto-update.mjs +9 -2
  81. package/packages/omo-codex/plugin/scripts/entry-guard.mjs +26 -0
  82. package/packages/omo-codex/plugin/scripts/materialize-shared-upstreams.mjs +3 -1
  83. package/packages/omo-codex/plugin/scripts/migrate-codex-config/multi-agent-v2-guard.mjs +39 -4
  84. package/packages/omo-codex/plugin/scripts/migrate-codex-config/subagent-limit-guard.mjs +24 -4
  85. package/packages/omo-codex/plugin/scripts/migrate-codex-config.mjs +3 -3
  86. package/packages/omo-codex/plugin/scripts/migrate-omo-sot.mjs +2 -2
  87. package/packages/omo-codex/plugin/scripts/sync-hook-status-messages.mjs +2 -2
  88. package/packages/omo-codex/plugin/scripts/sync-skills.mjs +6 -4
  89. package/packages/omo-codex/plugin/scripts/sync-version.mjs +4 -2
  90. package/packages/omo-codex/plugin/skills/init-deep/SKILL.md +1 -1
  91. package/packages/omo-codex/plugin/skills/refactor/SKILL.md +1 -1
  92. package/packages/omo-codex/plugin/skills/remove-ai-slops/SKILL.md +1 -1
  93. package/packages/omo-codex/plugin/skills/review-work/SKILL.md +1 -1
  94. package/packages/omo-codex/plugin/skills/start-work/SKILL.md +1 -1
  95. package/packages/omo-codex/plugin/skills/teammode/SKILL.md +136 -76
  96. package/packages/omo-codex/plugin/skills/teammode/scripts/team-guide.mjs +94 -23
  97. package/packages/omo-codex/plugin/skills/teammode/scripts/team-state.mjs +94 -14
  98. package/packages/omo-codex/plugin/skills/teammode/scripts/team-transport.mjs +55 -0
  99. package/packages/omo-codex/plugin/skills/teammode/scripts/team.mjs +72 -18
  100. package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +1 -1
  101. package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +1 -1
  102. package/packages/omo-codex/plugin/skills/ulw-research/SKILL.md +2 -2
  103. package/packages/omo-codex/plugin/skills/visual-qa/SKILL.md +2 -2
  104. package/packages/omo-codex/plugin/test/aggregate-agents.test.mjs +47 -1
  105. package/packages/omo-codex/plugin/test/aggregate-skills.test.mjs +4 -2
  106. package/packages/omo-codex/plugin/test/auto-update-restart-notice.test.mjs +33 -0
  107. package/packages/omo-codex/plugin/test/migrate-codex-config.test.mjs +146 -9
  108. package/packages/omo-codex/plugin/test/multi-agent-v2-regression.test.mjs +71 -0
  109. package/packages/omo-codex/plugin/test/subagent-limit-migration.test.mjs +32 -0
  110. package/packages/omo-codex/plugin/test/sync-skills-orchestration.test.mjs +9 -2
  111. package/packages/omo-codex/plugin/test/teammode-transport.test.mjs +345 -0
  112. package/packages/omo-codex/scripts/install-dist/install-local.mjs +436 -284
  113. package/packages/shared-skills/skills/review-work/SKILL.md +1 -1
  114. package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +1 -1
  115. package/packages/shared-skills/skills/ulw-research/SKILL.md +2 -2
  116. package/packages/shared-skills/skills/visual-qa/SKILL.md +1 -1
  117. /package/packages/omo-codex/plugin/components/rules/bundled-rules/{hephaestus.md → hephaestus/gpt-5.5.md} +0 -0
package/README.md CHANGED
@@ -243,7 +243,7 @@ Even with only the following subscriptions, `ultrawork` works well (this project
243
243
 
244
244
  **Sisyphus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`** ) is your main orchestrator. He plans, delegates to specialists, and drives tasks to completion with aggressive parallel execution. He does not stop halfway.
245
245
 
246
- **Hephaestus** (`gpt-5.5`) is your autonomous deep worker. Give him a goal, not a recipe. He explores the codebase, researches patterns, and executes end-to-end without hand-holding. *The Legitimate Craftsman.*
246
+ **Hephaestus** (`gpt-5.6-sol` on OpenAI or Vercel, then `gpt-5.5`) is your autonomous deep worker. Give him a goal, not a recipe. He explores the codebase, researches patterns, and executes end-to-end without hand-holding. *The Legitimate Craftsman.*
247
247
 
248
248
  **Prometheus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`** ) is your strategic planner. Interview mode: he asks questions, identifies scope, and builds a detailed plan before a single line of code is touched.
249
249
 
@@ -288,7 +288,7 @@ When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **cat
288
288
  | `quick` | Single-file changes, typos |
289
289
  | `ultrabrain` | Hard logic, architecture decisions |
290
290
 
291
- The agent says what kind of work it needs; the harness picks the right model. `ultrabrain` now routes to GPT-5.5 xhigh by default. You touch nothing.
291
+ The agent says what kind of work it needs; the harness picks the right model. `ultrabrain` now routes to GPT-5.6 Sol xhigh through OpenAI or Vercel when available, then GPT-5.5 xhigh. You touch nothing.
292
292
 
293
293
  ### Claude Code Compatibility
294
294