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 +21 -2
- package/dist/__tests__/installer.test.js +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.js +1 -1
- package/package.json +1 -1
- package/scripts/install.sh +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
# 🚀 v2.0.
|
|
5
|
+
# 🚀 v2.0.6 - Claude Code Native Multi-Agent Orchestration
|
|
6
6
|
|
|
7
|
-
[](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/releases)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
[](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus)
|
|
10
10
|
[](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.
|
|
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.
|
|
27
|
+
export declare const VERSION = "2.0.6";
|
|
28
28
|
/** Installation result */
|
|
29
29
|
export interface InstallResult {
|
|
30
30
|
success: boolean;
|
package/dist/installer/index.js
CHANGED
|
@@ -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.
|
|
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
package/scripts/install.sh
CHANGED