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.
- package/README.md +37 -2
- package/agents/scientist-high.md +1003 -0
- package/agents/scientist-low.md +232 -0
- package/agents/scientist.md +1180 -0
- package/bridge/__pycache__/gyoshu_bridge.cpython-310.pyc +0 -0
- package/bridge/gyoshu_bridge.py +846 -0
- package/commands/autopilot.md +51 -3
- package/commands/ralph.md +17 -2
- package/commands/ultrawork.md +18 -1
- package/dist/__tests__/installer.test.js +1 -1
- package/dist/agents/definitions.d.ts +9 -0
- package/dist/agents/definitions.d.ts.map +1 -1
- package/dist/agents/definitions.js +25 -0
- package/dist/agents/definitions.js.map +1 -1
- package/dist/agents/index.d.ts +2 -1
- package/dist/agents/index.d.ts.map +1 -1
- package/dist/agents/index.js +2 -1
- package/dist/agents/index.js.map +1 -1
- package/dist/agents/scientist.d.ts +16 -0
- package/dist/agents/scientist.d.ts.map +1 -0
- package/dist/agents/scientist.js +370 -0
- package/dist/agents/scientist.js.map +1 -0
- package/dist/hooks/omc-orchestrator/audit.d.ts +30 -0
- package/dist/hooks/omc-orchestrator/audit.d.ts.map +1 -0
- package/dist/hooks/omc-orchestrator/audit.js +66 -0
- package/dist/hooks/omc-orchestrator/audit.js.map +1 -0
- package/dist/hooks/omc-orchestrator/constants.d.ts +6 -2
- package/dist/hooks/omc-orchestrator/constants.d.ts.map +1 -1
- package/dist/hooks/omc-orchestrator/constants.js +37 -1
- package/dist/hooks/omc-orchestrator/constants.js.map +1 -1
- package/dist/hooks/omc-orchestrator/index.d.ts +4 -0
- package/dist/hooks/omc-orchestrator/index.d.ts.map +1 -1
- package/dist/hooks/omc-orchestrator/index.js +34 -3
- package/dist/hooks/omc-orchestrator/index.js.map +1 -1
- package/dist/installer/hooks.d.ts +18 -0
- package/dist/installer/hooks.d.ts.map +1 -1
- package/dist/installer/hooks.js +24 -0
- package/dist/installer/hooks.js.map +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.js +1 -1
- package/dist/lib/atomic-write.d.ts +29 -0
- package/dist/lib/atomic-write.d.ts.map +1 -0
- package/dist/lib/atomic-write.js +111 -0
- package/dist/lib/atomic-write.js.map +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +4 -1
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/python-repl/bridge-manager.d.ts +65 -0
- package/dist/tools/python-repl/bridge-manager.d.ts.map +1 -0
- package/dist/tools/python-repl/bridge-manager.js +478 -0
- package/dist/tools/python-repl/bridge-manager.js.map +1 -0
- package/dist/tools/python-repl/index.d.ts +40 -0
- package/dist/tools/python-repl/index.d.ts.map +1 -0
- package/dist/tools/python-repl/index.js +36 -0
- package/dist/tools/python-repl/index.js.map +1 -0
- package/dist/tools/python-repl/paths.d.ts +84 -0
- package/dist/tools/python-repl/paths.d.ts.map +1 -0
- package/dist/tools/python-repl/paths.js +213 -0
- package/dist/tools/python-repl/paths.js.map +1 -0
- package/dist/tools/python-repl/session-lock.d.ts +111 -0
- package/dist/tools/python-repl/session-lock.d.ts.map +1 -0
- package/dist/tools/python-repl/session-lock.js +510 -0
- package/dist/tools/python-repl/session-lock.js.map +1 -0
- package/dist/tools/python-repl/socket-client.d.ts +42 -0
- package/dist/tools/python-repl/socket-client.d.ts.map +1 -0
- package/dist/tools/python-repl/socket-client.js +157 -0
- package/dist/tools/python-repl/socket-client.js.map +1 -0
- package/dist/tools/python-repl/tool.d.ts +100 -0
- package/dist/tools/python-repl/tool.d.ts.map +1 -0
- package/dist/tools/python-repl/tool.js +575 -0
- package/dist/tools/python-repl/tool.js.map +1 -0
- package/dist/tools/python-repl/types.d.ts +95 -0
- package/dist/tools/python-repl/types.d.ts.map +1 -0
- package/dist/tools/python-repl/types.js +2 -0
- package/dist/tools/python-repl/types.js.map +1 -0
- package/docs/CLAUDE.md +31 -0
- package/package.json +2 -1
- package/skills/deepinit/SKILL.md +1 -1
- package/skills/hud/SKILL.md +2 -0
- 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
|
-
- **
|
|
85
|
-
- **
|
|
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
|