roadmap-skill 0.2.8 → 0.2.10

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 CHANGED
@@ -5,6 +5,65 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.10] - 2026-02-27
9
+
10
+ ### Added
11
+ - **Contributing Section**: Added Contributing section to README (en/zh)
12
+
13
+ ### Changed
14
+ - **README**: Revamped copy for both en/zh versions, improved clarity and tone
15
+ - **Tag ID Workflow**: Unified tag-id handling with deterministic color fallback
16
+
17
+
18
+ ## [0.2.9] - 2026-02-26
19
+
20
+ ### Added
21
+ - **Development Scripts**: Added `dev:web`, `dev:server`, `dev:full`, and `inspector` npm scripts
22
+ - **Vite Proxy**: Frontend dev server now proxies API requests to backend automatically
23
+ - **Verbose Parameter**: Tools now support `verbose` parameter for compact vs full data responses
24
+ - **Summary Types**: Added `TaskSummary` and `ProjectSummary` types for lightweight responses
25
+ - **MCP Inspector**: Added `npm run inspector` command for debugging MCP server
26
+
27
+ ### Changed
28
+ - **UI Layout**: Moved filter bar to header alongside title for better space usage
29
+ - **Compact Mode**: Optimized spacing, removed tags, reduced margins and padding
30
+ - **Hover Animation**: Reduced card hover displacement from `-translate-y-1` to `-translate-y-0.5`
31
+ - **Create Button**: Changed task creation button color to project theme green
32
+
33
+ ### Fixed
34
+ - **Completed Tasks**: Fixed "All" filter to properly include completed tasks via `includeCompleted` parameter
35
+
36
+ ## [0.2.8] - 2026-02-26
37
+
38
+ ### Fixed
39
+ - **MCP Transport**: Resolved stdio transport issues for better CLI compatibility
40
+ - **Tag System**: Improved tag management and display in task cards
41
+
42
+ ### Changed
43
+ - Updated README with latest features and improvements
44
+
45
+ ## [0.2.7] - 2026-02-26
46
+
47
+ ### Fixed
48
+ - **Static Files Path**: Corrected bundled static files path for npx environment execution
49
+
50
+ ### Added
51
+ - **Release Documentation**: Added release workflow documentation to AGENTS.md
52
+
53
+ ## [0.2.6] - 2026-02-26
54
+
55
+ ### Fixed
56
+ - **Static Files Path**: Resolved static files path resolution for npx execution environment
57
+
58
+ ## [0.2.5] - 2026-02-26
59
+
60
+ ### Added
61
+ - **NovaBoard UI**: Integrated tag system with NovaBoard-style dashboard design
62
+ - **Tag System**: Full tag management with color coding and filtering
63
+
64
+ ### Fixed
65
+ - **Server Path**: Use `__dirname` instead of `process.cwd()` for reliable static files path resolution
66
+
8
67
  ## [0.2.0] - 2026-02-10
9
68
 
10
69
  ### Added
package/README.md CHANGED
@@ -5,8 +5,8 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <strong>Let AI manage your projects, keep Kanban simple</strong><br>
9
- Zero-config startup, local data, Agent-native support
8
+ <strong>Shared roadmap for humans and AI Agents</strong><br>
9
+ Visual kanban for you. MCP server for Agents. Local-first.
10
10
  </p>
11
11
 
12
12
  <p align="center">
@@ -26,15 +26,15 @@
26
26
 
27
27
  ---
28
28
 
29
- ## Why Roadmap Skill?
29
+ ## What Makes It Different
30
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 |
31
+ **Shared context** Chat with your Agent to plan tasks, or edit directly in the Kanban — both stay in sync. Your Agent always sees the latest state.
32
+
33
+ **Agent-native** Built as an MCP server. Your AI can create, update, and query tasks directly in conversation.
34
+
35
+ **Lightweight Kanban** Open `localhost:7860` when you feel like it, or ask your Agent to open it with `open_web_interface`. Or just stay in chat. All three work.
36
+
37
+ **Local-first** Your data lives on your machine. No accounts, no cloud sync, no vendor lock-in.
38
38
 
39
39
  ---
40
40
 
@@ -243,83 +243,74 @@ Follow Windsurf MCP documentation and use:
243
243
 
244
244
  </details>
245
245
 
246
- </details>
247
-
248
- <br>
249
-
250
- After setup, simply tell your AI:
251
-
252
- > "Create a website redesign project with tasks for homepage, about page, and contact form"
246
+ <details>
247
+ <summary><b>Codex CLI / Codex IDE</b></summary>
253
248
 
254
- 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.
249
+ **One-liner (recommended):**
255
250
 
256
- ---
251
+ ```bash
252
+ codex mcp add roadmap -- npx -y roadmap-skill
253
+ ```
257
254
 
258
- ## Who Is This For?
255
+ **Manual config** edit `~/.codex/config.toml`:
259
256
 
260
- | Scenario | What Roadmap Skill Does For You |
261
- |---------|--------------------------------|
262
- | **Solo Developers** | Manage personal projects through conversation, avoid getting lost in complex tools |
263
- | **AI Power Users** | Let Agent directly read/write tasks, goodbye to copy-pasting hassle |
264
- | **Vibe Coders** | Capture inspirations on the fly, automatically save to collection box |
265
- | **Small Teams** | Simple task assignment and progress tracking, zero learning curve |
266
- | **Privacy-conscious Users** | Data stored completely locally, never uploaded to any cloud service |
257
+ ```toml
258
+ [mcp_servers.roadmap]
259
+ command = "npx"
260
+ args = ["-y", "roadmap-skill"]
261
+ ```
267
262
 
268
- ---
263
+ > **Windows**: No `cmd /c` wrapper needed — Codex handles the subprocess directly.
269
264
 
270
- ## Typical Use Cases
265
+ > **Server name**: Must match `^[a-zA-Z0-9_-]+$`. Names with spaces or parentheses are rejected.
271
266
 
272
- ### 1. Capture Inspiration During Vibe Coding
267
+ > **Note**: Both Codex CLI and the Codex VSCode extension share the same `~/.codex/config.toml`. A syntax error breaks both.
273
268
 
274
- When discussing new features with AI, suddenly think of an optimization:
269
+ </details>
275
270
 
276
- > "Add this to my collection: Refactor user auth module using JWT + Refresh Token scheme"
271
+ </details>
277
272
 
278
- AI automatically creates the task, and you'll see it in the Kanban later.
273
+ <br>
279
274
 
280
- ### 2. Let AI Plan Project Structure
275
+ After setup, simply tell your AI:
281
276
 
282
- Starting a new project? Just ask AI to break it down:
277
+ > "Create a website redesign project with tasks for homepage, about page, and contact form"
283
278
 
284
- > "Create an e-commerce admin dashboard project with product management, order processing, and user permissions modules, broken down into specific development tasks"
279
+ 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.
285
280
 
286
- AI auto-creates the project structure. Just open the Kanban in browser and drag tasks to start working.
281
+ ---
287
282
 
288
- ### 3. Progress Tracking and Status Updates
283
+ ## Who Is This For?
289
284
 
290
- Check progress anytime during coding:
285
+ Solo developers, AI power users, and vibe coders who want their Agent to be a real collaborator — not just a code generator.
291
286
 
292
- > "What's the completion percentage of my current project? What high-priority tasks haven't started yet?"
287
+ ---
293
288
 
294
- > "Mark the user login feature as completed and create corresponding test tasks"
289
+ ## Typical Use Cases
295
290
 
296
- ### 4. Team Collaboration and Assignment
291
+ ### 1. Capture Ideas Without Breaking Flow
297
292
 
298
- Quickly assign in conversation:
293
+ Mid-session, something comes to mind:
299
294
 
300
- > "Assign frontend page tasks to @zhangsan, deadline this Friday, priority high"
295
+ > "Note this down: switch the auth module to JWT + refresh token rotation"
301
296
 
302
- Team members can view their task list in the Kanban.
297
+ Your Agent creates the task. You stay in flow. Open the Kanban later to review.
303
298
 
304
- ---
299
+ ### 2. Let AI Bootstrap Your Project Plan
305
300
 
306
- ## Installation
301
+ Starting something new:
307
302
 
308
- ### Requirements
303
+ > "Set up a project for the admin dashboard — product management, orders, and user permissions. Break each into tasks."
309
304
 
310
- - Node.js 18+ (recommended 20+)
305
+ Agent scaffolds the whole structure. You open the board and start dragging.
311
306
 
312
- ### Global Install
307
+ ### 3. Check In Without Leaving the Chat
313
308
 
314
- ```bash
315
- npm install -g roadmap-skill
316
- ```
309
+ > "What's left on the current project? Anything high priority I haven't touched?"
317
310
 
318
- ### Use Without Installing
311
+ > "Mark the login feature done and add a task for writing tests."
319
312
 
320
- ```bash
321
- npx roadmap-skill # Full MCP server
322
- ```
313
+ No tab switching. No copy-pasting. Just ask.
323
314
 
324
315
  ---
325
316
 
package/README.zh.md CHANGED
@@ -5,8 +5,8 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <strong>让 AI 帮你管理项目,让看板回归简洁</strong><br>
9
- 零配置启动,本地数据,Agent 原生支持
8
+ <strong>人类与 AI Agent 共享的项目看板</strong><br>
9
+ 你看到的,Agent 也看到。对话里规划,看板里审阅。或者相反。
10
10
  </p>
11
11
 
12
12
  <p align="center">
@@ -26,15 +26,15 @@
26
26
 
27
27
  ---
28
28
 
29
- ## 为什么选择 Roadmap Skill?
29
+ ## 这个 MCP 有什么不同?
30
30
 
31
- | 你的困扰 | Roadmap Skill 的解决方式 |
32
- |---------|-------------------------|
33
- | 项目数据散落在第三方云端,缺乏安全感 | **本地优先** 所有数据存储在你的电脑,完全掌控,离线可用 |
34
- | 和 AI 对话时需要来回粘贴任务列表 | **Agent 原生** — AI 直接读写任务,对话中自然管理,零摩擦 |
35
- | 纯文本管理缺乏直观性,但传统工具太重 | **美观看板** 需要时打开浏览器,拖拽即可,不打扰编码流 |
36
- | Vibe Coding 中的灵感、Bug 随手记在某处就忘了 | **收集箱** — 让 Agent 帮你沉淀零散想法,自动整理待办 |
37
- | 任务太多不知从何开始,优先级全靠猜 | **智能推荐** Agent 分析项目上下文,主动建议下一步工作 |
31
+ **人机共享视图** 在对话里和 Agent 一起规划任务,也可以直接在看板上手动编辑,两种方式实时互通。你和Agent 始终能获取到最新状态。
32
+
33
+ **Agent 原生** MCP 服务器形式运行。AI 可以在对话中直接创建、更新、查询任务。
34
+
35
+ **轻量看板** 你想看的时候打开 `localhost:7860`。懒得开浏览器?直接让 Agent `/open-web-ui` 也行。
36
+
37
+ **本地优先**数据存在你的机器上。无需账号,无云同步,不依赖任何第三方服务。
38
38
 
39
39
  ---
40
40
 
@@ -241,6 +241,28 @@ Follow Windsurf MCP documentation and use:
241
241
  }
242
242
  ```
243
243
 
244
+ </details>
245
+ <details>
246
+ <summary><b>Codex CLI / Codex IDE</b></summary>
247
+
248
+ **一键安装(推荐):**
249
+
250
+ ```bash
251
+ codex mcp add roadmap -- npx -y roadmap-skill
252
+ ```
253
+
254
+ **手动配置** — 编辑 `~/.codex/config.toml`:
255
+
256
+ ```toml
257
+ [mcp_servers.roadmap]
258
+ command = "npx"
259
+ args = ["-y", "roadmap-skill"]
260
+ ```
261
+
262
+ > **Windows**:无需 `cmd /c` 包装 — Codex 会直接管理子进程。
263
+ > **服务器名称**:必须匹配 `^[a-zA-Z0-9_-]+$`,含空格或括号的名称会被拒绝。
264
+ > **注意**:Codex CLI 和 Codex VSCode 扩展共享同一个 `~/.codex/config.toml`,语法错误会同时影响两者。
265
+
244
266
  </details>
245
267
 
246
268
  </details>
@@ -257,69 +279,33 @@ AI 会立即为你创建项目和任务,并自动写入本地存储。你可
257
279
 
258
280
  ## 适合谁使用
259
281
 
260
- | 场景 | Roadmap Skill 能为你做什么 |
261
- |------|---------------------------|
262
- | **独立开发者** | 用对话管理个人项目,避免在复杂工具中迷失 |
263
- | **AI 重度用户** | 让 Agent 直接读写任务,告别来回粘贴的繁琐 |
264
- | **Vibe Coder** | 随手让 AI 记录灵感,自动沉淀到收集箱 |
265
- | **小团队协作** | 简单的任务分配与进度追踪,无需学习成本 |
266
- | **隐私敏感者** | 数据完全本地存储,不上传任何云端服务 |
267
-
268
- ---
282
+ 独立开发者、AI 重度用户、Vibe Coder 想让 Agent 真正参与项目协作,而不只是写代码的人。
269
283
 
270
284
  ## 典型使用场景
271
285
 
272
- ### 1. Vibe Coding 中的灵感收集
273
-
274
- 正在和 AI 讨论新功能时,突然想到一个优化点:
286
+ ### 1. 不打断流地记录想法
275
287
 
276
- > "帮我把这个想法记到收集箱:重构用户认证模块,使用 JWT + Refresh Token 方案"
288
+ 编着编着突然想到一个优化点:
277
289
 
278
- AI 自动创建任务,稍后你打开看板就能看到待整理的想法。
290
+ > "记一下:把认证模块改成 JWT + refresh token 方案"
279
291
 
280
- ### 2. 让 AI 规划项目结构
292
+ Agent 创建任务。你继续写代码。稍后打开看板再回顾。
281
293
 
282
- 开始一个新项目时,直接让 AI 帮你分解:
294
+ ### 2. 让 AI 帮你搭建项目结构
283
295
 
284
- > "创建一个电商后台管理项目,包含商品管理、订单处理、用户权限三个模块,每个模块分解为具体的开发任务"
296
+ 开始一个新项目:
285
297
 
286
- AI 自动创建项目结构,你只需要在浏览器中打开看板,拖拽任务开始工作。
298
+ > "创建一个电商后台项目,包含商品管理、订单处理、用户权限三个模块,每个模块拆分为具体任务"
287
299
 
288
- ### 3. 进度追踪与状态更新
300
+ Agent 直接搭好整个结构。你打开看板开始拖拽。
289
301
 
290
- 编码过程中随时询问:
302
+ ### 3. 不离开对话窗口就能检查进度
291
303
 
292
- > "我当前项目完成了多少百分比?有哪些高优先级任务还没开始?"
304
+ > "当前项目还剩什么?有没有高优先级的任务还没动?"
293
305
 
294
- > "把用户登录功能的状态改为已完成,并创建对应的测试任务"
306
+ > "把登录功能标为已完成,再加一个写测试的任务"
295
307
 
296
- ### 4. 团队协作分配
297
-
298
- 在对话中快速分配:
299
-
300
- > "把前端页面的任务分配给 @张三,截止日期设为本周五,优先级设为高"
301
-
302
- 团队成员可以在看板中查看自己的任务列表。
303
-
304
- ---
305
-
306
- ## 安装
307
-
308
- ### 环境要求
309
-
310
- - Node.js 18+ (推荐 20+)
311
-
312
- ### 全局安装
313
-
314
- ```bash
315
- npm install -g roadmap-skill
316
- ```
317
-
318
- ### 免安装使用
319
-
320
- ```bash
321
- npx roadmap-skill # 完整 MCP 服务器
322
- ```
308
+ 不用切换标签页,不用复制粘贴。直接问就行。
323
309
 
324
310
  ---
325
311
 
@@ -337,11 +323,9 @@ npx roadmap-skill # 完整 MCP 服务器
337
323
 
338
324
  ## 支持平台
339
325
 
340
- - ✅ **Claude Code** — 命令行 AI 助手
341
- - ✅ **Claude Desktop** — 完整 MCP 集成
342
- - ✅ **Cursor**AI 驱动的 IDE
343
- - ✅ **VS Code** — 通过 Cline 或 Roo Code 扩展
344
- - ✅ **任意 MCP 客户端** — 标准 MCP 协议支持
326
+ - ✅ **Claude Code, Codex, OpenCode** — 命令行 AI 助手
327
+ - ✅ **Cursor, VS Code** — AI 驱动的 IDE
328
+ - ✅ **任意支持 MCP 的客户端** 标准 MCP 协议支持
345
329
 
346
330
  ---
347
331