roadmapsmith 0.9.15 → 0.9.16
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 +24 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,10 +24,12 @@ The generated VS Code task layer now resolves Node automatically where possible;
|
|
|
24
24
|
### Agent Skill
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npx skills add PapiScholz/roadmapsmith --skill
|
|
27
|
+
npx skills add PapiScholz/roadmapsmith --skill '*' -a claude-code
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
This
|
|
30
|
+
This is the recommended Claude Code install path for native GUI slash commands such as `/road`, `/zero`, `/maintain`, `/status`, `/init`, `/generate`, `/validate`, `/sync`, `/audit`, `/setup`, and the legacy `/roadmap-sync`.
|
|
31
|
+
If you install only `--skill roadmap-sync`, Claude GUI will expose only `/roadmap-sync`.
|
|
32
|
+
The skill bundle does not install the CLI and it does not create visible VS Code actions by itself.
|
|
31
33
|
|
|
32
34
|
## Updating
|
|
33
35
|
|
|
@@ -44,12 +46,13 @@ npm install roadmapsmith@latest
|
|
|
44
46
|
npx roadmapsmith@latest validate --json
|
|
45
47
|
```
|
|
46
48
|
|
|
47
|
-
The
|
|
49
|
+
The Claude skill bundle is separate from the CLI. Re-running the skills install updates the Claude-facing instructions, but it does not update the `roadmapsmith` npm binary or the generated VS Code host files:
|
|
48
50
|
|
|
49
51
|
```bash
|
|
50
|
-
npx skills add PapiScholz/roadmapsmith --skill
|
|
52
|
+
npx skills add PapiScholz/roadmapsmith --skill '*' -a claude-code
|
|
51
53
|
```
|
|
52
54
|
|
|
55
|
+
After updating the Claude skill bundle, run `/reload-skills` and, if applicable, `/reload-plugins`.
|
|
53
56
|
After updating the CLI, rerun `roadmapsmith setup` in repositories where you want the latest VS Code tasks, task wrappers, launcher behavior, or Claude hook template.
|
|
54
57
|
|
|
55
58
|
Fixes are available through `@latest` only after a new npm package version has been published. Before publication, install from a local checkout or a packed tarball for testing.
|
|
@@ -92,7 +95,7 @@ Use the lower-level commands only when you want manual control over generation,
|
|
|
92
95
|
|
|
93
96
|
| Host | Current support |
|
|
94
97
|
|---|---|
|
|
95
|
-
| Claude Code | Supported through `roadmapsmith setup
|
|
98
|
+
| Claude Code | Supported through the full RoadmapSmith skill bundle for native GUI slash commands, plus `roadmapsmith setup` for visible VS Code tasks and the optional repo-local Claude hook. |
|
|
96
99
|
| Codex / Codex CLI | Supported through a visible VS Code task workflow and slash-capable launcher UX after `roadmapsmith setup`. Codex chat itself remains unchanged unless the host exposes native slash registration. |
|
|
97
100
|
| CI | Use disposable checkouts if you run `sync --audit`, because it still mutates the roadmap today. |
|
|
98
101
|
| Other hosts | Use the skill plus manual CLI commands. |
|
|
@@ -118,6 +121,22 @@ roadmapsmith validate [--roadmap-file <path>] [--project-root <path>] [--config
|
|
|
118
121
|
roadmapsmith doctor [--roadmap-file <path>] [--project-root <path>] [--config <path>] [--json]
|
|
119
122
|
```
|
|
120
123
|
|
|
124
|
+
## Claude Code native slash commands
|
|
125
|
+
|
|
126
|
+
Install the full skill bundle for Claude Code:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
npx skills add PapiScholz/roadmapsmith --skill '*' -a claude-code
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Then reload the session:
|
|
133
|
+
|
|
134
|
+
1. Run `/reload-skills`
|
|
135
|
+
2. If RoadmapSmith was installed through a Claude plugin, also run `/reload-plugins`
|
|
136
|
+
3. Confirm the slash menu shows `/road`, `/zero`, `/maintain`, `/status`, `/init`, `/generate`, `/validate`, `/sync`, `/audit`, `/setup`, and `/roadmap-sync`
|
|
137
|
+
|
|
138
|
+
Native Claude GUI slash commands come from the installed skill bundle. CLI slash routing such as `roadmapsmith /road` is a separate surface and does not populate the Claude GUI menu by itself.
|
|
139
|
+
|
|
121
140
|
## Behavior
|
|
122
141
|
|
|
123
142
|
- Generates deterministic `ROADMAP.md` with fixed section order.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "roadmapsmith",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.9.16",
|
|
4
|
+
"description": "One-command evidence-backed ROADMAP.md generator and sync tool for AI coding agents.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"roadmapsmith": "bin/cli.js"
|