olly-molly 0.1.18 → 0.1.19
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 +3 -14
- package/package.json +1 -3
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
|
-
-
|
|
74
|
+
- One of the following CLI tools: [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
|
|
|
@@ -111,7 +111,7 @@ brew install anthropics/tap/claude-code
|
|
|
111
111
|
**Windows:**
|
|
112
112
|
```bash
|
|
113
113
|
# OpenCode (via npm)
|
|
114
|
-
npm install -g opencode
|
|
114
|
+
npm install -g opencode-ai
|
|
115
115
|
|
|
116
116
|
# Claude CLI (via npm)
|
|
117
117
|
npm install -g @anthropic-ai/claude-code
|
|
@@ -119,17 +119,6 @@ npm install -g @anthropic-ai/claude-code
|
|
|
119
119
|
|
|
120
120
|
> **Note:** Windows npm packages may not be officially supported. If installation fails, consider using WSL (Windows Subsystem for Linux) with Homebrew.
|
|
121
121
|
|
|
122
|
-
## Configuration
|
|
123
|
-
|
|
124
|
-
On first launch, you'll be prompted to enter your OpenAI API key. This is stored locally in your browser's localStorage.
|
|
125
|
-
|
|
126
|
-
You can also set it via environment variable:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
export OPENAI_API_KEY=your-key-here
|
|
130
|
-
npx olly-molly
|
|
131
|
-
```
|
|
132
|
-
|
|
133
122
|
## Project Selection
|
|
134
123
|
|
|
135
124
|
1. Click "Select Project" in the header
|
|
@@ -193,7 +182,7 @@ olly-molly/
|
|
|
193
182
|
- **UI**: React 19, Tailwind CSS 4
|
|
194
183
|
- **Database**: SQLite (better-sqlite3)
|
|
195
184
|
- **Drag & Drop**: dnd-kit
|
|
196
|
-
- **AI**:
|
|
185
|
+
- **AI**: OpenCode / Claude CLI
|
|
197
186
|
|
|
198
187
|
## License
|
|
199
188
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "olly-molly",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Your AI Development Team, Running Locally - Manage AI agents (PM, Frontend, Backend, QA) from a beautiful kanban board",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"team",
|
|
9
9
|
"kanban",
|
|
10
10
|
"agents",
|
|
11
|
-
"openai",
|
|
12
11
|
"local",
|
|
13
12
|
"cli"
|
|
14
13
|
],
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
"@tailwindcss/postcss": "^4",
|
|
46
45
|
"better-sqlite3": "^12.5.0",
|
|
47
46
|
"next": "16.1.1",
|
|
48
|
-
"openai": "^6.15.0",
|
|
49
47
|
"react": "19.2.3",
|
|
50
48
|
"react-dom": "19.2.3",
|
|
51
49
|
"swr": "^2.3.8",
|