roadmap-skill 0.1.4 → 0.2.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/CHANGELOG.md +29 -0
- package/README.md +111 -54
- package/README.zh.md +387 -0
- package/dist/index.js +499 -518
- package/dist/index.js.map +1 -1
- package/dist/web/app/assets/main-DZvNWN99.js +9 -0
- package/dist/web/app/index.html +15 -1
- package/dist/web/server.js +166 -150
- package/dist/web/server.js.map +1 -1
- package/package.json +3 -3
- package/dist/web/app/assets/main-Bx7N5Sfv.js +0 -9
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
|
-
#
|
|
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>
|
|
9
|
-
|
|
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">
|
|
@@ -24,37 +28,33 @@
|
|
|
24
28
|
|
|
25
29
|
## Why Roadmap Skill?
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
⚡ **Instant Start** — One command launches the web interface, no configuration needed
|
|
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 |
|
|
36
38
|
|
|
37
39
|
---
|
|
38
40
|
|
|
39
|
-
##
|
|
40
|
-
|
|
41
|
-
### Option 1: Standalone Web App
|
|
41
|
+
## Quick Start (Zero Config)
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
+
# Option 1: Launch Web Kanban
|
|
44
45
|
npx roadmap-skill-web
|
|
45
|
-
```
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### Option 2: Integrate with AI Assistants
|
|
47
|
+
# Option 2: Integrate with your AI assistant (MCP config below)
|
|
48
|
+
```
|
|
50
49
|
|
|
51
|
-
|
|
50
|
+
<details>
|
|
51
|
+
<summary><b>View platform configurations</b></summary>
|
|
52
52
|
|
|
53
53
|
<details>
|
|
54
54
|
<summary><b>Claude Code</b></summary>
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
|
-
claude mcp add roadmap npx -y roadmap-skill
|
|
57
|
+
claude mcp add roadmap "npx -y roadmap-skill"
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
</details>
|
|
@@ -246,70 +246,100 @@ Follow Windsurf MCP documentation and use:
|
|
|
246
246
|
|
|
247
247
|
</details>
|
|
248
248
|
|
|
249
|
-
|
|
250
|
-
|
|
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.
|
|
251
258
|
|
|
252
259
|
---
|
|
253
260
|
|
|
254
|
-
##
|
|
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 |
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## Typical Use Cases
|
|
274
|
+
|
|
275
|
+
### 1. Capture Inspiration During Vibe Coding
|
|
255
276
|
|
|
256
|
-
|
|
277
|
+
When discussing new features with AI, suddenly think of an optimization:
|
|
257
278
|
|
|
258
|
-
|
|
259
|
-
- Switch between compact and detailed card views
|
|
260
|
-
- Filter by status, project, or search keywords
|
|
261
|
-
- Drag tasks to update their status instantly
|
|
279
|
+
> "Add this to my collection: Refactor user auth module using JWT + Refresh Token scheme"
|
|
262
280
|
|
|
263
|
-
|
|
281
|
+
AI automatically creates the task, and you'll see it in the Kanban later.
|
|
264
282
|
|
|
265
|
-
|
|
266
|
-
- "Move the authentication task to in-progress"
|
|
267
|
-
- "Create a new project for mobile app with 5 initial tasks"
|
|
268
|
-
- "What's my overall progress across all projects?"
|
|
283
|
+
### 2. Let AI Plan Project Structure
|
|
269
284
|
|
|
270
|
-
|
|
285
|
+
Starting a new project? Just ask AI to break it down:
|
|
271
286
|
|
|
272
|
-
-
|
|
273
|
-
|
|
274
|
-
-
|
|
275
|
-
|
|
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?"
|
|
296
|
+
|
|
297
|
+
> "Mark the user login feature as completed and create corresponding test tasks"
|
|
298
|
+
|
|
299
|
+
### 4. Team Collaboration and Assignment
|
|
300
|
+
|
|
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.
|
|
276
306
|
|
|
277
307
|
---
|
|
278
308
|
|
|
279
|
-
##
|
|
309
|
+
## Installation
|
|
280
310
|
|
|
281
311
|
### Requirements
|
|
282
312
|
|
|
283
|
-
- Node.js 18+ (20+
|
|
313
|
+
- Node.js 18+ (recommended 20+)
|
|
284
314
|
|
|
285
|
-
###
|
|
315
|
+
### Global Install
|
|
286
316
|
|
|
287
317
|
```bash
|
|
288
318
|
npm install -g roadmap-skill
|
|
289
319
|
```
|
|
290
320
|
|
|
291
|
-
###
|
|
321
|
+
### Use Without Installing
|
|
292
322
|
|
|
293
323
|
```bash
|
|
294
|
-
npx roadmap-skill-web #
|
|
324
|
+
npx roadmap-skill-web # Web Kanban only
|
|
295
325
|
npx roadmap-skill # Full MCP server
|
|
296
326
|
```
|
|
297
327
|
|
|
298
328
|
---
|
|
299
329
|
|
|
300
|
-
##
|
|
330
|
+
## Core Features
|
|
301
331
|
|
|
302
332
|
| Feature | Description |
|
|
303
|
-
|
|
304
|
-
| **Kanban
|
|
305
|
-
| **Drag
|
|
306
|
-
| **Quick
|
|
307
|
-
| **Dual
|
|
308
|
-
| **Smart Search** |
|
|
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 |
|
|
309
339
|
|
|
310
340
|
---
|
|
311
341
|
|
|
312
|
-
##
|
|
342
|
+
## Supported Platforms
|
|
313
343
|
|
|
314
344
|
- ✅ **Claude Code** — Command-line AI assistant
|
|
315
345
|
- ✅ **Claude Desktop** — Full MCP integration
|
|
@@ -319,12 +349,39 @@ npx roadmap-skill # Full MCP server
|
|
|
319
349
|
|
|
320
350
|
---
|
|
321
351
|
|
|
322
|
-
##
|
|
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
|
|
323
380
|
|
|
324
381
|
MIT © [shiquda](https://github.com/shiquda)
|
|
325
382
|
|
|
326
383
|
---
|
|
327
384
|
|
|
328
385
|
<p align="center">
|
|
329
|
-
<strong>
|
|
386
|
+
<strong>If this project helps you, please consider giving it a star!</strong>
|
|
330
387
|
</p>
|
package/README.zh.md
ADDED
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
# Roadmap Skill
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="./imgs/roadmap-skill-web.png" alt="Roadmap Skill Kanban Board" width="900">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>让 AI 帮你管理项目,让看板回归简洁</strong><br>
|
|
9
|
+
零配置启动,本地数据,Agent 原生支持
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
简体中文 | <a href="README.md">English</a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<a href="https://www.npmjs.com/package/roadmap-skill"><img src="https://img.shields.io/npm/v/roadmap-skill" alt="npm version"></a>
|
|
18
|
+
<a href="https://github.com/shiquda/roadmap-skill/blob/main/LICENSE"><img src="https://img.shields.io/github/license/shiquda/roadmap-skill" alt="License"></a>
|
|
19
|
+
<a href="https://www.npmjs.com/package/roadmap-skill"><img src="https://img.shields.io/npm/dm/roadmap-skill" alt="npm downloads"></a>
|
|
20
|
+
</p>
|
|
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
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 为什么选择 Roadmap Skill?
|
|
30
|
+
|
|
31
|
+
| 你的困扰 | Roadmap Skill 的解决方式 |
|
|
32
|
+
|---------|-------------------------|
|
|
33
|
+
| 项目数据散落在第三方云端,缺乏安全感 | **本地优先** — 所有数据存储在你的电脑,完全掌控,离线可用 |
|
|
34
|
+
| 和 AI 对话时需要来回粘贴任务列表 | **Agent 原生** — AI 直接读写任务,对话中自然管理,零摩擦 |
|
|
35
|
+
| 纯文本管理缺乏直观性,但传统工具太重 | **美观看板** — 需要时打开浏览器,拖拽即可,不打扰编码流 |
|
|
36
|
+
| Vibe Coding 中的灵感、Bug 随手记在某处就忘了 | **收集箱** — 让 Agent 帮你沉淀零散想法,自动整理待办 |
|
|
37
|
+
| 任务太多不知从何开始,优先级全靠猜 | **智能推荐** — Agent 分析项目上下文,主动建议下一步工作 |
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 零配置快速开始
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# 方式一:启动 Web 看板
|
|
45
|
+
npx roadmap-skill-web
|
|
46
|
+
|
|
47
|
+
# 方式二:集成到你的 AI 助手(MCP 配置如下)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
<details>
|
|
51
|
+
<summary><b>查看各平台配置</b></summary>
|
|
52
|
+
|
|
53
|
+
<details>
|
|
54
|
+
<summary><b>Claude Code</b></summary>
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
claude mcp add roadmap "npx -y roadmap-skill"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
</details>
|
|
61
|
+
|
|
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>
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
/mcp add
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Or edit `~/.copilot/mcp-config.json`:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"mcpServers": {
|
|
90
|
+
"roadmap": {
|
|
91
|
+
"type": "local",
|
|
92
|
+
"command": "npx",
|
|
93
|
+
"args": ["-y", "roadmap-skill"]
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
</details>
|
|
100
|
+
|
|
101
|
+
<details>
|
|
102
|
+
<summary><b>Cursor</b></summary>
|
|
103
|
+
|
|
104
|
+
```json
|
|
105
|
+
{
|
|
106
|
+
"mcpServers": {
|
|
107
|
+
"roadmap": {
|
|
108
|
+
"command": "npx",
|
|
109
|
+
"args": ["-y", "roadmap-skill"]
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
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
|
+
|
|
122
|
+
```json
|
|
123
|
+
{
|
|
124
|
+
"mcpServers": {
|
|
125
|
+
"roadmap": {
|
|
126
|
+
"type": "stdio",
|
|
127
|
+
"command": "npx",
|
|
128
|
+
"args": ["-y", "roadmap-skill"]
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
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
|
+
启动后,直接告诉你的 AI:
|
|
254
|
+
|
|
255
|
+
> "帮我创建一个网站重构项目,包含首页、关于页和联系表单的开发任务"
|
|
256
|
+
|
|
257
|
+
AI 会立即为你创建项目和任务,并自动写入本地存储。你可以随时打开 <http://localhost:7860> 查看可视化看板。
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
## 适合谁使用
|
|
262
|
+
|
|
263
|
+
| 场景 | Roadmap Skill 能为你做什么 |
|
|
264
|
+
|------|---------------------------|
|
|
265
|
+
| **独立开发者** | 用对话管理个人项目,避免在复杂工具中迷失 |
|
|
266
|
+
| **AI 重度用户** | 让 Agent 直接读写任务,告别来回粘贴的繁琐 |
|
|
267
|
+
| **Vibe Coder** | 随手让 AI 记录灵感,自动沉淀到收集箱 |
|
|
268
|
+
| **小团队协作** | 简单的任务分配与进度追踪,无需学习成本 |
|
|
269
|
+
| **隐私敏感者** | 数据完全本地存储,不上传任何云端服务 |
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## 典型使用场景
|
|
274
|
+
|
|
275
|
+
### 1. Vibe Coding 中的灵感收集
|
|
276
|
+
|
|
277
|
+
正在和 AI 讨论新功能时,突然想到一个优化点:
|
|
278
|
+
|
|
279
|
+
> "帮我把这个想法记到收集箱:重构用户认证模块,使用 JWT + Refresh Token 方案"
|
|
280
|
+
|
|
281
|
+
AI 自动创建任务,稍后你打开看板就能看到待整理的想法。
|
|
282
|
+
|
|
283
|
+
### 2. 让 AI 规划项目结构
|
|
284
|
+
|
|
285
|
+
开始一个新项目时,直接让 AI 帮你分解:
|
|
286
|
+
|
|
287
|
+
> "创建一个电商后台管理项目,包含商品管理、订单处理、用户权限三个模块,每个模块分解为具体的开发任务"
|
|
288
|
+
|
|
289
|
+
AI 自动创建项目结构,你只需要在浏览器中打开看板,拖拽任务开始工作。
|
|
290
|
+
|
|
291
|
+
### 3. 进度追踪与状态更新
|
|
292
|
+
|
|
293
|
+
编码过程中随时询问:
|
|
294
|
+
|
|
295
|
+
> "我当前项目完成了多少百分比?有哪些高优先级任务还没开始?"
|
|
296
|
+
|
|
297
|
+
> "把用户登录功能的状态改为已完成,并创建对应的测试任务"
|
|
298
|
+
|
|
299
|
+
### 4. 团队协作分配
|
|
300
|
+
|
|
301
|
+
在对话中快速分配:
|
|
302
|
+
|
|
303
|
+
> "把前端页面的任务分配给 @张三,截止日期设为本周五,优先级设为高"
|
|
304
|
+
|
|
305
|
+
团队成员可以在看板中查看自己的任务列表。
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## 安装
|
|
310
|
+
|
|
311
|
+
### 环境要求
|
|
312
|
+
|
|
313
|
+
- Node.js 18+ (推荐 20+)
|
|
314
|
+
|
|
315
|
+
### 全局安装
|
|
316
|
+
|
|
317
|
+
```bash
|
|
318
|
+
npm install -g roadmap-skill
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
### 免安装使用
|
|
322
|
+
|
|
323
|
+
```bash
|
|
324
|
+
npx roadmap-skill-web # 仅启动 Web 看板
|
|
325
|
+
npx roadmap-skill # 完整 MCP 服务器
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
## 核心功能
|
|
331
|
+
|
|
332
|
+
| 功能 | 说明 |
|
|
333
|
+
|------|------|
|
|
334
|
+
| **看板视图** | 四列布局:待办、进行中、审核中、已完成 |
|
|
335
|
+
| **拖拽操作** | 拖拽任务即可更新状态,所见即所得 |
|
|
336
|
+
| **快速创建** | 点击任意列的 "+" 按钮,瞬间添加新任务 |
|
|
337
|
+
| **双重视图** | 紧凑模式概览全局,详细模式查看完整信息 |
|
|
338
|
+
| **智能搜索** | 跨所有项目快速查找任务,支持关键词过滤 |
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## 支持平台
|
|
343
|
+
|
|
344
|
+
- ✅ **Claude Code** — 命令行 AI 助手
|
|
345
|
+
- ✅ **Claude Desktop** — 完整 MCP 集成
|
|
346
|
+
- ✅ **Cursor** — AI 驱动的 IDE
|
|
347
|
+
- ✅ **VS Code** — 通过 Cline 或 Roo Code 扩展
|
|
348
|
+
- ✅ **任意 MCP 客户端** — 标准 MCP 协议支持
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## 数据存储
|
|
353
|
+
|
|
354
|
+
Roadmap Skill 采用**纯本地 JSON 文件存储**,所有数据保存在你的用户目录下:
|
|
355
|
+
|
|
356
|
+
| 平台 | 存储路径 |
|
|
357
|
+
|------|---------|
|
|
358
|
+
| macOS | `~/.roadmap-skill/data/` |
|
|
359
|
+
| Linux | `~/.roadmap-skill/data/` |
|
|
360
|
+
| Windows | `%USERPROFILE%\.roadmap-skill\data\` |
|
|
361
|
+
|
|
362
|
+
### 数据文件结构
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
.roadmap-skill/
|
|
366
|
+
└── data/
|
|
367
|
+
├── projects.json # 项目列表
|
|
368
|
+
├── tasks.json # 所有任务
|
|
369
|
+
└── tags.json # 标签定义
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
- ✅ **完全离线可用** — 无需网络连接
|
|
373
|
+
- ✅ **数据可迁移** — 直接复制文件夹即可备份
|
|
374
|
+
- ✅ **版本控制友好** — JSON 格式便于 diff 查看变更
|
|
375
|
+
- ✅ **隐私安全** — 数据永远不会离开你的电脑
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
379
|
+
## License
|
|
380
|
+
|
|
381
|
+
MIT © [shiquda](https://github.com/shiquda)
|
|
382
|
+
|
|
383
|
+
---
|
|
384
|
+
|
|
385
|
+
<p align="center">
|
|
386
|
+
<strong>如果这个项目对你有帮助,欢迎 Star 支持!</strong>
|
|
387
|
+
</p>
|