coder-config 0.42.38 → 0.42.39

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/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.42.38';
5
+ const VERSION = '0.42.39';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/lib/sessions.js CHANGED
@@ -138,9 +138,8 @@ function installHooks() {
138
138
  return false;
139
139
  });
140
140
  if (!hasStartHook) {
141
- // Use new hook format with matcher
141
+ // Use new hook format (no matcher for SessionStart)
142
142
  settings.hooks.SessionStart.push({
143
- matcher: {},
144
143
  hooks: [{ type: 'command', command: sessionStartHook }]
145
144
  });
146
145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.42.38",
3
+ "version": "0.42.39",
4
4
  "description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
@@ -150,9 +150,8 @@ function installHooks() {
150
150
  return false;
151
151
  });
152
152
  if (!hasStartHook) {
153
- // Use new hook format with matcher
153
+ // Use new hook format (no matcher for SessionStart)
154
154
  settings.hooks.SessionStart.push({
155
- matcher: {},
156
155
  hooks: [{ type: 'command', command: sessionStartHook }]
157
156
  });
158
157
  }