olly-molly 0.1.16 → 0.1.18
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 +24 -0
- package/bin/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -95,6 +95,30 @@ npm install
|
|
|
95
95
|
npm run dev
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
+
### AI CLI Tools (Required for Agent Execution)
|
|
99
|
+
|
|
100
|
+
To run AI agents, you need to install either OpenCode or Claude CLI:
|
|
101
|
+
|
|
102
|
+
**macOS (via Homebrew):**
|
|
103
|
+
```bash
|
|
104
|
+
# OpenCode
|
|
105
|
+
brew install sst/tap/opencode
|
|
106
|
+
|
|
107
|
+
# Claude CLI
|
|
108
|
+
brew install anthropics/tap/claude-code
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
**Windows:**
|
|
112
|
+
```bash
|
|
113
|
+
# OpenCode (via npm)
|
|
114
|
+
npm install -g opencode
|
|
115
|
+
|
|
116
|
+
# Claude CLI (via npm)
|
|
117
|
+
npm install -g @anthropic-ai/claude-code
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
> **Note:** Windows npm packages may not be officially supported. If installation fails, consider using WSL (Windows Subsystem for Linux) with Homebrew.
|
|
121
|
+
|
|
98
122
|
## Configuration
|
|
99
123
|
|
|
100
124
|
On first launch, you'll be prompted to enter your OpenAI API key. This is stored locally in your browser's localStorage.
|
package/bin/cli.js
CHANGED
|
@@ -162,7 +162,7 @@ async function main() {
|
|
|
162
162
|
}, 2000);
|
|
163
163
|
|
|
164
164
|
const server = spawn('npx', ['next', 'start', '--port', '1234'], {
|
|
165
|
-
cwd: APP_DIR, stdio: 'inherit'
|
|
165
|
+
cwd: APP_DIR, stdio: 'inherit', shell: true
|
|
166
166
|
});
|
|
167
167
|
|
|
168
168
|
server.on('close', (code) => process.exit(code || 0));
|