oh-my-claude-sisyphus 3.0.3 → 3.0.5
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
|
@@ -23,18 +23,17 @@
|
|
|
23
23
|
## Get Started (30 seconds)
|
|
24
24
|
|
|
25
25
|
**Step 1:** Install the plugin
|
|
26
|
-
```bash
|
|
27
|
-
claude plugin install oh-my-claude-sisyphus
|
|
28
26
|
```
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
```
|
|
32
|
-
/plugin oh-my-claude-sisyphus
|
|
27
|
+
/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
|
|
28
|
+
/plugin install oh-my-claudecode
|
|
33
29
|
```
|
|
34
30
|
|
|
35
31
|
**Step 2:** Run setup
|
|
32
|
+
```
|
|
33
|
+
/omc-setup
|
|
34
|
+
```
|
|
36
35
|
|
|
37
|
-
|
|
36
|
+
That's it. Everything else is automatic.
|
|
38
37
|
|
|
39
38
|
---
|
|
40
39
|
|
|
@@ -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.0.
|
|
272
|
+
expect(VERSION).toBe('3.0.5');
|
|
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.0.
|
|
34
|
+
export declare const VERSION = "3.0.5";
|
|
35
35
|
/** Installation result */
|
|
36
36
|
export interface InstallResult {
|
|
37
37
|
success: boolean;
|
package/dist/installer/index.js
CHANGED
|
@@ -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.0.
|
|
40
|
+
export const VERSION = '3.0.5';
|
|
41
41
|
/**
|
|
42
42
|
* Check if the current Node.js version meets the minimum requirement
|
|
43
43
|
*/
|
package/package.json
CHANGED
package/scripts/plugin-setup.mjs
CHANGED
|
@@ -39,8 +39,8 @@ import { join } from "node:path";
|
|
|
39
39
|
async function main() {
|
|
40
40
|
const home = homedir();
|
|
41
41
|
|
|
42
|
-
// 1. Try plugin cache first (
|
|
43
|
-
const pluginCacheBase = join(home, ".claude/plugins/cache/
|
|
42
|
+
// 1. Try plugin cache first (marketplace: omc, plugin: oh-my-claudecode)
|
|
43
|
+
const pluginCacheBase = join(home, ".claude/plugins/cache/omc/oh-my-claudecode");
|
|
44
44
|
if (existsSync(pluginCacheBase)) {
|
|
45
45
|
try {
|
|
46
46
|
const versions = readdirSync(pluginCacheBase);
|
|
@@ -59,6 +59,8 @@ async function main() {
|
|
|
59
59
|
const devPaths = [
|
|
60
60
|
join(home, "Workspace/oh-my-claude-sisyphus/dist/hud/index.js"),
|
|
61
61
|
join(home, "workspace/oh-my-claude-sisyphus/dist/hud/index.js"),
|
|
62
|
+
join(home, "Workspace/oh-my-claudecode/dist/hud/index.js"),
|
|
63
|
+
join(home, "workspace/oh-my-claudecode/dist/hud/index.js"),
|
|
62
64
|
];
|
|
63
65
|
|
|
64
66
|
for (const devPath of devPaths) {
|