oh-my-claude-sisyphus 2.0.5 → 2.0.6

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/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  ![oh-my-claude-sisyphus](https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claude-sisyphus-website/main/social-preview.png)
4
4
 
5
- # 🚀 v2.0.1 - Claude Code Native Multi-Agent Orchestration
5
+ # 🚀 v2.0.6 - Claude Code Native Multi-Agent Orchestration
6
6
 
7
- [![Version](https://img.shields.io/badge/version-2.0.1-ff6b6b)](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/releases)
7
+ [![Version](https://img.shields.io/badge/version-2.0.6-ff6b6b)](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/releases)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
9
  [![Agents](https://img.shields.io/badge/Agents-19-ff0040)](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus)
10
10
  [![Days Since Ban](https://img.shields.io/badge/Days%20Since%20Ban-0-00ffff)](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus)
@@ -94,6 +94,25 @@ chmod +x scripts/install.sh
94
94
 
95
95
  ---
96
96
 
97
+ ## 🎯 After Installation: Run /sisyphus-default
98
+
99
+ **For best performance**, run this command in Claude Code after installation:
100
+
101
+ ```
102
+ /sisyphus-default
103
+ ```
104
+
105
+ This command will:
106
+ 1. ✅ Update `~/.claude/CLAUDE.md` with the latest Sisyphus configuration
107
+ 2. ✅ Install hook scripts to `~/.claude/hooks/`
108
+ 3. ✅ Configure 19 agents with smart model routing
109
+ 4. ✅ Enable keyword detection (ultrawork, search, analyze modes)
110
+
111
+ > **Note:** If you installed via the **curl one-liner**, this is already done automatically.
112
+ > For **plugin** or **npm** installs, running `/sisyphus-default` ensures full configuration.
113
+
114
+ ---
115
+
97
116
  ## What Gets Installed
98
117
 
99
118
  ### Plugin Structure (Claude Code Plugin Format)
@@ -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.5');
234
+ expect(VERSION).toBe('2.0.6');
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.5";
27
+ export declare const VERSION = "2.0.6";
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.5';
32
+ export const VERSION = '2.0.6';
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.5",
3
+ "version": "2.0.6",
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.5"
1709
+ VERSION="2.0.6"
1710
1710
  VERSION_FILE="$CLAUDE_CONFIG_DIR/.sisyphus-version.json"
1711
1711
 
1712
1712
  cat > "$VERSION_FILE" << VERSION_EOF