roadmap-skill 0.2.10 → 0.3.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 +32 -0
- package/README.md +75 -36
- package/README.zh.md +37 -24
- package/dist/index.js +2132 -505
- package/dist/index.js.map +1 -1
- package/dist/web/app/assets/main-BZV40eAE.css +1 -0
- package/dist/web/app/assets/main-CewZLzdL.js +64 -0
- package/dist/web/app/index.html +2 -1
- package/dist/web/server.js +1631 -412
- package/dist/web/server.js.map +1 -1
- package/package.json +8 -3
- package/dist/web/app/assets/main-CuvRBjau.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,38 @@ 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.3.0] - 2026-03-14
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Graph View**: Added a full dependency graph workspace powered by React Flow for sequencing work, visualizing blockers, and reviewing execution order
|
|
12
|
+
- **Dependency Editing**: Added atomic dependency edge updates, inline dependency actions, and richer graph-side editing flows
|
|
13
|
+
- **Graph Export**: Added image export support for dependency views in the web workspace
|
|
14
|
+
- **Workspace Metadata**: Added repository and version metadata for the web workspace header and API responses
|
|
15
|
+
- **Agent Tooling**: Added agent-friendly dependency view read models, mutation change metadata, and dedicated dependency view tool coverage
|
|
16
|
+
- **Planning Skills**: Added the initial roadmap skill pack for roadmap routing, task flow, planning views, and web visualization guidance
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Dependency Planning UX**: Improved dependency view layout, controls, inline actions, ready/done presentation, and detailed task rendering
|
|
20
|
+
- **Workspace State**: Improved dependency view selection, persisted workspace state, graph layout stability, and general interaction polish
|
|
21
|
+
- **Graph Layout Engine**: Bundled `elkjs` support for graph layout improvements in the web client
|
|
22
|
+
- **Task Creation Flow**: Added an active-only status filter to the Add Tasks modal so large graphs are easier to extend
|
|
23
|
+
- **Prompt Behavior**: Normalized optional argument handling in project prompts to reduce branching friction for Agents
|
|
24
|
+
- **Documentation**: Expanded README messaging around Graph View, refreshed screenshots, and added Chinese README updates for the new planning experience
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- **Mutation Responses**: Stabilized dependency view mutation responses and moved dependency change metadata generation into the service layer
|
|
28
|
+
- **Graph Persistence**: Fixed dependency view persistence and layout stability across workspace sessions
|
|
29
|
+
- **Metadata Detection**: Improved fallback behavior for app metadata resolution in the web server
|
|
30
|
+
- **Repository Cleanup**: Removed temporary root screenshots from the repository
|
|
31
|
+
|
|
32
|
+
## [0.2.11] - 2026-03-09
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
- **MCP Prompts**: Added non-intrusive task hints to `open-web-ui` and `quick-capture` prompts
|
|
36
|
+
- **Port Display**: Fixed NaN display when port parameter is not provided in `open-web-ui` prompt
|
|
37
|
+
- **Prompt Wording**: Removed command-like phrasing that could be misidentified as injection attempts
|
|
38
|
+
|
|
39
|
+
|
|
8
40
|
## [0.2.10] - 2026-02-27
|
|
9
41
|
|
|
10
42
|
### Added
|
package/README.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# Roadmap Skill
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="./imgs/roadmap-skill-web.png" alt="Roadmap Skill
|
|
4
|
+
<img src="./imgs/roadmap-skill-web.png" alt="Roadmap Skill web workspace with kanban and graph views" width="900">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<sub>The local planning workspace: status in Kanban, execution order in Graph View.</sub>
|
|
5
9
|
</p>
|
|
6
10
|
|
|
7
11
|
<p align="center">
|
|
8
12
|
<strong>Shared roadmap for humans and AI Agents</strong><br>
|
|
9
|
-
Visual kanban for you. MCP server for Agents. Local-first.
|
|
13
|
+
Visual kanban and graph views for you. MCP server for Agents. Local-first.
|
|
10
14
|
</p>
|
|
11
15
|
|
|
12
16
|
<p align="center">
|
|
@@ -32,12 +36,39 @@
|
|
|
32
36
|
|
|
33
37
|
**Agent-native** — Built as an MCP server. Your AI can create, update, and query tasks directly in conversation.
|
|
34
38
|
|
|
35
|
-
**
|
|
39
|
+
**Visual workspace** — Open `localhost:7860` when you feel like it, or ask your Agent to open it with `open_web_interface`. Kanban for status, Graph View for sequencing. Or just stay in chat. All three work.
|
|
36
40
|
|
|
37
41
|
**Local-first** — Your data lives on your machine. No accounts, no cloud sync, no vendor lock-in.
|
|
38
42
|
|
|
39
43
|
---
|
|
40
44
|
|
|
45
|
+
## New in v0.3.0: Graph View
|
|
46
|
+
|
|
47
|
+
Graph View is one of the headline features in `v0.3.0`.
|
|
48
|
+
|
|
49
|
+
<p align="center">
|
|
50
|
+
<img src="./imgs/roadmap-graph.png" alt="Roadmap Skill graph view for dependency planning" width="900">
|
|
51
|
+
</p>
|
|
52
|
+
|
|
53
|
+
<p align="center">
|
|
54
|
+
<sub>Graph View turns roadmap tasks into a dependency map, so you can inspect order, blockers, and ready work at a glance.</sub>
|
|
55
|
+
</p>
|
|
56
|
+
|
|
57
|
+
Kanban is great for tracking status. Graph View is for understanding execution order.
|
|
58
|
+
|
|
59
|
+
It helps you and your Agent answer questions like:
|
|
60
|
+
|
|
61
|
+
- What has to happen first?
|
|
62
|
+
- Which tasks are ready right now?
|
|
63
|
+
- What is blocked by unfinished work?
|
|
64
|
+
- Which dependency should be added, reversed, or removed?
|
|
65
|
+
|
|
66
|
+
Instead of treating roadmap tasks as a flat list, Graph View turns them into a visual dependency map with node connections, ready/done states, detailed task cards, and export support. It is designed for planning sessions where sequencing matters just as much as status.
|
|
67
|
+
|
|
68
|
+
If you are using Roadmap Skill as an MCP workspace, this is the view that makes agent-assisted planning feel concrete: your Agent can build and update dependency graphs in chat, and you can immediately inspect the structure visually in the web UI.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
41
72
|
## Quick Start (Zero Config)
|
|
42
73
|
|
|
43
74
|
```bash
|
|
@@ -280,6 +311,28 @@ The AI will immediately create the project and tasks, saving them to local stora
|
|
|
280
311
|
|
|
281
312
|
---
|
|
282
313
|
|
|
314
|
+
## Agent Skills
|
|
315
|
+
|
|
316
|
+
This repository includes installable skills under `skills/`, distributed through the git repository rather than the published npm package.
|
|
317
|
+
|
|
318
|
+
Available skills:
|
|
319
|
+
|
|
320
|
+
- `skills/roadmap/` - lightweight background and routing for roadmap-skill
|
|
321
|
+
- `skills/roadmap-task-flow/` - capture, enrich, tag, and prioritize roadmap tasks
|
|
322
|
+
- `skills/roadmap-planning-views/` - build focused planning graphs from task subsets
|
|
323
|
+
- `skills/roadmap-web-visualization/` - open and use the local roadmap web workspace
|
|
324
|
+
|
|
325
|
+
Recommended installation pattern for skill-aware tools:
|
|
326
|
+
|
|
327
|
+
```bash
|
|
328
|
+
# install from the git repository when the installer supports repo sources
|
|
329
|
+
npx skills add shiquda/roadmap-skill
|
|
330
|
+
```
|
|
331
|
+
|
|
332
|
+
These skills are still in beta. If you run into issues or have suggestions, feedback is very welcome.
|
|
333
|
+
|
|
334
|
+
---
|
|
335
|
+
|
|
283
336
|
## Who Is This For?
|
|
284
337
|
|
|
285
338
|
Solo developers, AI power users, and vibe coders who want their Agent to be a real collaborator — not just a code generator.
|
|
@@ -290,28 +343,25 @@ Solo developers, AI power users, and vibe coders who want their Agent to be a re
|
|
|
290
343
|
|
|
291
344
|
### 1. Capture Ideas Without Breaking Flow
|
|
292
345
|
|
|
293
|
-
Mid-session, something
|
|
346
|
+
Mid-session, something pops into your head:
|
|
294
347
|
|
|
295
348
|
> "Note this down: switch the auth module to JWT + refresh token rotation"
|
|
296
349
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
### 2. Let AI Bootstrap Your Project Plan
|
|
300
|
-
|
|
301
|
-
Starting something new:
|
|
350
|
+
Use `/quick-capture` or just say "help me note this down" — your Agent turns it into a task, saves it locally, and you keep going. No context switch, no forgotten ideas.
|
|
302
351
|
|
|
303
|
-
|
|
352
|
+
### 2. Let Agent Help You Prioritize
|
|
304
353
|
|
|
305
|
-
|
|
354
|
+
> "This month's OKR is finishing the user system refactor — can you list the related tasks and figure out which ones should come first?"
|
|
306
355
|
|
|
307
|
-
|
|
356
|
+
Use `/auto-prioritize` to let your Agent analyze the current project state and reorder task priorities accordingly.
|
|
308
357
|
|
|
309
|
-
|
|
358
|
+
### 3. Let Agent Recommend What to Do Next
|
|
310
359
|
|
|
311
|
-
> "
|
|
360
|
+
> "What's left on the current project? Any high-priority tasks I haven't touched yet?"
|
|
312
361
|
|
|
313
|
-
|
|
362
|
+
Or use `/suggest-tasks` — your Agent recommends the next actions based on current progress and priorities.
|
|
314
363
|
|
|
364
|
+
No tab switching. No copy-pasting. Just ask
|
|
315
365
|
---
|
|
316
366
|
|
|
317
367
|
## Core Features
|
|
@@ -319,6 +369,10 @@ No tab switching. No copy-pasting. Just ask.
|
|
|
319
369
|
| Feature | Description |
|
|
320
370
|
|--------|-------------|
|
|
321
371
|
| **Kanban View** | Four columns: Todo, In Progress, Review, Done |
|
|
372
|
+
| **Graph View** | Visual dependency map for sequencing work, spotting blockers, and reviewing execution order |
|
|
373
|
+
| **Ready / Blocked Signals** | Quickly see which tasks are ready now and which ones still depend on unfinished work |
|
|
374
|
+
| **Dependency Editing** | Add, reverse, and remove task dependencies directly from the planning graph |
|
|
375
|
+
| **Graph Export** | Export dependency graphs as images for sharing, review, or release planning |
|
|
322
376
|
| **Drag and Drop** | Drag tasks to update status, WYSIWYG |
|
|
323
377
|
| **Quick Create** | Click "+" button on any column to instantly add tasks |
|
|
324
378
|
| **Dual View** | Compact mode for overview, detailed mode for full info |
|
|
@@ -328,10 +382,8 @@ No tab switching. No copy-pasting. Just ask.
|
|
|
328
382
|
|
|
329
383
|
## Supported Platforms
|
|
330
384
|
|
|
331
|
-
- ✅ **Claude Code** — Command-line AI
|
|
332
|
-
- ✅ **
|
|
333
|
-
- ✅ **Cursor** — AI-powered IDE
|
|
334
|
-
- ✅ **VS Code** — Via Cline or Roo Code extensions
|
|
385
|
+
- ✅ **Claude Code, Codex, OpenCode** — Command-line AI assistants
|
|
386
|
+
- ✅ **Cursor, VS Code** — AI-powered IDEs
|
|
335
387
|
- ✅ **Any MCP Client** — Standard MCP protocol support
|
|
336
388
|
|
|
337
389
|
---
|
|
@@ -342,24 +394,11 @@ Roadmap Skill uses **pure local JSON file storage**. All data is saved in your u
|
|
|
342
394
|
|
|
343
395
|
| Platform | Storage Path |
|
|
344
396
|
|---------|-------------|
|
|
345
|
-
|
|
|
346
|
-
|
|
|
347
|
-
|
|
|
348
|
-
|
|
349
|
-
### Data File Structure
|
|
350
|
-
|
|
351
|
-
```
|
|
352
|
-
.roadmap-skill/
|
|
353
|
-
└── data/
|
|
354
|
-
├── projects.json # Project list
|
|
355
|
-
├── tasks.json # All tasks
|
|
356
|
-
└── tags.json # Tag definitions
|
|
357
|
-
```
|
|
397
|
+
| Windows | `%USERPROFILE%\.roadmap-skill` |
|
|
398
|
+
| macOS | `~/.roadmap-skill/` |
|
|
399
|
+
| Linux | `~/.roadmap-skill/` |
|
|
358
400
|
|
|
359
|
-
|
|
360
|
-
- ✅ **Portable** — Copy folder to backup/transfer
|
|
361
|
-
- ✅ **Version control friendly** — JSON format for easy diff
|
|
362
|
-
- ✅ **Privacy secure** — Data never leaves your machine
|
|
401
|
+
You can export or import backup files from the web interface.
|
|
363
402
|
|
|
364
403
|
---
|
|
365
404
|
|
package/README.zh.md
CHANGED
|
@@ -277,6 +277,28 @@ AI 会立即为你创建项目和任务,并自动写入本地存储。你可
|
|
|
277
277
|
|
|
278
278
|
---
|
|
279
279
|
|
|
280
|
+
## Agent Skills
|
|
281
|
+
|
|
282
|
+
本仓库在 `skills/` 目录下提供了一组可安装的 Agent Skills,它们通过 git 仓库分发,而不是通过已发布的 npm 包分发。
|
|
283
|
+
|
|
284
|
+
可用的 Skills:
|
|
285
|
+
|
|
286
|
+
- `skills/roadmap/` - 轻量背景介绍与路由入口
|
|
287
|
+
- `skills/roadmap-task-flow/` - 记录、补全、整理和重排任务列表
|
|
288
|
+
- `skills/roadmap-planning-views/` - 从任务子集构建聚焦的规划视图与图工作区
|
|
289
|
+
- `skills/roadmap-web-visualization/` - 打开并使用本地 roadmap Web 工作区
|
|
290
|
+
|
|
291
|
+
对于支持 Skill 安装的工具,推荐这样安装:
|
|
292
|
+
|
|
293
|
+
```bash
|
|
294
|
+
# 当安装器支持从仓库安装时,直接从 git 仓库安装
|
|
295
|
+
npx skills add shiquda/roadmap-skill
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
这些 Skills 目前仍是测试版本;如果你在使用中遇到问题,或者有任何建议,欢迎反馈。
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
280
302
|
## 适合谁使用
|
|
281
303
|
|
|
282
304
|
独立开发者、AI 重度用户、Vibe Coder — 想让 Agent 真正参与项目协作,而不只是写代码的人。
|
|
@@ -285,25 +307,23 @@ AI 会立即为你创建项目和任务,并自动写入本地存储。你可
|
|
|
285
307
|
|
|
286
308
|
### 1. 不打断流地记录想法
|
|
287
309
|
|
|
288
|
-
|
|
310
|
+
VibeCoding时,突然想到一个新idea/有新Bug:
|
|
289
311
|
|
|
290
312
|
> "记一下:把认证模块改成 JWT + refresh token 方案"
|
|
291
313
|
|
|
292
|
-
Agent
|
|
293
|
-
|
|
294
|
-
### 2. 让 AI 帮你搭建项目结构
|
|
314
|
+
直接使用 `/quick-capture` 命令,或者直接说“帮我记一下”,Agent 就会把这个想法变成一个项目的代办,保存在本地,然后继续工作。等有空了再回来看,任务已经在那里了,不用担心忘记,也不用打断当前的思路去切换工具。
|
|
295
315
|
|
|
296
|
-
|
|
316
|
+
### 2. 让 Agent 帮你划分任务优先级
|
|
297
317
|
|
|
298
|
-
> "
|
|
318
|
+
> "这个月的 OKR 是完成用户系统重构,能不能帮我把相关的任务都列出来,并且分析一下哪些任务应该有限做?"
|
|
299
319
|
|
|
300
|
-
Agent
|
|
320
|
+
直接使用 `/auto-prioritize` 命令,让 Agent 根据当前的项目状态,给已有的任务合理调整优先级。
|
|
301
321
|
|
|
302
|
-
### 3.
|
|
322
|
+
### 3. 让 Agent 自动给你推荐接下来做什么
|
|
303
323
|
|
|
304
324
|
> "当前项目还剩什么?有没有高优先级的任务还没动?"
|
|
305
325
|
|
|
306
|
-
|
|
326
|
+
或者直接使用 `/suggest-tasks` 命令,让 Agent 根据当前进度和优先级给你推荐下一步行动。
|
|
307
327
|
|
|
308
328
|
不用切换标签页,不用复制粘贴。直接问就行。
|
|
309
329
|
|
|
@@ -335,24 +355,17 @@ Roadmap Skill 采用**纯本地 JSON 文件存储**,所有数据保存在你
|
|
|
335
355
|
|
|
336
356
|
| 平台 | 存储路径 |
|
|
337
357
|
|------|---------|
|
|
338
|
-
|
|
|
339
|
-
|
|
|
340
|
-
|
|
|
358
|
+
| Windows | `%USERPROFILE%\.roadmap-skill` |
|
|
359
|
+
| macOS | `~/.roadmap-skill/` |
|
|
360
|
+
| Linux | `~/.roadmap-skill/` |
|
|
341
361
|
|
|
342
|
-
|
|
362
|
+
你可以在前端界面中选择导出/导入备份文件。
|
|
343
363
|
|
|
344
|
-
|
|
345
|
-
.roadmap-skill/
|
|
346
|
-
└── data/
|
|
347
|
-
├── projects.json # 项目列表
|
|
348
|
-
├── tasks.json # 所有任务
|
|
349
|
-
└── tags.json # 标签定义
|
|
350
|
-
```
|
|
364
|
+
---
|
|
351
365
|
|
|
352
|
-
|
|
353
|
-
-
|
|
354
|
-
|
|
355
|
-
- ✅ **隐私安全** — 数据永远不会离开你的电脑
|
|
366
|
+
## 参与贡献
|
|
367
|
+
欢迎任何形式的贡献!无论是 Bug 反馈、功能建议还是 Pull Request,都可以直接在 [GitHub](https://github.com/shiquda/roadmap-skill) 上提 Issue 或 PR。
|
|
368
|
+
如果你想添加新功能,建议先开 Issue 讨论一下方向。
|
|
356
369
|
|
|
357
370
|
---
|
|
358
371
|
|