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.
Files changed (40) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/dist/__tests__/installer.test.js +1 -1
  4. package/dist/features/state-manager/index.d.ts.map +1 -1
  5. package/dist/features/state-manager/index.js +5 -1
  6. package/dist/features/state-manager/index.js.map +1 -1
  7. package/dist/hooks/pre-compact/index.d.ts +15 -0
  8. package/dist/hooks/pre-compact/index.d.ts.map +1 -1
  9. package/dist/hooks/pre-compact/index.js +107 -15
  10. package/dist/hooks/pre-compact/index.js.map +1 -1
  11. package/dist/hooks/swarm/claiming.d.ts +9 -0
  12. package/dist/hooks/swarm/claiming.d.ts.map +1 -1
  13. package/dist/hooks/swarm/claiming.js +28 -3
  14. package/dist/hooks/swarm/claiming.js.map +1 -1
  15. package/dist/hooks/swarm/index.d.ts.map +1 -1
  16. package/dist/hooks/swarm/index.js +11 -2
  17. package/dist/hooks/swarm/index.js.map +1 -1
  18. package/dist/hooks/swarm/state.d.ts +18 -0
  19. package/dist/hooks/swarm/state.d.ts.map +1 -1
  20. package/dist/hooks/swarm/state.js +34 -1
  21. package/dist/hooks/swarm/state.js.map +1 -1
  22. package/dist/hud/omc-state.d.ts.map +1 -1
  23. package/dist/hud/omc-state.js +20 -7
  24. package/dist/hud/omc-state.js.map +1 -1
  25. package/dist/hud/state.d.ts +1 -1
  26. package/dist/hud/state.d.ts.map +1 -1
  27. package/dist/hud/state.js +21 -9
  28. package/dist/hud/state.js.map +1 -1
  29. package/dist/installer/hooks.d.ts +1 -1
  30. package/dist/installer/hooks.d.ts.map +1 -1
  31. package/dist/installer/hooks.js +6 -9
  32. package/dist/installer/hooks.js.map +1 -1
  33. package/dist/installer/index.d.ts +1 -1
  34. package/dist/installer/index.d.ts.map +1 -1
  35. package/dist/installer/index.js +3 -3
  36. package/dist/installer/index.js.map +1 -1
  37. package/docs/MIGRATION.md +7 -3
  38. package/docs/REFERENCE.md +8 -33
  39. package/package.json +1 -1
  40. 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
- ### If User Chooses YES:
449
+ ### CLI Installation Note
450
450
 
451
- ```bash
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
- ### If User Chooses NO:
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. User can install later with `npm install -g oh-my-claude-sisyphus`.
457
+ Skip this step - the plugin provides all features.
477
458
 
478
459
  ## Step 4: Verify Plugin Installation
479
460