olly-molly 0.2.3 → 0.2.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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ That's it. Open `http://localhost:1234` and start managing your AI team.
|
|
|
71
71
|
### Prerequisites
|
|
72
72
|
|
|
73
73
|
- Node.js 18+
|
|
74
|
-
- One of the following CLI tools: [OpenCode](https://github.com/sst/opencode) or [Claude CLI](https://github.com/anthropics/claude-code)
|
|
74
|
+
- One of the following CLI tools: [Codex CLI](https://www.npmjs.com/package/@openai/codex), [OpenCode](https://github.com/sst/opencode), or [Claude CLI](https://github.com/anthropics/claude-code)
|
|
75
75
|
|
|
76
76
|
### Run with npx (Recommended)
|
|
77
77
|
|
|
@@ -97,13 +97,16 @@ npm run dev
|
|
|
97
97
|
|
|
98
98
|
### AI CLI Tools (Required for Agent Execution)
|
|
99
99
|
|
|
100
|
-
To run AI agents, you need to install
|
|
100
|
+
To run AI agents, you need to install Codex CLI, OpenCode, or Claude CLI:
|
|
101
101
|
|
|
102
102
|
**macOS (via Homebrew):**
|
|
103
103
|
```bash
|
|
104
104
|
# OpenCode
|
|
105
105
|
brew install sst/tap/opencode
|
|
106
106
|
|
|
107
|
+
# Codex CLI
|
|
108
|
+
npm install -g @openai/codex
|
|
109
|
+
|
|
107
110
|
# Claude CLI
|
|
108
111
|
brew install anthropics/tap/claude-code
|
|
109
112
|
```
|
|
@@ -113,6 +116,9 @@ brew install anthropics/tap/claude-code
|
|
|
113
116
|
# OpenCode (via npm)
|
|
114
117
|
npm install -g opencode-ai
|
|
115
118
|
|
|
119
|
+
# Codex CLI (via npm)
|
|
120
|
+
npm install -g @openai/codex
|
|
121
|
+
|
|
116
122
|
# Claude CLI (via npm)
|
|
117
123
|
npm install -g @anthropic-ai/claude-code
|
|
118
124
|
```
|
|
@@ -182,7 +188,7 @@ olly-molly/
|
|
|
182
188
|
- **UI**: React 19, Tailwind CSS 4
|
|
183
189
|
- **Database**: SQLite (better-sqlite3)
|
|
184
190
|
- **Drag & Drop**: dnd-kit
|
|
185
|
-
- **AI**: OpenCode / Claude CLI
|
|
191
|
+
- **AI**: Codex CLI / OpenCode / Claude CLI
|
|
186
192
|
|
|
187
193
|
## License
|
|
188
194
|
|