olly-molly 0.1.17 → 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 +20 -7
- 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
|
|
|
@@ -95,17 +95,30 @@ npm install
|
|
|
95
95
|
npm run dev
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
-
|
|
98
|
+
### AI CLI Tools (Required for Agent Execution)
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
To run AI agents, you need to install either OpenCode or Claude CLI:
|
|
101
101
|
|
|
102
|
-
|
|
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
|
+
```
|
|
103
110
|
|
|
111
|
+
**Windows:**
|
|
104
112
|
```bash
|
|
105
|
-
|
|
106
|
-
|
|
113
|
+
# OpenCode (via npm)
|
|
114
|
+
npm install -g opencode-ai
|
|
115
|
+
|
|
116
|
+
# Claude CLI (via npm)
|
|
117
|
+
npm install -g @anthropic-ai/claude-code
|
|
107
118
|
```
|
|
108
119
|
|
|
120
|
+
> **Note:** Windows npm packages may not be officially supported. If installation fails, consider using WSL (Windows Subsystem for Linux) with Homebrew.
|
|
121
|
+
|
|
109
122
|
## Project Selection
|
|
110
123
|
|
|
111
124
|
1. Click "Select Project" in the header
|
|
@@ -169,7 +182,7 @@ olly-molly/
|
|
|
169
182
|
- **UI**: React 19, Tailwind CSS 4
|
|
170
183
|
- **Database**: SQLite (better-sqlite3)
|
|
171
184
|
- **Drag & Drop**: dnd-kit
|
|
172
|
-
- **AI**:
|
|
185
|
+
- **AI**: OpenCode / Claude CLI
|
|
173
186
|
|
|
174
187
|
## License
|
|
175
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",
|