@a5c-ai/babysitter-codex 0.1.11-staging.711db4dc → 0.1.11-staging.73bc97dc

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
@@ -83,9 +83,10 @@ Verify the active shared process-library binding:
83
83
  babysitter process-library:active --json
84
84
  ```
85
85
 
86
- On native Windows, Codex currently does not execute hooks. The plugin still
87
- installs correctly, but the lifecycle hooks will not fire until Codex enables
88
- Windows hook execution.
86
+ On native Windows, Codex hooks require **Codex CLI >= 0.119.0** (released
87
+ 2026-04-10, [openai/codex#17268](https://github.com/openai/codex/pull/17268)).
88
+ Older Codex versions silently skipped hook execution on Windows. If hooks do
89
+ not fire after install, run `codex --version` and upgrade if needed.
89
90
 
90
91
  ## License
91
92
 
@@ -489,8 +489,11 @@ function warnWindowsHooks() {
489
489
  if (process.platform !== 'win32') {
490
490
  return;
491
491
  }
492
- console.warn('[babysitter] Warning: Codex hooks are currently disabled on native Windows.');
493
- console.warn('[babysitter] The plugin will install correctly, but SessionStart/UserPromptSubmit/Stop hooks will not fire until Codex enables Windows hook execution.');
492
+ // Codex enabled Windows hooks in v0.119.0 (2026-04-10, openai/codex#17268).
493
+ // Older Codex CLIs still skip hook execution on Windows; warn so users on
494
+ // pinned/older versions know to upgrade.
495
+ console.warn('[babysitter] Note: Codex hooks on Windows require Codex CLI >= 0.119.0.');
496
+ console.warn('[babysitter] If hooks do not fire, run `codex --version` and upgrade if you are below 0.119.0.');
494
497
  }
495
498
 
496
499
  module.exports = {
package/hooks.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "hooks": {
3
3
  "SessionStart": [
4
4
  {
5
- "matcher": "*",
5
+ "matcher": ".*",
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "UserPromptSubmit": [
15
15
  {
16
- "matcher": "*",
16
+ "matcher": ".*",
17
17
  "hooks": [
18
18
  {
19
19
  "type": "command",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "Stop": [
26
26
  {
27
- "matcher": "*",
27
+ "matcher": ".*",
28
28
  "hooks": [
29
29
  {
30
30
  "type": "command",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/babysitter-codex",
3
- "version": "0.1.11-staging.711db4dc",
3
+ "version": "0.1.11-staging.73bc97dc",
4
4
  "description": "Babysitter Codex skill bundle and integration package for OpenAI Codex CLI with SDK-managed process-library bootstrapping, 15 orchestration modes, and BOM-safe SKILL installation",
5
5
  "scripts": {
6
6
  "test": "node test/integration.test.js && node test/packaged-install.test.js",
@@ -45,6 +45,6 @@
45
45
  },
46
46
  "homepage": "https://github.com/a5c-ai/babysitter/tree/main/plugins/babysitter-codex#readme",
47
47
  "dependencies": {
48
- "@a5c-ai/babysitter-sdk": "0.0.188-staging.711db4dc"
48
+ "@a5c-ai/babysitter-sdk": "0.0.188-staging.73bc97dc"
49
49
  }
50
50
  }