coder-config 0.43.3 → 0.43.4

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
@@ -202,9 +202,6 @@ function runCli(manager) {
202
202
  console.log(`CD hook: ${status.installed ? 'installed' : 'not installed'}`);
203
203
  console.log(`Shell: ${status.shell}`);
204
204
  console.log(`RC file: ${status.rcFile}`);
205
- } else if (args[1]) {
206
- // workstream <name> - show details for that workstream
207
- manager.workstreamShow(args[1]);
208
205
  } else {
209
206
  manager.workstreamList();
210
207
  }
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.43.3';
5
+ const VERSION = '0.43.4';
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.43.3",
3
+ "version": "0.43.4",
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",