oh-my-claude-sisyphus 3.2.3 → 3.3.0

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 (81) hide show
  1. package/README.md +37 -2
  2. package/agents/scientist-high.md +1003 -0
  3. package/agents/scientist-low.md +232 -0
  4. package/agents/scientist.md +1180 -0
  5. package/bridge/__pycache__/gyoshu_bridge.cpython-310.pyc +0 -0
  6. package/bridge/gyoshu_bridge.py +846 -0
  7. package/commands/autopilot.md +51 -3
  8. package/commands/ralph.md +17 -2
  9. package/commands/ultrawork.md +18 -1
  10. package/dist/__tests__/installer.test.js +1 -1
  11. package/dist/agents/definitions.d.ts +9 -0
  12. package/dist/agents/definitions.d.ts.map +1 -1
  13. package/dist/agents/definitions.js +25 -0
  14. package/dist/agents/definitions.js.map +1 -1
  15. package/dist/agents/index.d.ts +2 -1
  16. package/dist/agents/index.d.ts.map +1 -1
  17. package/dist/agents/index.js +2 -1
  18. package/dist/agents/index.js.map +1 -1
  19. package/dist/agents/scientist.d.ts +16 -0
  20. package/dist/agents/scientist.d.ts.map +1 -0
  21. package/dist/agents/scientist.js +370 -0
  22. package/dist/agents/scientist.js.map +1 -0
  23. package/dist/hooks/omc-orchestrator/audit.d.ts +30 -0
  24. package/dist/hooks/omc-orchestrator/audit.d.ts.map +1 -0
  25. package/dist/hooks/omc-orchestrator/audit.js +66 -0
  26. package/dist/hooks/omc-orchestrator/audit.js.map +1 -0
  27. package/dist/hooks/omc-orchestrator/constants.d.ts +6 -2
  28. package/dist/hooks/omc-orchestrator/constants.d.ts.map +1 -1
  29. package/dist/hooks/omc-orchestrator/constants.js +37 -1
  30. package/dist/hooks/omc-orchestrator/constants.js.map +1 -1
  31. package/dist/hooks/omc-orchestrator/index.d.ts +4 -0
  32. package/dist/hooks/omc-orchestrator/index.d.ts.map +1 -1
  33. package/dist/hooks/omc-orchestrator/index.js +34 -3
  34. package/dist/hooks/omc-orchestrator/index.js.map +1 -1
  35. package/dist/installer/hooks.d.ts +18 -0
  36. package/dist/installer/hooks.d.ts.map +1 -1
  37. package/dist/installer/hooks.js +24 -0
  38. package/dist/installer/hooks.js.map +1 -1
  39. package/dist/installer/index.d.ts +1 -1
  40. package/dist/installer/index.js +1 -1
  41. package/dist/lib/atomic-write.d.ts +29 -0
  42. package/dist/lib/atomic-write.d.ts.map +1 -0
  43. package/dist/lib/atomic-write.js +111 -0
  44. package/dist/lib/atomic-write.js.map +1 -0
  45. package/dist/tools/index.d.ts +1 -0
  46. package/dist/tools/index.d.ts.map +1 -1
  47. package/dist/tools/index.js +4 -1
  48. package/dist/tools/index.js.map +1 -1
  49. package/dist/tools/python-repl/bridge-manager.d.ts +65 -0
  50. package/dist/tools/python-repl/bridge-manager.d.ts.map +1 -0
  51. package/dist/tools/python-repl/bridge-manager.js +478 -0
  52. package/dist/tools/python-repl/bridge-manager.js.map +1 -0
  53. package/dist/tools/python-repl/index.d.ts +40 -0
  54. package/dist/tools/python-repl/index.d.ts.map +1 -0
  55. package/dist/tools/python-repl/index.js +36 -0
  56. package/dist/tools/python-repl/index.js.map +1 -0
  57. package/dist/tools/python-repl/paths.d.ts +84 -0
  58. package/dist/tools/python-repl/paths.d.ts.map +1 -0
  59. package/dist/tools/python-repl/paths.js +213 -0
  60. package/dist/tools/python-repl/paths.js.map +1 -0
  61. package/dist/tools/python-repl/session-lock.d.ts +111 -0
  62. package/dist/tools/python-repl/session-lock.d.ts.map +1 -0
  63. package/dist/tools/python-repl/session-lock.js +510 -0
  64. package/dist/tools/python-repl/session-lock.js.map +1 -0
  65. package/dist/tools/python-repl/socket-client.d.ts +42 -0
  66. package/dist/tools/python-repl/socket-client.d.ts.map +1 -0
  67. package/dist/tools/python-repl/socket-client.js +157 -0
  68. package/dist/tools/python-repl/socket-client.js.map +1 -0
  69. package/dist/tools/python-repl/tool.d.ts +100 -0
  70. package/dist/tools/python-repl/tool.d.ts.map +1 -0
  71. package/dist/tools/python-repl/tool.js +575 -0
  72. package/dist/tools/python-repl/tool.js.map +1 -0
  73. package/dist/tools/python-repl/types.d.ts +95 -0
  74. package/dist/tools/python-repl/types.d.ts.map +1 -0
  75. package/dist/tools/python-repl/types.js +2 -0
  76. package/dist/tools/python-repl/types.js.map +1 -0
  77. package/docs/CLAUDE.md +31 -0
  78. package/package.json +2 -1
  79. package/skills/deepinit/SKILL.md +1 -1
  80. package/skills/hud/SKILL.md +2 -0
  81. package/skills/research/SKILL.md +511 -0
package/README.md CHANGED
@@ -68,6 +68,40 @@ Want explicit control? Include these words anywhere in your message:
68
68
 
69
69
  ---
70
70
 
71
+ ## Data Analysis with Scientist Agent (v3.3.0)
72
+
73
+ The scientist agent provides persistent Python execution for data analysis:
74
+
75
+ ```
76
+ # Variables persist across calls - no need to reload data!
77
+ python_repl(action="execute", researchSessionID="analysis",
78
+ code="import pandas as pd; df = pd.read_csv('data.csv')")
79
+
80
+ # df still exists in the next call
81
+ python_repl(action="execute", researchSessionID="analysis",
82
+ code="print(df.describe())")
83
+ ```
84
+
85
+ **Features:**
86
+ - Variable persistence via Unix socket bridge
87
+ - Structured markers: `[FINDING]`, `[STAT:*]`, `[DATA]`, `[LIMITATION]`
88
+ - Memory tracking (RSS/VMS)
89
+ - Session locking for safe concurrent access
90
+
91
+ ### /research Command
92
+
93
+ Orchestrate parallel scientist agents for comprehensive research:
94
+
95
+ ```
96
+ /research <goal> # Standard research with checkpoints
97
+ /research AUTO: <goal> # Fully autonomous until complete
98
+ /research status # Check current session
99
+ ```
100
+
101
+ Features multi-stage decomposition, smart model routing, cross-validation, and structured report generation.
102
+
103
+ ---
104
+
71
105
  ## Stopping Things
72
106
 
73
107
  Just say:
@@ -81,8 +115,9 @@ I'll intelligently determine what to stop based on context.
81
115
 
82
116
  ## What's Under the Hood
83
117
 
84
- - **27 Specialized Agents** - architect, researcher, explore, designer, writer, vision, critic, analyst, executor, planner, qa-tester (with tier variants)
85
- - **28 Skills** - orchestrate, ultrawork, ralph, planner, deepsearch, deepinit, git-master, frontend-ui-ux, learner, and more
118
+ - **28 Specialized Agents** - architect, researcher, explore, designer, writer, vision, critic, analyst, executor, planner, qa-tester, scientist (with tier variants)
119
+ - **30 Skills** - orchestrate, ultrawork, ralph, planner, deepsearch, deepinit, git-master, frontend-ui-ux, learner, research, and more
120
+ - **Persistent Python REPL** - True variable persistence for data analysis (new in 3.3.0)
86
121
  - **HUD Statusline** - Real-time visualization of orchestration state
87
122
  - **Learned Skills** - Extract reusable insights from sessions with `/learner`
88
123
  - **Memory System** - Persistent context that survives compaction