oh-my-claude-sisyphus 3.2.2 → 3.2.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.
package/commands/hud.md CHANGED
@@ -106,7 +106,7 @@ async function main() {
106
106
  }
107
107
 
108
108
  // 3. Fallback
109
- console.log("[OMC] active");
109
+ console.log("[OMC] run /omc-setup to install properly");
110
110
  }
111
111
 
112
112
  main();
@@ -269,7 +269,7 @@ describe('Installer Constants', () => {
269
269
  });
270
270
  it('should match package.json version', () => {
271
271
  // This is a runtime check - VERSION should match the package.json
272
- expect(VERSION).toBe('3.2.2');
272
+ expect(VERSION).toBe('3.2.3');
273
273
  });
274
274
  });
275
275
  describe('File Paths', () => {
@@ -31,7 +31,7 @@ export declare const VERSION_FILE: string;
31
31
  */
32
32
  export declare const CORE_COMMANDS: string[];
33
33
  /** Current version */
34
- export declare const VERSION = "3.2.2";
34
+ export declare const VERSION = "3.2.3";
35
35
  /** Installation result */
36
36
  export interface InstallResult {
37
37
  success: boolean;
@@ -37,7 +37,7 @@ export const VERSION_FILE = join(CLAUDE_CONFIG_DIR, '.omc-version.json');
37
37
  */
38
38
  export const CORE_COMMANDS = [];
39
39
  /** Current version */
40
- export const VERSION = '3.2.2';
40
+ export const VERSION = '3.2.3';
41
41
  /**
42
42
  * Check if the current Node.js version meets the minimum requirement
43
43
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -73,7 +73,7 @@ async function main() {
73
73
  }
74
74
 
75
75
  // 3. Fallback
76
- console.log("[OMC] active");
76
+ console.log("[OMC] run /omc-setup to install properly");
77
77
  }
78
78
 
79
79
  main();
@@ -108,7 +108,7 @@ async function main() {
108
108
  }
109
109
 
110
110
  // 3. Fallback
111
- console.log("[OMC] active");
111
+ console.log("[OMC] run /omc-setup to install properly");
112
112
  }
113
113
 
114
114
  main();