coder-config 0.46.11-beta → 0.46.12-beta

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/cli.js CHANGED
@@ -138,7 +138,7 @@ function runCli(manager) {
138
138
  manager.workstreamAddProject(args[2], args[3]);
139
139
  } else if (args[1] === 'remove' || args[1] === 'rm') {
140
140
  manager.workstreamRemoveProject(args[2], args[3]);
141
- } else if (args[1] === 'inject') {
141
+ } else if (args[1] === 'inject' || args[1] === 'reload') {
142
142
  const silent = args.includes('--silent') || args.includes('-s');
143
143
  manager.workstreamInject(silent);
144
144
  } else if (args[1] === 'detect') {
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.46.11-beta';
5
+ const VERSION = '0.46.12-beta';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.46.11-beta",
3
+ "version": "0.46.12-beta",
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",