roadmap-skill 0.1.0 → 0.2.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.2.0] - 2026-02-10
9
+
10
+ ### Added
11
+ - **Kanban Priority Sorting**: Tasks are now sorted by priority (Critical > High > Medium > Low) within each column
12
+ - **Task Creation Modal**: Added a dedicated modal for creating tasks with priority selection
13
+ - **Smooth Animations**: Added CSS animations for modal transitions, task card hover effects, and drag interactions
14
+ - **Agent Progress Sync Reminder**: Enhanced prompts to remind agents to update task status using `update_task` tool
15
+
16
+ ### Changed
17
+ - Converted prompt text from Chinese to English for consistency
18
+
19
+ ### Fixed
20
+ - Task priority is now properly utilized in the UI
21
+
22
+ ## [0.1.0] - 2026-02-10
23
+
24
+ ### Added
25
+ - Initial release with Web UI and Kanban board
26
+ - MCP server with full tool support (projects, tasks, tags)
27
+ - Local JSON file storage
28
+ - Auto browser open functionality
29
+ - Bilingual README (English/Chinese)
package/README.md CHANGED
@@ -1,12 +1,16 @@
1
- # đŸ—ēī¸ Roadmap Skill
1
+ # Roadmap Skill
2
2
 
3
3
  <p align="center">
4
4
  <img src="./imgs/roadmap-skill-web.png" alt="Roadmap Skill Kanban Board" width="900">
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <strong>Visual project management with drag-and-drop Kanban boards</strong><br>
9
- Manage tasks through AI assistants or directly in your browser
8
+ <strong>Let AI manage your projects, keep Kanban simple</strong><br>
9
+ Zero-config startup, local data, Agent-native support
10
+ </p>
11
+
12
+ <p align="center">
13
+ <a href="README.zh.md">įŽ€äŊ“中文</a> | English
10
14
  </p>
11
15
 
12
16
  <p align="center">
@@ -15,37 +19,88 @@
15
19
  <a href="https://www.npmjs.com/package/roadmap-skill"><img src="https://img.shields.io/npm/dm/roadmap-skill" alt="npm downloads"></a>
16
20
  </p>
17
21
 
22
+ <p align="center">
23
+ <a href="https://insiders.vscode.dev/redirect/mcp/install?name=roadmap&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22roadmap-skill%22%5D%7D"><img src="https://img.shields.io/badge/VS_Code-Install%20MCP%20Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white" alt="Install in VS Code"></a>
24
+ <a href="https://insiders.vscode.dev/redirect/mcp/install?name=roadmap&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22roadmap-skill%22%5D%7D&quality=insiders"><img src="https://img.shields.io/badge/VS_Code_Insiders-Install%20MCP%20Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white" alt="Install in VS Code Insiders"></a>
25
+ </p>
26
+
18
27
  ---
19
28
 
20
- ## ✨ Why Roadmap Skill?
29
+ ## Why Roadmap Skill?
30
+
31
+ | Your Pain Point | How Roadmap Skill Solves It |
32
+ |----------------|----------------------------|
33
+ | Project data scattered in third-party clouds | **Local-first** — All data stored on your machine, full control, works offline |
34
+ | Copy-pasting task lists when chatting with AI | **Agent-native** — AI reads/writes tasks directly, zero friction in conversation |
35
+ | Text-only management lacks visuals, but traditional tools are bloated | **Beautiful Kanban** — Open browser when needed, drag and drop, doesn't interrupt coding flow |
36
+ | Ideas and bugs from Vibe Coding get forgotten | **Collection Box** — Let Agent capture scattered thoughts, auto-organize todos |
37
+ | Too many tasks, don't know where to start | **Smart Recommendations** — Agent analyzes context, proactively suggests next steps |
21
38
 
22
- **Tired of juggling multiple project management tools?** Roadmap Skill brings your tasks directly into your AI workflow while offering a beautiful visual interface when you need it.
39
+ ---
23
40
 
24
- ### Three Ways to Work
41
+ ## Quick Start (Zero Config)
42
+
43
+ ```bash
44
+ # Option 1: Launch Web Kanban
45
+ npx roadmap-skill-web
25
46
 
26
- đŸŽ¯ **Visual Kanban** — Drag and drop tasks between columns (Todo → In Progress → Review → Done)
47
+ # Option 2: Integrate with your AI assistant (MCP config below)
48
+ ```
27
49
 
28
- 🤖 **AI-Powered** — Ask Claude, Cursor, or any MCP-compatible AI to create, update, and organize tasks
50
+ <details>
51
+ <summary><b>View platform configurations</b></summary>
29
52
 
30
- ⚡ **Instant Start** — One command launches the web interface, no configuration needed
53
+ <details>
54
+ <summary><b>Claude Code</b></summary>
31
55
 
32
- ---
56
+ ```bash
57
+ claude mcp add roadmap "npx -y roadmap-skill"
58
+ ```
33
59
 
34
- ## 🚀 Quick Start
60
+ </details>
35
61
 
36
- ### Option 1: Standalone Web App (Easiest)
62
+ <details>
63
+ <summary><b>Claude Desktop</b></summary>
64
+
65
+ ```json
66
+ {
67
+ "mcpServers": {
68
+ "roadmap": {
69
+ "command": "npx",
70
+ "args": ["-y", "roadmap-skill"]
71
+ }
72
+ }
73
+ }
74
+ ```
75
+
76
+ </details>
77
+
78
+ <details>
79
+ <summary><b>Copilot</b></summary>
37
80
 
38
81
  ```bash
39
- npx roadmap-skill-web
82
+ /mcp add
40
83
  ```
41
84
 
42
- Then open http://localhost:7860 in your browser.
85
+ Or edit `~/.copilot/mcp-config.json`:
43
86
 
44
- ### Option 2: Integrate with AI Assistants
87
+ ```json
88
+ {
89
+ "mcpServers": {
90
+ "roadmap": {
91
+ "type": "local",
92
+ "command": "npx",
93
+ "args": ["-y", "roadmap-skill"]
94
+ }
95
+ }
96
+ }
97
+ ```
45
98
 
46
- Add to your AI assistant's MCP configuration:
99
+ </details>
100
+
101
+ <details>
102
+ <summary><b>Cursor</b></summary>
47
103
 
48
- **Claude Desktop:**
49
104
  ```json
50
105
  {
51
106
  "mcpServers": {
@@ -57,11 +112,18 @@ Add to your AI assistant's MCP configuration:
57
112
  }
58
113
  ```
59
114
 
60
- **Cursor:**
115
+ </details>
116
+
117
+ <details>
118
+ <summary><b>JetBrains (via Cline)</b></summary>
119
+
120
+ Install Cline plugin, then add to `cline_mcp_settings.json`:
121
+
61
122
  ```json
62
123
  {
63
124
  "mcpServers": {
64
125
  "roadmap": {
126
+ "type": "stdio",
65
127
  "command": "npx",
66
128
  "args": ["-y", "roadmap-skill"]
67
129
  }
@@ -69,79 +131,257 @@ Add to your AI assistant's MCP configuration:
69
131
  }
70
132
  ```
71
133
 
72
- Then ask your AI:
73
- > "Create a project called 'Website Redesign' with tasks for homepage, about page, and contact form"
134
+ </details>
135
+
136
+ <details>
137
+ <summary><b>Roo Code</b></summary>
138
+
139
+ ```json
140
+ {
141
+ "mcpServers": {
142
+ "roadmap": {
143
+ "type": "stdio",
144
+ "command": "npx",
145
+ "args": ["-y", "roadmap-skill"]
146
+ }
147
+ }
148
+ }
149
+ ```
150
+
151
+ </details>
152
+
153
+ <details>
154
+ <summary><b>Opencode</b></summary>
155
+
156
+ Edit `~/.config/opencode/opencode.json`:
157
+
158
+ ```json
159
+ {
160
+ "$schema": "https://opencode.ai/config.json",
161
+ "mcp": {
162
+ "roadmap": {
163
+ "type": "local",
164
+ "command": [
165
+ "npx",
166
+ "-y",
167
+ "roadmap-skill"
168
+ ],
169
+ "enabled": true
170
+ }
171
+ }
172
+ }
173
+ ```
174
+
175
+ </details>
176
+
177
+ <details>
178
+ <summary><b>Trae</b></summary>
179
+
180
+ Go to `Settings` -> `MCP` -> `Add new MCP Server`:
181
+
182
+ ```json
183
+ {
184
+ "mcpServers": {
185
+ "roadmap": {
186
+ "command": "npx",
187
+ "args": ["-y", "roadmap-skill"]
188
+ }
189
+ }
190
+ }
191
+ ```
192
+
193
+ </details>
194
+
195
+ <details>
196
+ <summary><b>VS Code</b></summary>
197
+
198
+ ```json
199
+ {
200
+ "mcp": {
201
+ "servers": {
202
+ "roadmap": {
203
+ "command": "npx",
204
+ "args": ["-y", "roadmap-skill"]
205
+ }
206
+ }
207
+ }
208
+ }
209
+ ```
210
+
211
+ </details>
212
+
213
+ <details>
214
+ <summary><b>Windsurf</b></summary>
215
+
216
+ Follow Windsurf MCP documentation and use:
217
+
218
+ ```json
219
+ {
220
+ "mcpServers": {
221
+ "roadmap": {
222
+ "command": "npx",
223
+ "args": ["-y", "roadmap-skill"]
224
+ }
225
+ }
226
+ }
227
+ ```
228
+
229
+ </details>
230
+
231
+ <details>
232
+ <summary><b>Zed</b></summary>
233
+
234
+ ```json
235
+ {
236
+ "context_servers": {
237
+ "roadmap": {
238
+ "command": {
239
+ "path": "npx",
240
+ "args": ["-y", "roadmap-skill"]
241
+ }
242
+ }
243
+ }
244
+ }
245
+ ```
246
+
247
+ </details>
248
+
249
+ </details>
250
+
251
+ <br>
252
+
253
+ After setup, simply tell your AI:
254
+
255
+ > "Create a website redesign project with tasks for homepage, about page, and contact form"
256
+
257
+ The AI will immediately create the project and tasks, saving them to local storage. You can open <http://localhost:7860> anytime to view the visual Kanban board.
258
+
259
+ ---
260
+
261
+ ## Who Is This For?
262
+
263
+ | Scenario | What Roadmap Skill Does For You |
264
+ |---------|--------------------------------|
265
+ | **Solo Developers** | Manage personal projects through conversation, avoid getting lost in complex tools |
266
+ | **AI Power Users** | Let Agent directly read/write tasks, goodbye to copy-pasting hassle |
267
+ | **Vibe Coders** | Capture inspirations on the fly, automatically save to collection box |
268
+ | **Small Teams** | Simple task assignment and progress tracking, zero learning curve |
269
+ | **Privacy-conscious Users** | Data stored completely locally, never uploaded to any cloud service |
74
270
 
75
271
  ---
76
272
 
77
- ## 💡 What You Can Do
273
+ ## Typical Use Cases
274
+
275
+ ### 1. Capture Inspiration During Vibe Coding
276
+
277
+ When discussing new features with AI, suddenly think of an optimization:
278
+
279
+ > "Add this to my collection: Refactor user auth module using JWT + Refresh Token scheme"
280
+
281
+ AI automatically creates the task, and you'll see it in the Kanban later.
282
+
283
+ ### 2. Let AI Plan Project Structure
284
+
285
+ Starting a new project? Just ask AI to break it down:
286
+
287
+ > "Create an e-commerce admin dashboard project with product management, order processing, and user permissions modules, broken down into specific development tasks"
288
+
289
+ AI auto-creates the project structure. Just open the Kanban in browser and drag tasks to start working.
290
+
291
+ ### 3. Progress Tracking and Status Updates
292
+
293
+ Check progress anytime during coding:
294
+
295
+ > "What's the completion percentage of my current project? What high-priority tasks haven't started yet?"
78
296
 
79
- ### Plan Projects Visually
80
- - See all your tasks organized in Kanban columns
81
- - Switch between compact and detailed card views
82
- - Filter by status, project, or search keywords
83
- - Drag tasks to update their status instantly
297
+ > "Mark the user login feature as completed and create corresponding test tasks"
84
298
 
85
- ### Work with AI
86
- - "Show me all high priority tasks due this week"
87
- - "Move the authentication task to in-progress"
88
- - "Create a new project for mobile app with 5 initial tasks"
89
- - "What's my overall progress across all projects?"
299
+ ### 4. Team Collaboration and Assignment
90
300
 
91
- ### Collaborate & Track
92
- - Assign tasks to team members
93
- - Set due dates and priorities
94
- - Add tags to organize related work
95
- - Track completion statistics
301
+ Quickly assign in conversation:
302
+
303
+ > "Assign frontend page tasks to @zhangsan, deadline this Friday, priority high"
304
+
305
+ Team members can view their task list in the Kanban.
96
306
 
97
307
  ---
98
308
 
99
- ## đŸ“Ļ Installation
309
+ ## Installation
100
310
 
101
311
  ### Requirements
102
- - Node.js 18+ (20+ recommended)
103
312
 
104
- ### One-Line Install
313
+ - Node.js 18+ (recommended 20+)
314
+
315
+ ### Global Install
316
+
105
317
  ```bash
106
318
  npm install -g roadmap-skill
107
319
  ```
108
320
 
109
- ### Or Use Without Installing
321
+ ### Use Without Installing
322
+
110
323
  ```bash
111
- npx roadmap-skill-web # Just the web interface
324
+ npx roadmap-skill-web # Web Kanban only
112
325
  npx roadmap-skill # Full MCP server
113
326
  ```
114
327
 
115
328
  ---
116
329
 
117
- ## 🎨 Interface Features
330
+ ## Core Features
118
331
 
119
332
  | Feature | Description |
120
- |---------|-------------|
121
- | **Kanban Board** | Four columns: Todo, In Progress, Review, Done |
122
- | **Drag & Drop** | Move tasks between columns to update status |
123
- | **Quick Add** | Click "+" on any column to add tasks instantly |
124
- | **Dual Views** | Compact mode for overview, Detailed mode for full info |
125
- | **Smart Search** | Find tasks across all projects instantly |
333
+ |--------|-------------|
334
+ | **Kanban View** | Four columns: Todo, In Progress, Review, Done |
335
+ | **Drag and Drop** | Drag tasks to update status, WYSIWYG |
336
+ | **Quick Create** | Click "+" button on any column to instantly add tasks |
337
+ | **Dual View** | Compact mode for overview, detailed mode for full info |
338
+ | **Smart Search** | Quick task search across all projects, keyword filtering |
126
339
 
127
340
  ---
128
341
 
129
- ## 🔧 Supported Platforms
342
+ ## Supported Platforms
130
343
 
131
- - ✅ **Claude Desktop** — Full MCP integration
132
344
  - ✅ **Claude Code** — Command-line AI assistant
345
+ - ✅ **Claude Desktop** — Full MCP integration
133
346
  - ✅ **Cursor** — AI-powered IDE
134
347
  - ✅ **VS Code** — Via Cline or Roo Code extensions
135
348
  - ✅ **Any MCP Client** — Standard MCP protocol support
136
349
 
137
350
  ---
138
351
 
139
- ## 📄 License
352
+ ## Data Storage
353
+
354
+ Roadmap Skill uses **pure local JSON file storage**. All data is saved in your user directory:
355
+
356
+ | Platform | Storage Path |
357
+ |---------|-------------|
358
+ | macOS | `~/.roadmap-skill/data/` |
359
+ | Linux | `~/.roadmap-skill/data/` |
360
+ | Windows | `%USERPROFILE%\.roadmap-skill\data\` |
361
+
362
+ ### Data File Structure
363
+
364
+ ```
365
+ .roadmap-skill/
366
+ └── data/
367
+ ├── projects.json # Project list
368
+ ├── tasks.json # All tasks
369
+ └── tags.json # Tag definitions
370
+ ```
371
+
372
+ - ✅ **Fully offline** — No internet connection needed
373
+ - ✅ **Portable** — Copy folder to backup/transfer
374
+ - ✅ **Version control friendly** — JSON format for easy diff
375
+ - ✅ **Privacy secure** — Data never leaves your machine
376
+
377
+ ---
378
+
379
+ ## License
140
380
 
141
381
  MIT Š [shiquda](https://github.com/shiquda)
142
382
 
143
383
  ---
144
384
 
145
385
  <p align="center">
146
- <strong>Star ⭐ this repo if you find it helpful!</strong>
386
+ <strong>If this project helps you, please consider giving it a star!</strong>
147
387
  </p>