olly-molly 0.3.1 → 0.3.3
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 +76 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,12 +36,57 @@ That's it. Open `http://localhost:1234` and start managing your AI team.
|
|
|
36
36
|
## Features
|
|
37
37
|
|
|
38
38
|
- 🎯 **Kanban Board** — Drag-and-drop task management
|
|
39
|
-
- 🤖 **AI Agents** — PM, Frontend Dev, Backend Dev, QA
|
|
39
|
+
- 🤖 **AI Agents** — PM, Frontend Dev, Backend Dev, QA, DevOps, Bug Hunter
|
|
40
40
|
- 💬 **Natural Requests** — Ask PM in plain language, get structured tickets
|
|
41
41
|
- 🔒 **Local-First** — Everything runs on your machine
|
|
42
42
|
- 🎨 **Minimal Design** — Clean, paper-like UI inspired by fontshare.com
|
|
43
43
|
- 🌙 **Dark Mode** — Easy on the eyes
|
|
44
44
|
|
|
45
|
+
## AI Agents
|
|
46
|
+
|
|
47
|
+
Olly Molly comes with 6 specialized AI agents, each designed for specific development tasks:
|
|
48
|
+
|
|
49
|
+
| Agent | Role | Description |
|
|
50
|
+
|-------|------|-------------|
|
|
51
|
+
| 👔 **PM Agent** | Project Manager | Creates tickets, assigns tasks, sets priorities, tracks progress |
|
|
52
|
+
| 🎨 **Frontend Developer** | FE_DEV | React/Next.js UI development, responsive design, API integration |
|
|
53
|
+
| ⚙️ **Backend Developer** | BACKEND_DEV | REST APIs, database design, server-side logic, testing |
|
|
54
|
+
| 🔍 **QA Engineer** | QA | Automated testing with Chrome DevTools/Playwright MCP, bug reporting |
|
|
55
|
+
| 🚀 **DevOps Engineer** | DEVOPS | CI/CD pipelines, deployment, infrastructure, monitoring |
|
|
56
|
+
| 🐛 **Bug Hunter** | BUG_HUNTER | Full-stack debugging, error analysis, regression testing |
|
|
57
|
+
|
|
58
|
+
### Adding Custom Agents
|
|
59
|
+
|
|
60
|
+
Create a new file in `agents/` directory:
|
|
61
|
+
|
|
62
|
+
```typescript
|
|
63
|
+
// agents/my-agent.ts
|
|
64
|
+
import type { AgentDefinition } from './types';
|
|
65
|
+
|
|
66
|
+
export const myAgent: AgentDefinition = {
|
|
67
|
+
id: 'my-agent-001',
|
|
68
|
+
role: 'MY_ROLE',
|
|
69
|
+
name: 'My Custom Agent',
|
|
70
|
+
avatar: '🤖',
|
|
71
|
+
profile_image: null,
|
|
72
|
+
system_prompt: `Your agent's system prompt here...`,
|
|
73
|
+
is_default: 1,
|
|
74
|
+
can_generate_images: 0,
|
|
75
|
+
can_log_screenshots: 0,
|
|
76
|
+
};
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Then add it to `agents/index.ts`:
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
import { myAgent } from './my-agent';
|
|
83
|
+
|
|
84
|
+
export const DEFAULT_AGENTS: AgentDefinition[] = [
|
|
85
|
+
// ... existing agents
|
|
86
|
+
myAgent,
|
|
87
|
+
];
|
|
88
|
+
```
|
|
89
|
+
|
|
45
90
|
## How It Works
|
|
46
91
|
|
|
47
92
|
```
|
|
@@ -201,10 +246,19 @@ gh release upload v0.2.21 dist/prebuilt/olly-molly-win32-x64.tar.gz --clobber
|
|
|
201
246
|
|
|
202
247
|
```
|
|
203
248
|
olly-molly/
|
|
204
|
-
├──
|
|
205
|
-
│ ├──
|
|
206
|
-
│ ├──
|
|
207
|
-
│
|
|
249
|
+
├── agents/ # AI agent definitions
|
|
250
|
+
│ ├── index.ts # Agent exports & DEFAULT_AGENTS
|
|
251
|
+
│ ├── types.ts # AgentDefinition type
|
|
252
|
+
│ ├── pm.ts # PM Agent
|
|
253
|
+
│ ├── fe-dev.ts # Frontend Developer
|
|
254
|
+
│ ├── be-dev.ts # Backend Developer
|
|
255
|
+
│ ├── qa.ts # QA Engineer
|
|
256
|
+
│ ├── devops.ts # DevOps Engineer
|
|
257
|
+
│ └── bug-hunter.ts # Bug Hunter
|
|
258
|
+
├── app/ # Next.js app router
|
|
259
|
+
│ ├── api/ # API routes
|
|
260
|
+
│ ├── design-system/ # Design system docs
|
|
261
|
+
│ └── page.tsx # Main dashboard
|
|
208
262
|
├── components/ # React components
|
|
209
263
|
│ ├── kanban/ # Kanban board
|
|
210
264
|
│ ├── ui/ # Reusable UI components
|
|
@@ -228,6 +282,23 @@ olly-molly/
|
|
|
228
282
|
- **Drag & Drop**: dnd-kit
|
|
229
283
|
- **AI**: Codex CLI / OpenCode / Claude CLI
|
|
230
284
|
|
|
285
|
+
## Troubleshooting
|
|
286
|
+
|
|
287
|
+
### App stuck on "Loading..."
|
|
288
|
+
|
|
289
|
+
This is usually caused by **IndexedDB lock**. IndexedDB allows only one connection per database at a time, and if a previous browser session didn't close properly, the lock may persist.
|
|
290
|
+
|
|
291
|
+
**Solutions:**
|
|
292
|
+
1. **Force quit browser** — Completely close Chrome/browser and reopen
|
|
293
|
+
2. **Hard refresh** — `Cmd+Shift+R` (Mac) or `Ctrl+Shift+R` (Windows)
|
|
294
|
+
3. **Close duplicate tabs** — Make sure only one tab has Olly Molly open
|
|
295
|
+
4. **Clear site data** — DevTools → Application → Storage → Clear site data
|
|
296
|
+
|
|
297
|
+
**Why this happens:**
|
|
298
|
+
- Browser crashed or was force-quit while the app was running
|
|
299
|
+
- Multiple tabs trying to access the same IndexedDB
|
|
300
|
+
- Browser extension interfering with IndexedDB
|
|
301
|
+
|
|
231
302
|
## License
|
|
232
303
|
|
|
233
304
|
MIT © ruucm
|