oh-my-claude-sisyphus 2.0.2 → 2.0.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.
@@ -231,7 +231,7 @@ describe('Installer Constants', () => {
231
231
  });
232
232
  it('should match package.json version', () => {
233
233
  // This is a runtime check - VERSION should match the package.json
234
- expect(VERSION).toBe('2.0.2');
234
+ expect(VERSION).toBe('2.0.4');
235
235
  });
236
236
  });
237
237
  describe('File Paths', () => {
@@ -24,7 +24,7 @@ export declare const HOOKS_DIR: string;
24
24
  export declare const SETTINGS_FILE: string;
25
25
  export declare const VERSION_FILE: string;
26
26
  /** Current version */
27
- export declare const VERSION = "2.0.2";
27
+ export declare const VERSION = "2.0.4";
28
28
  /** Installation result */
29
29
  export interface InstallResult {
30
30
  success: boolean;
@@ -29,7 +29,7 @@ export const HOOKS_DIR = join(CLAUDE_CONFIG_DIR, 'hooks');
29
29
  export const SETTINGS_FILE = join(CLAUDE_CONFIG_DIR, 'settings.json');
30
30
  export const VERSION_FILE = join(CLAUDE_CONFIG_DIR, '.sisyphus-version.json');
31
31
  /** Current version */
32
- export const VERSION = '2.0.2';
32
+ export const VERSION = '2.0.4';
33
33
  /**
34
34
  * Check if the current Node.js version meets the minimum requirement
35
35
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
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",
@@ -1706,7 +1706,7 @@ else
1706
1706
  fi
1707
1707
 
1708
1708
  # Save version metadata for auto-update system
1709
- VERSION="2.0.2"
1709
+ VERSION="2.0.4"
1710
1710
  VERSION_FILE="$CLAUDE_CONFIG_DIR/.sisyphus-version.json"
1711
1711
 
1712
1712
  cat > "$VERSION_FILE" << VERSION_EOF