oh-my-claude-sisyphus 3.8.4 → 3.8.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/dist/__tests__/installer.test.js +1 -1
- package/dist/features/state-manager/index.d.ts.map +1 -1
- package/dist/features/state-manager/index.js +5 -1
- package/dist/features/state-manager/index.js.map +1 -1
- package/dist/hooks/pre-compact/index.d.ts +15 -0
- package/dist/hooks/pre-compact/index.d.ts.map +1 -1
- package/dist/hooks/pre-compact/index.js +107 -15
- package/dist/hooks/pre-compact/index.js.map +1 -1
- package/dist/hooks/swarm/claiming.d.ts +9 -0
- package/dist/hooks/swarm/claiming.d.ts.map +1 -1
- package/dist/hooks/swarm/claiming.js +28 -3
- package/dist/hooks/swarm/claiming.js.map +1 -1
- package/dist/hooks/swarm/index.d.ts.map +1 -1
- package/dist/hooks/swarm/index.js +11 -2
- package/dist/hooks/swarm/index.js.map +1 -1
- package/dist/hooks/swarm/state.d.ts +18 -0
- package/dist/hooks/swarm/state.d.ts.map +1 -1
- package/dist/hooks/swarm/state.js +34 -1
- package/dist/hooks/swarm/state.js.map +1 -1
- package/dist/hud/omc-state.d.ts.map +1 -1
- package/dist/hud/omc-state.js +20 -7
- package/dist/hud/omc-state.js.map +1 -1
- package/dist/hud/state.d.ts +1 -1
- package/dist/hud/state.d.ts.map +1 -1
- package/dist/hud/state.js +21 -9
- package/dist/hud/state.js.map +1 -1
- package/dist/installer/hooks.d.ts +1 -1
- package/dist/installer/hooks.d.ts.map +1 -1
- package/dist/installer/hooks.js +6 -9
- package/dist/installer/hooks.js.map +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.d.ts.map +1 -1
- package/dist/installer/index.js +3 -3
- package/dist/installer/index.js.map +1 -1
- package/docs/MIGRATION.md +7 -3
- package/docs/REFERENCE.md +8 -33
- package/package.json +1 -1
- package/skills/omc-setup/SKILL.md +6 -25
|
@@ -446,34 +446,15 @@ Ask user: "Would you like to install the OMC CLI for standalone analytics? (Reco
|
|
|
446
446
|
1. **Yes (Recommended)** - Install CLI tools globally for `omc stats`, `omc agents`, etc.
|
|
447
447
|
2. **No** - Skip CLI installation, use only plugin skills
|
|
448
448
|
|
|
449
|
-
###
|
|
449
|
+
### CLI Installation Note
|
|
450
450
|
|
|
451
|
-
|
|
452
|
-
# Check for bun (preferred) or npm
|
|
453
|
-
if command -v bun &> /dev/null; then
|
|
454
|
-
echo "Installing OMC CLI via bun..."
|
|
455
|
-
bun install -g oh-my-claude-sisyphus
|
|
456
|
-
elif command -v npm &> /dev/null; then
|
|
457
|
-
echo "Installing OMC CLI via npm..."
|
|
458
|
-
npm install -g oh-my-claude-sisyphus
|
|
459
|
-
else
|
|
460
|
-
echo "ERROR: Neither bun nor npm found. Please install Node.js or Bun first."
|
|
461
|
-
exit 1
|
|
462
|
-
fi
|
|
463
|
-
|
|
464
|
-
# Verify installation
|
|
465
|
-
if command -v omc &> /dev/null; then
|
|
466
|
-
echo "✓ OMC CLI installed successfully!"
|
|
467
|
-
echo " Try: omc stats, omc agents, omc tui"
|
|
468
|
-
else
|
|
469
|
-
echo "⚠ CLI installed but 'omc' not in PATH."
|
|
470
|
-
echo " You may need to restart your terminal or add npm/bun global bin to PATH."
|
|
471
|
-
fi
|
|
472
|
-
```
|
|
451
|
+
The CLI (`omc` command) is **no longer supported** via npm/bun global install.
|
|
473
452
|
|
|
474
|
-
|
|
453
|
+
All functionality is available through the plugin system:
|
|
454
|
+
- Use `/oh-my-claudecode:help` for guidance
|
|
455
|
+
- Use `/oh-my-claudecode:doctor` for diagnostics
|
|
475
456
|
|
|
476
|
-
Skip this step
|
|
457
|
+
Skip this step - the plugin provides all features.
|
|
477
458
|
|
|
478
459
|
## Step 4: Verify Plugin Installation
|
|
479
460
|
|