roadmapsmith 0.9.32 → 0.9.33

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roadmapsmith",
3
- "version": "0.9.32",
3
+ "version": "0.9.33",
4
4
  "description": "Evidence-backed ROADMAP.md workflows for AI coding agents, with canonical RoadmapSmith status and maintain surfaces plus advanced sync/generate tools and legacy compatibility aliases.",
5
5
  "author": {
6
6
  "name": "PapiScholz"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roadmapsmith",
3
- "version": "0.9.32",
3
+ "version": "0.9.33",
4
4
  "description": "Evidence-backed ROADMAP.md workflows for AI coding agents, with canonical RoadmapSmith status and maintain surfaces plus advanced sync/generate tools and legacy compatibility aliases.",
5
5
  "author": {
6
6
  "name": "PapiScholz"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roadmapsmith",
3
- "version": "0.9.32",
3
+ "version": "0.9.33",
4
4
  "description": "Evidence-backed ROADMAP.md workflows for AI coding agents, with canonical RoadmapSmith status and maintain surfaces plus advanced sync/generate tools and legacy compatibility aliases.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -10,21 +10,14 @@ Use this command as the native discovery entrypoint for the shared RoadmapSmith
10
10
  ## Required behavior
11
11
 
12
12
  1. Treat `/roadmap` as a no-side-effects palette. Do not run mutating commands from this skill.
13
- 2. When working inside the RoadmapSmith repository itself and `roadmap-skill/bin/cli.js` exists, prefer the local engine:
14
- - `node roadmap-skill/bin/cli.js /roadmap`
15
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js /roadmap` if `node` is not in PATH
16
- 3. Otherwise, if the `roadmapsmith` CLI is available, you may run `roadmapsmith /roadmap` from the project root and use that output directly. If its global shim cannot resolve `node`, use `& "C:\Program Files\nodejs\node.exe" "$env:APPDATA\npm\node_modules\roadmapsmith\bin\cli.js" /roadmap`.
17
- 4. If the CLI is missing, provide the palette manually and explain the install path:
18
- - `npm install -g roadmapsmith`
19
- - `npx skills add PapiScholz/roadmapsmith --skill '*' -a claude-code`
20
- - run `/reload-skills`
21
- - if RoadmapSmith was installed as a Claude plugin, also run `/reload-plugins`
22
- 5. Explain the preferred native host entrypoints:
13
+ 2. If the `roadmapsmith` CLI is available, run `roadmapsmith /roadmap` from the project root and use that output directly.
14
+ 3. If the CLI is missing, direct the user to the official repository README for installation instructions.
15
+ 4. Explain the preferred native host entrypoints:
23
16
  - `/roadmap-zero`
24
17
  - `/roadmap-maintain`
25
18
  - `/roadmap-status`
26
19
  - `/roadmap-init`, `/roadmap-generate`, `/roadmap-validate`, `/roadmap-update`, `/roadmap-audit`, and `/roadmap-setup`
27
- 6. Mention that `/roadmap-sync <action>` remains a deprecated legacy CLI compatibility root, and `/road` plus `/road <action>` remain deprecated CLI compatibility aliases.
20
+ 5. Mention that `/roadmap-sync <action>` remains a deprecated legacy CLI compatibility root, and `/road` plus `/road <action>` remain deprecated CLI compatibility aliases.
28
21
 
29
22
  ## Output contract
30
23
 
@@ -9,8 +9,5 @@ Use this command when the user wants the post-sync mismatch summary after applyi
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js sync --audit --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js sync --audit --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith sync --audit --project-root .`.
16
- 3. Explain that this is the current sync-plus-audit flow, not a standalone read-only audit engine.
12
+ 1. Run `roadmapsmith sync --audit --project-root .`.
13
+ 2. Explain that this is the current sync-plus-audit flow, not a standalone read-only audit engine.
@@ -9,10 +9,7 @@ Use this command when the user wants the managed roadmap block updated from repo
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js generate --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js generate --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith generate --project-root .`.
16
- 3. Explain that `generate` is preserve-first when a substantive managed block already exists.
17
- 4. When the user explicitly wants the destructive path, use `roadmapsmith generate --project-root . --full-regen`.
18
- 5. Summarize what stayed preserved, whether generation refused, and what new additions, if any, were inserted.
12
+ 1. Run `roadmapsmith generate --project-root .`.
13
+ 2. Explain that `generate` is preserve-first when a substantive managed block already exists.
14
+ 3. To allow full roadmap regeneration, add `--full-regen`: `roadmapsmith generate --project-root . --full-regen`.
15
+ 4. Summarize what stayed preserved, whether generation refused, and what new additions, if any, were inserted.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: roadmap-init
3
- description: Create ROADMAP.md and AGENTS.md through the RoadmapSmith CLI.
3
+ description: Initialize project governance files through the RoadmapSmith CLI.
4
4
  ---
5
5
 
6
6
  # RoadmapSmith Init
@@ -9,8 +9,5 @@ Use this command when the governance files are missing and the user wants them c
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js init --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js init --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith init`.
16
- 3. Treat this command as CLI-backed and summarize whether files were created or skipped.
12
+ 1. Run `roadmapsmith init`.
13
+ 2. Summarize whether files were created or skipped.
@@ -9,12 +9,7 @@ Use this command when the repository already has code, tests, docs, or an existi
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js maintain --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js maintain --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith maintain --project-root .`. If that global shim fails because `node` is not in PATH, run `& "C:\Program Files\nodejs\node.exe" "$env:APPDATA\npm\node_modules\roadmapsmith\bin\cli.js" maintain --project-root .`.
16
- 3. Treat this command as CLI-backed. Do not silently replace it with manual reasoning when the CLI is unavailable.
17
- 4. Mention that maintain runs preserve-first generate, sync, and audit in one invocation.
18
- 5. After a successful maintain cycle, do not propose generate, sync, or audit separately unless the user needs manual control or inspection.
19
- 6. Mention that `roadmapsmith maintain --full-regen` or `roadmapsmith generate --full-regen` is the explicit destructive rebuild path when the user truly wants a full managed-block replacement.
20
- 7. When the user wants stale or outdated warning annotations to be recomputed from scratch (including annotations that were written by a prior maintain run or an external agent), use `roadmapsmith maintain --refresh-annotations`. This forces all existing warning text to be replaced with the current deterministic result rather than preserved. It is distinct from `--full-regen` (which rebuilds the managed block structure) — `--refresh-annotations` only affects warning annotations on still-failing tasks.
12
+ 1. Run `roadmapsmith maintain --project-root .`.
13
+ 2. Treat this command as CLI-backed. Do not silently replace it with manual reasoning when the CLI is unavailable.
14
+ 3. Mention that maintain runs preserve-first generate, sync, and audit in one invocation.
15
+ 4. After a successful maintain cycle, do not propose generate, sync, or audit separately unless the user needs manual control or inspection.
@@ -9,9 +9,6 @@ Use this command when the user wants RoadmapSmith host integration files generat
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js setup --project-root . --hosts codex,claude`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js setup --project-root . --hosts codex,claude` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith setup --project-root . --hosts codex,claude`.
16
- 3. Explain that setup affects the repository host layer: VS Code tasks, launcher/wrappers, and the optional repo-local Claude hook.
17
- 4. Do not claim that setup alone creates native host slash commands; those come from the installed bundle/plugin.
12
+ 1. Run `roadmapsmith setup --project-root . --hosts codex,claude`.
13
+ 2. Explain that setup generates VS Code task definitions for the current repository.
14
+ 3. Do not claim that setup alone creates native host slash commands; those come from the installed bundle/plugin.
@@ -9,10 +9,7 @@ Use this command to inspect whether the shared bundle, native host surfaces, CLI
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js status --json --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js status --json --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith status --json --project-root .`. If its global shim cannot resolve `node`, use `& "C:\Program Files\nodejs\node.exe" "$env:APPDATA\npm\node_modules\roadmapsmith\bin\cli.js" status --json --project-root .`.
16
- 3. Treat `roadmapsmith doctor --json` as compatibility-only output for existing automation, not as the primary recommendation.
12
+ 1. Run `roadmapsmith status --json --project-root .`.
13
+ 2. Treat `roadmapsmith doctor --json` as compatibility-only output for existing automation, not as the primary recommendation.
17
14
  4. Parse and summarize the JSON output in plain language.
18
15
  5. Explicitly call out missing canonical commands, duplicate legacy `/roadmap-sync` registration, and any missing advanced VS Code labels as warnings rather than canonical-readiness failures.
@@ -16,5 +16,5 @@ Use this skill only when the host exposes or the user explicitly invokes `/roadm
16
16
  - `/roadmap-maintain`
17
17
  - `/roadmap-status`
18
18
  - `/roadmap-init`, `/roadmap-generate`, `/roadmap-validate`, `/roadmap-update`, `/roadmap-audit`, and `/roadmap-setup`
19
- 3. When the user explicitly invokes `/roadmap-sync <action>`, route to the matching CLI-backed action without changing semantics and mention the migration path to `/roadmap <action>` or the direct `/roadmap-*` command.
20
- 4. Preserve the operating rules for evidence-backed roadmap maintenance and checklist synchronization: heuristic file/token matches may diagnose candidates, but only explicit `Evidence:` or typed `Verify:` checks may complete an unchecked implementation task. Never claim a behavioral task is complete without fresh test evidence or human verification.
19
+ 3. When the user explicitly invokes `/roadmap-sync <action>`, route to the matching CLI-backed action without changing semantics and mention the migration path to the direct `/roadmap-*` command.
20
+ 4. When routing `/roadmap-sync validate`, the tool uses the same validation rules as `/roadmap-validate`. Implementation tasks require an explicit `Evidence:` line or a `Verify:` check to be marked complete.
@@ -9,10 +9,7 @@ Use this command when the user wants the canonical public `update` surface witho
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js update --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js update --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith update --project-root .`. If its global shim fails because `node` is not in PATH, run `& "C:\Program Files\nodejs\node.exe" "$env:APPDATA\npm\node_modules\roadmapsmith\bin\cli.js" update --project-root .`.
16
- 3. Explain that `/roadmap-update` is the visible namespaced command for the public `update` family, while `/roadmap-sync <action>` remains deprecated compatibility only.
17
- 4. Keep the evidence-backed refresh semantics unchanged: no-argument `update` syncs the roadmap from repository evidence, and `sync` remains the advanced CLI alias for that same mutating refresh path. It is not a full regeneration path and not an independent audit engine.
18
- 5. To complete one task, run `roadmapsmith update --task <stable-id> --evidence "<single-line evidence>"`. It writes only after the supplied evidence validates at high confidence; use `--dry-run` to preview it.
12
+ 1. Run `roadmapsmith update --project-root .`.
13
+ 2. Explain that `/roadmap-update` is the visible namespaced command for the public `update` family, while `/roadmap-sync <action>` remains deprecated compatibility only.
14
+ 3. The no-argument `update` syncs the roadmap from repository evidence. The `sync` alias covers the same refresh path. It is not a full regeneration path and not an independent audit engine.
15
+ 4. To mark a specific task complete, run `roadmapsmith update --task TASK-ID --evidence "description"`. The CLI validates before writing; use `--dry-run` to preview.
@@ -9,8 +9,5 @@ Use this command when the user wants per-task evidence status without mutating t
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js validate --json --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js validate --json --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith validate --json --project-root .`.
16
- 3. Treat this command as CLI-backed and non-mutating.
12
+ 1. Run `roadmapsmith validate --json --project-root .`.
13
+ 2. This command is non-mutating.
@@ -9,9 +9,5 @@ Use this command when the repository is empty or low-context and the user needs
9
9
 
10
10
  ## Required behavior
11
11
 
12
- 1. Prefer the local engine inside this repository:
13
- - `node roadmap-skill/bin/cli.js zero --project-root .`
14
- - on this Windows machine, prefer `C:\Program Files\nodejs\node.exe roadmap-skill/bin/cli.js zero --project-root .` if `node` is not in PATH
15
- 2. Otherwise prefer `roadmapsmith zero --project-root .`.
16
- 3. Treat this command as CLI-backed and interactive.
17
- 4. If the CLI is missing, explain the install path instead of improvising the workflow manually.
12
+ 1. Run `roadmapsmith zero --project-root .`.
13
+ 2. If the CLI is missing, explain the install path instead of improvising the workflow manually.
package/skills.json CHANGED
@@ -28,67 +28,67 @@
28
28
  "name": "roadmap",
29
29
  "path": "skills/roadmap",
30
30
  "description": "Native slash palette for RoadmapSmith commands and recommended entrypoints across supported hosts.",
31
- "version": "0.9.32"
31
+ "version": "0.9.33"
32
32
  },
33
33
  {
34
34
  "name": "roadmap-zero",
35
35
  "path": "skills/roadmap-zero",
36
36
  "description": "Native slash entrypoint for the one-command Zero Mode CLI workflow.",
37
- "version": "0.9.32"
37
+ "version": "0.9.33"
38
38
  },
39
39
  {
40
40
  "name": "roadmap-maintain",
41
41
  "path": "skills/roadmap-maintain",
42
42
  "description": "Native slash entrypoint for the preserve-first generate + sync + audit flow.",
43
- "version": "0.9.32"
43
+ "version": "0.9.33"
44
44
  },
45
45
  {
46
46
  "name": "roadmap-status",
47
47
  "path": "skills/roadmap-status",
48
48
  "description": "Native slash readiness check grounded in roadmapsmith status JSON.",
49
- "version": "0.9.32"
49
+ "version": "0.9.33"
50
50
  },
51
51
  {
52
52
  "name": "roadmap-init",
53
53
  "path": "skills/roadmap-init",
54
54
  "description": "Native slash entrypoint for creating ROADMAP.md and AGENTS.md.",
55
- "version": "0.9.32"
55
+ "version": "0.9.33"
56
56
  },
57
57
  {
58
58
  "name": "roadmap-generate",
59
59
  "path": "skills/roadmap-generate",
60
60
  "description": "Native slash entrypoint for managed roadmap updates that require --full-regen before destructive replacement.",
61
- "version": "0.9.32"
61
+ "version": "0.9.33"
62
62
  },
63
63
  {
64
64
  "name": "roadmap-validate",
65
65
  "path": "skills/roadmap-validate",
66
66
  "description": "Native slash entrypoint for evidence-backed roadmap validation.",
67
- "version": "0.9.32"
67
+ "version": "0.9.33"
68
68
  },
69
69
  {
70
70
  "name": "roadmap-update",
71
71
  "path": "skills/roadmap-update",
72
72
  "description": "Native slash entrypoint for evidence-backed sync and verified single-task completion.",
73
- "version": "0.9.32"
73
+ "version": "0.9.33"
74
74
  },
75
75
  {
76
76
  "name": "roadmap-sync",
77
77
  "path": "skills/roadmap-sync",
78
78
  "description": "DEPRECATED legacy compatibility root; use roadmap-maintain or roadmap-update.",
79
- "version": "0.9.32"
79
+ "version": "0.9.33"
80
80
  },
81
81
  {
82
82
  "name": "roadmap-audit",
83
83
  "path": "skills/roadmap-audit",
84
84
  "description": "Native slash entrypoint for the advanced sync-plus-audit mutating summary workflow.",
85
- "version": "0.9.32"
85
+ "version": "0.9.33"
86
86
  },
87
87
  {
88
88
  "name": "roadmap-setup",
89
89
  "path": "skills/roadmap-setup",
90
90
  "description": "Native slash entrypoint for generating RoadmapSmith host integration files.",
91
- "version": "0.9.32"
91
+ "version": "0.9.33"
92
92
  }
93
93
  ]
94
94
  }