roadmapsmith 0.9.3 → 0.9.4

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 CHANGED
@@ -124,6 +124,12 @@ Create `roadmap-skill.config.json`:
124
124
  "type": "file-exists",
125
125
  "when": "migration",
126
126
  "path": "db/migrations"
127
+ },
128
+ {
129
+ "type": "grant-evidence",
130
+ "whenId": "^p0-electron-builder-windows$",
131
+ "evidence": ["test"],
132
+ "testFiles": ["test/electron-builder.test.js"]
127
133
  }
128
134
  ],
129
135
  "customSections": [
@@ -151,6 +157,20 @@ Create `roadmap-skill.config.json`:
151
157
  }
152
158
  ```
153
159
 
160
+ Task markers can include `rs:no-test` to disable the test-evidence requirement for one task:
161
+
162
+ ```markdown
163
+ - [ ] Add Windows autostart script <!-- rs:task=p0-windows-autostart rs:no-test -->
164
+ ```
165
+
166
+ Validator rules are backward compatible:
167
+
168
+ - `when` matches task text.
169
+ - `whenId` matches the stable `rs:task` ID.
170
+ - `grant-evidence` can grant `code`, `test`, or `artifact` evidence without `overrideResult`.
171
+ - `overrideResult: true` is only needed when a rule should replace automatic failures.
172
+ - Tests that read a referenced file with `fs.readFileSync`, `fs.readFile`, `readFileSync`, or `readFile` can count as test evidence for tasks that explicitly mention that file.
173
+
154
174
  ## Plugin API
155
175
 
156
176
  Plugin module path(s) are loaded from `config.plugins` in deterministic order.
package/bin/cli.js CHANGED
@@ -1,254 +1,254 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
-
4
- const fs = require('fs');
5
- const path = require('path');
6
- const { parseArgv } = require('../src/utils');
7
- const { loadConfig, resolveRoadmapFile, resolveAgentsFile, loadPlugins } = require('../src/config');
8
- const { readTextIfExists, writeText, printDryRunDiff } = require('../src/io');
9
- const { renderRoadmapTemplate, renderAgentsTemplate } = require('../src/templates');
10
- const { generateRoadmapDocument } = require('../src/generator');
11
- const { parseRoadmap } = require('../src/parser');
12
- const { buildValidationContext, validateTasks, auditValidation, CONFIDENCE_RANK, applyMinimumConfidence } = require('../src/validator');
13
- const { applySync } = require('../src/sync');
14
-
15
- function printHelp() {
16
- console.log([
17
- 'Usage:',
18
- ' roadmapsmith init [--roadmap-file <path>] [--agents-file <path>] [--dry-run]',
19
- ' roadmapsmith generate [--project-root <path>] [--config <path>] [--roadmap-file <path>] [--dry-run] [--audit]',
20
- ' roadmapsmith sync [--roadmap-file <path>] [--project-root <path>] [--config <path>] [--dry-run] [--audit]',
21
- ' roadmapsmith validate [--roadmap-file <path>] [--project-root <path>] [--config <path>] [--task <id|text>] [--json]',
22
- ' roadmapsmith doctor [--roadmap-file <path>] [--project-root <path>] [--config <path>]'
23
- ].join('\n'));
24
- }
25
-
26
- function isEnabled(value) {
27
- if (value === true) return true;
28
- if (typeof value !== 'string') return false;
29
- const normalized = value.toLowerCase();
30
- return normalized === '1' || normalized === 'true' || normalized === 'yes';
31
- }
32
-
33
- function formatResultLine(task, result) {
34
- const status = result.passed ? 'PASS' : 'FAIL';
35
- const reason = result.reasons.length > 0 ? ` :: ${result.reasons.join('; ')}` : '';
36
- return `${status} [${task.id}] ${task.text}${reason}`;
37
- }
38
-
39
- function maybeFilterTasks(tasks, filterValue) {
40
- if (!filterValue) return tasks;
41
- const normalized = String(filterValue).toLowerCase();
42
- return tasks.filter((task) => {
43
- return task.id.toLowerCase() === normalized || task.text.toLowerCase().includes(normalized);
44
- });
45
- }
46
-
47
- function printAudit(audit) {
48
- console.log(`Audit summary: ${audit.checkedWithoutEvidence.length} checked-without-evidence, ${audit.readyButUnchecked.length} ready-but-unchecked.`);
49
- if (audit.checkedWithoutEvidence.length > 0) {
50
- console.log('Checked without evidence:');
51
- audit.checkedWithoutEvidence.forEach((item) => {
52
- console.log(`- [${item.task.id}] ${item.task.text}`);
53
- });
54
- }
55
- if (audit.readyButUnchecked.length > 0) {
56
- console.log('Ready but unchecked:');
57
- audit.readyButUnchecked.forEach((item) => {
58
- console.log(`- [${item.task.id}] ${item.task.text}`);
59
- });
60
- }
61
- }
62
-
63
- async function run() {
64
- const parsed = parseArgv(process.argv.slice(2));
65
- const command = parsed.command;
66
- const flags = parsed.flags;
67
-
68
- if (isEnabled(flags.version) || isEnabled(flags.v)) {
69
- const pkg = require(path.join(__dirname, '..', 'package.json'));
70
- process.stdout.write(pkg.version + '\n');
71
- process.exit(0);
72
- }
73
-
74
- if (!command || isEnabled(flags.help) || isEnabled(flags.h)) {
75
- printHelp();
76
- return;
77
- }
78
-
79
- if (command === 'init') {
80
- const projectRoot = process.cwd();
81
- const config = loadConfig({ projectRoot });
82
- const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
83
- const agentsFile = resolveAgentsFile(projectRoot, config, flags['agents-file']);
84
- const dryRun = isEnabled(flags['dry-run']);
85
-
86
- const roadmapExists = fs.existsSync(roadmapFile);
87
- const agentsExists = fs.existsSync(agentsFile);
88
-
89
- if (!roadmapExists) {
90
- const roadmap = renderRoadmapTemplate();
91
- const result = writeText(roadmapFile, roadmap, { dryRun });
92
- if (dryRun && result.changed) {
93
- printDryRunDiff(roadmapFile, result.before, result.after);
94
- }
95
- console.log(`${dryRun ? 'Would create' : 'Created'} ${roadmapFile}`);
96
- } else {
97
- console.log(`Skipped existing ${roadmapFile}`);
98
- }
99
-
100
- if (!agentsExists) {
101
- const agents = renderAgentsTemplate({ roadmapPath: path.basename(roadmapFile) });
102
- const result = writeText(agentsFile, agents, { dryRun });
103
- if (dryRun && result.changed) {
104
- printDryRunDiff(agentsFile, result.before, result.after);
105
- }
106
- console.log(`${dryRun ? 'Would create' : 'Created'} ${agentsFile}`);
107
- } else {
108
- console.log(`Skipped existing ${agentsFile}`);
109
- }
110
- return;
111
- }
112
-
113
- if (command === 'generate') {
114
- const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
115
- const config = loadConfig({ projectRoot, configPath: flags.config });
116
- const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
117
- const plugins = loadPlugins(projectRoot, config.plugins);
118
- const existingContent = readTextIfExists(roadmapFile) || '';
119
- const dryRun = isEnabled(flags['dry-run']);
120
-
121
- const document = generateRoadmapDocument({
122
- projectRoot,
123
- roadmapPath: roadmapFile,
124
- existingContent,
125
- config,
126
- plugins
127
- });
128
-
129
- const writeResult = writeText(roadmapFile, document, { dryRun });
130
- if (dryRun) {
131
- if (writeResult.changed) {
132
- printDryRunDiff(roadmapFile, writeResult.before, writeResult.after);
133
- } else {
134
- console.log(`No changes for ${roadmapFile}`);
135
- }
136
- } else {
137
- console.log(writeResult.changed ? `Updated ${roadmapFile}` : `No changes for ${roadmapFile}`);
138
- }
139
-
140
- if (isEnabled(flags.audit)) {
141
- const parsedRoadmap = parseRoadmap(document);
142
- const validationContext = buildValidationContext(projectRoot, config, plugins);
143
- const results = validateTasks(parsedRoadmap.tasks, validationContext, config, plugins);
144
- const audit = auditValidation(parsedRoadmap.tasks, results);
145
- printAudit(audit);
146
- }
147
- return;
148
- }
149
-
150
- if (command === 'sync') {
151
- const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
152
- const config = loadConfig({ projectRoot, configPath: flags.config });
153
- const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
154
- const content = readTextIfExists(roadmapFile);
155
- if (content == null) {
156
- throw new Error(`Roadmap not found: ${roadmapFile}`);
157
- }
158
-
159
- const parsedRoadmap = parseRoadmap(content);
160
- const validationContext = buildValidationContext(projectRoot, config, loadPlugins(projectRoot, config.plugins));
161
- const results = validateTasks(parsedRoadmap.tasks, validationContext, config, validationContext.plugins);
162
- applyMinimumConfidence(results, config.validation?.minimumConfidence);
163
- const next = applySync(content, parsedRoadmap.tasks, results);
164
- const dryRun = isEnabled(flags['dry-run']);
165
- const writeResult = writeText(roadmapFile, next, { dryRun });
166
-
167
- if (dryRun) {
168
- if (writeResult.changed) {
169
- printDryRunDiff(roadmapFile, writeResult.before, writeResult.after);
170
- } else {
171
- console.log(`No changes for ${roadmapFile}`);
172
- }
173
- } else {
174
- console.log(writeResult.changed ? `Updated ${roadmapFile}` : `No changes for ${roadmapFile}`);
175
- }
176
-
177
- if (isEnabled(flags.audit)) {
178
- const audit = auditValidation(parsedRoadmap.tasks, results);
179
- printAudit(audit);
180
- }
181
- return;
182
- }
183
-
184
- if (command === 'validate') {
185
- const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
186
- const config = loadConfig({ projectRoot, configPath: flags.config });
187
- const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
188
- const content = readTextIfExists(roadmapFile);
189
- if (content == null) {
190
- throw new Error(`Roadmap not found: ${roadmapFile}`);
191
- }
192
-
193
- const parsedRoadmap = parseRoadmap(content);
194
- const tasks = maybeFilterTasks(parsedRoadmap.tasks, flags.task);
195
- const validationContext = buildValidationContext(projectRoot, config, loadPlugins(projectRoot, config.plugins));
196
- const results = validateTasks(tasks, validationContext, config, validationContext.plugins);
197
-
198
- const minRank = CONFIDENCE_RANK[config.validation && config.validation.minimumConfidence] ?? 0;
199
- const visibleTasks = tasks.filter((task) => (CONFIDENCE_RANK[results[task.id].confidence] ?? 0) >= minRank);
200
-
201
- if (isEnabled(flags.json)) {
202
- const payload = visibleTasks.map((task) => ({ task, result: results[task.id] }));
203
- console.log(JSON.stringify(payload, null, 2));
204
- } else {
205
- visibleTasks.forEach((task) => {
206
- console.log(formatResultLine(task, results[task.id]));
207
- });
208
- }
209
-
210
- const failed = visibleTasks.some((task) => !results[task.id].passed);
211
- if (failed) {
212
- process.exitCode = 1;
213
- }
214
- return;
215
- }
216
-
217
- if (command === 'doctor') {
218
- const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
219
- let ok = true;
220
-
221
- let config;
222
- try {
223
- config = loadConfig({ projectRoot, configPath: flags.config });
224
- console.log('[ok] Config loaded without errors');
225
- } catch (error) {
226
- console.error(`[fail] Config error: ${error.message}`);
227
- ok = false;
228
- }
229
-
230
- if (config) {
231
- const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
232
- if (fs.existsSync(roadmapFile)) {
233
- console.log(`[ok] ROADMAP file found: ${roadmapFile}`);
234
- } else {
235
- console.error(`[fail] ROADMAP file not found: ${roadmapFile}`);
236
- ok = false;
237
- }
238
- }
239
-
240
- if (!ok) {
241
- process.exitCode = 1;
242
- return;
243
- }
244
- console.log('doctor: all checks passed');
245
- return;
246
- }
247
-
248
- throw new Error(`Unknown command: ${command}`);
249
- }
250
-
251
- run().catch((error) => {
252
- console.error(error.message);
253
- process.exitCode = 1;
254
- });
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ const fs = require('fs');
5
+ const path = require('path');
6
+ const { parseArgv } = require('../src/utils');
7
+ const { loadConfig, resolveRoadmapFile, resolveAgentsFile, loadPlugins } = require('../src/config');
8
+ const { readTextIfExists, writeText, printDryRunDiff } = require('../src/io');
9
+ const { renderRoadmapTemplate, renderAgentsTemplate } = require('../src/templates');
10
+ const { generateRoadmapDocument } = require('../src/generator');
11
+ const { parseRoadmap } = require('../src/parser');
12
+ const { buildValidationContext, validateTasks, auditValidation, CONFIDENCE_RANK, applyMinimumConfidence } = require('../src/validator');
13
+ const { applySync } = require('../src/sync');
14
+
15
+ function printHelp() {
16
+ console.log([
17
+ 'Usage:',
18
+ ' roadmapsmith init [--roadmap-file <path>] [--agents-file <path>] [--dry-run]',
19
+ ' roadmapsmith generate [--project-root <path>] [--config <path>] [--roadmap-file <path>] [--dry-run] [--audit]',
20
+ ' roadmapsmith sync [--roadmap-file <path>] [--project-root <path>] [--config <path>] [--dry-run] [--audit]',
21
+ ' roadmapsmith validate [--roadmap-file <path>] [--project-root <path>] [--config <path>] [--task <id|text>] [--json]',
22
+ ' roadmapsmith doctor [--roadmap-file <path>] [--project-root <path>] [--config <path>]'
23
+ ].join('\n'));
24
+ }
25
+
26
+ function isEnabled(value) {
27
+ if (value === true) return true;
28
+ if (typeof value !== 'string') return false;
29
+ const normalized = value.toLowerCase();
30
+ return normalized === '1' || normalized === 'true' || normalized === 'yes';
31
+ }
32
+
33
+ function formatResultLine(task, result) {
34
+ const status = result.passed ? 'PASS' : 'FAIL';
35
+ const reason = result.reasons.length > 0 ? ` :: ${result.reasons.join('; ')}` : '';
36
+ return `${status} [${task.id}] ${task.text}${reason}`;
37
+ }
38
+
39
+ function maybeFilterTasks(tasks, filterValue) {
40
+ if (!filterValue) return tasks;
41
+ const normalized = String(filterValue).toLowerCase();
42
+ return tasks.filter((task) => {
43
+ return task.id.toLowerCase() === normalized || task.text.toLowerCase().includes(normalized);
44
+ });
45
+ }
46
+
47
+ function printAudit(audit) {
48
+ console.log(`Audit summary: ${audit.checkedWithoutEvidence.length} checked-without-evidence, ${audit.readyButUnchecked.length} ready-but-unchecked.`);
49
+ if (audit.checkedWithoutEvidence.length > 0) {
50
+ console.log('Checked without evidence:');
51
+ audit.checkedWithoutEvidence.forEach((item) => {
52
+ console.log(`- [${item.task.id}] ${item.task.text}`);
53
+ });
54
+ }
55
+ if (audit.readyButUnchecked.length > 0) {
56
+ console.log('Ready but unchecked:');
57
+ audit.readyButUnchecked.forEach((item) => {
58
+ console.log(`- [${item.task.id}] ${item.task.text}`);
59
+ });
60
+ }
61
+ }
62
+
63
+ async function run() {
64
+ const parsed = parseArgv(process.argv.slice(2));
65
+ const command = parsed.command;
66
+ const flags = parsed.flags;
67
+
68
+ if (isEnabled(flags.version) || isEnabled(flags.v)) {
69
+ const pkg = require(path.join(__dirname, '..', 'package.json'));
70
+ process.stdout.write(pkg.version + '\n');
71
+ process.exit(0);
72
+ }
73
+
74
+ if (!command || isEnabled(flags.help) || isEnabled(flags.h)) {
75
+ printHelp();
76
+ return;
77
+ }
78
+
79
+ if (command === 'init') {
80
+ const projectRoot = process.cwd();
81
+ const config = loadConfig({ projectRoot });
82
+ const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
83
+ const agentsFile = resolveAgentsFile(projectRoot, config, flags['agents-file']);
84
+ const dryRun = isEnabled(flags['dry-run']);
85
+
86
+ const roadmapExists = fs.existsSync(roadmapFile);
87
+ const agentsExists = fs.existsSync(agentsFile);
88
+
89
+ if (!roadmapExists) {
90
+ const roadmap = renderRoadmapTemplate();
91
+ const result = writeText(roadmapFile, roadmap, { dryRun });
92
+ if (dryRun && result.changed) {
93
+ printDryRunDiff(roadmapFile, result.before, result.after);
94
+ }
95
+ console.log(`${dryRun ? 'Would create' : 'Created'} ${roadmapFile}`);
96
+ } else {
97
+ console.log(`Skipped existing ${roadmapFile}`);
98
+ }
99
+
100
+ if (!agentsExists) {
101
+ const agents = renderAgentsTemplate({ roadmapPath: path.basename(roadmapFile) });
102
+ const result = writeText(agentsFile, agents, { dryRun });
103
+ if (dryRun && result.changed) {
104
+ printDryRunDiff(agentsFile, result.before, result.after);
105
+ }
106
+ console.log(`${dryRun ? 'Would create' : 'Created'} ${agentsFile}`);
107
+ } else {
108
+ console.log(`Skipped existing ${agentsFile}`);
109
+ }
110
+ return;
111
+ }
112
+
113
+ if (command === 'generate') {
114
+ const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
115
+ const config = loadConfig({ projectRoot, configPath: flags.config });
116
+ const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
117
+ const plugins = loadPlugins(projectRoot, config.plugins);
118
+ const existingContent = readTextIfExists(roadmapFile) || '';
119
+ const dryRun = isEnabled(flags['dry-run']);
120
+
121
+ const document = generateRoadmapDocument({
122
+ projectRoot,
123
+ roadmapPath: roadmapFile,
124
+ existingContent,
125
+ config,
126
+ plugins
127
+ });
128
+
129
+ const writeResult = writeText(roadmapFile, document, { dryRun });
130
+ if (dryRun) {
131
+ if (writeResult.changed) {
132
+ printDryRunDiff(roadmapFile, writeResult.before, writeResult.after);
133
+ } else {
134
+ console.log(`No changes for ${roadmapFile}`);
135
+ }
136
+ } else {
137
+ console.log(writeResult.changed ? `Updated ${roadmapFile}` : `No changes for ${roadmapFile}`);
138
+ }
139
+
140
+ if (isEnabled(flags.audit)) {
141
+ const parsedRoadmap = parseRoadmap(document);
142
+ const validationContext = buildValidationContext(projectRoot, config, plugins);
143
+ const results = validateTasks(parsedRoadmap.tasks, validationContext, config, plugins);
144
+ const audit = auditValidation(parsedRoadmap.tasks, results);
145
+ printAudit(audit);
146
+ }
147
+ return;
148
+ }
149
+
150
+ if (command === 'sync') {
151
+ const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
152
+ const config = loadConfig({ projectRoot, configPath: flags.config });
153
+ const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
154
+ const content = readTextIfExists(roadmapFile);
155
+ if (content == null) {
156
+ throw new Error(`Roadmap not found: ${roadmapFile}`);
157
+ }
158
+
159
+ const parsedRoadmap = parseRoadmap(content);
160
+ const validationContext = buildValidationContext(projectRoot, config, loadPlugins(projectRoot, config.plugins));
161
+ const results = validateTasks(parsedRoadmap.tasks, validationContext, config, validationContext.plugins);
162
+ applyMinimumConfidence(results, config.validation?.minimumConfidence);
163
+ const next = applySync(content, parsedRoadmap.tasks, results);
164
+ const dryRun = isEnabled(flags['dry-run']);
165
+ const writeResult = writeText(roadmapFile, next, { dryRun });
166
+
167
+ if (dryRun) {
168
+ if (writeResult.changed) {
169
+ printDryRunDiff(roadmapFile, writeResult.before, writeResult.after);
170
+ } else {
171
+ console.log(`No changes for ${roadmapFile}`);
172
+ }
173
+ } else {
174
+ console.log(writeResult.changed ? `Updated ${roadmapFile}` : `No changes for ${roadmapFile}`);
175
+ }
176
+
177
+ if (isEnabled(flags.audit)) {
178
+ const audit = auditValidation(parsedRoadmap.tasks, results);
179
+ printAudit(audit);
180
+ }
181
+ return;
182
+ }
183
+
184
+ if (command === 'validate') {
185
+ const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
186
+ const config = loadConfig({ projectRoot, configPath: flags.config });
187
+ const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
188
+ const content = readTextIfExists(roadmapFile);
189
+ if (content == null) {
190
+ throw new Error(`Roadmap not found: ${roadmapFile}`);
191
+ }
192
+
193
+ const parsedRoadmap = parseRoadmap(content);
194
+ const tasks = maybeFilterTasks(parsedRoadmap.tasks, flags.task);
195
+ const validationContext = buildValidationContext(projectRoot, config, loadPlugins(projectRoot, config.plugins));
196
+ const results = validateTasks(tasks, validationContext, config, validationContext.plugins);
197
+
198
+ const minRank = CONFIDENCE_RANK[config.validation && config.validation.minimumConfidence] ?? 0;
199
+ const visibleTasks = tasks.filter((task) => (CONFIDENCE_RANK[results[task.id].confidence] ?? 0) >= minRank);
200
+
201
+ if (isEnabled(flags.json)) {
202
+ const payload = visibleTasks.map((task) => ({ task, result: results[task.id] }));
203
+ console.log(JSON.stringify(payload, null, 2));
204
+ } else {
205
+ visibleTasks.forEach((task) => {
206
+ console.log(formatResultLine(task, results[task.id]));
207
+ });
208
+ }
209
+
210
+ const failed = visibleTasks.some((task) => !results[task.id].passed);
211
+ if (failed) {
212
+ process.exitCode = 1;
213
+ }
214
+ return;
215
+ }
216
+
217
+ if (command === 'doctor') {
218
+ const projectRoot = path.resolve(String(flags['project-root'] || process.cwd()));
219
+ let ok = true;
220
+
221
+ let config;
222
+ try {
223
+ config = loadConfig({ projectRoot, configPath: flags.config });
224
+ console.log('[ok] Config loaded without errors');
225
+ } catch (error) {
226
+ console.error(`[fail] Config error: ${error.message}`);
227
+ ok = false;
228
+ }
229
+
230
+ if (config) {
231
+ const roadmapFile = resolveRoadmapFile(projectRoot, config, flags['roadmap-file']);
232
+ if (fs.existsSync(roadmapFile)) {
233
+ console.log(`[ok] ROADMAP file found: ${roadmapFile}`);
234
+ } else {
235
+ console.error(`[fail] ROADMAP file not found: ${roadmapFile}`);
236
+ ok = false;
237
+ }
238
+ }
239
+
240
+ if (!ok) {
241
+ process.exitCode = 1;
242
+ return;
243
+ }
244
+ console.log('doctor: all checks passed');
245
+ return;
246
+ }
247
+
248
+ throw new Error(`Unknown command: ${command}`);
249
+ }
250
+
251
+ run().catch((error) => {
252
+ console.error(error.message);
253
+ process.exitCode = 1;
254
+ });
package/package.json CHANGED
@@ -1,56 +1,56 @@
1
- {
2
- "name": "roadmapsmith",
3
- "version": "0.9.3",
4
- "description": "Evidence-backed ROADMAP.md generator and sync tool for AI coding agents.",
5
- "main": "src/index.js",
6
- "bin": {
7
- "roadmapsmith": "bin/cli.js"
8
- },
9
- "type": "commonjs",
10
- "scripts": {
11
- "test": "node --test test/*.test.js"
12
- },
13
- "keywords": [
14
- "roadmap",
15
- "planning",
16
- "agent",
17
- "cli",
18
- "validation",
19
- "sync",
20
- "task-tracking",
21
- "evidence-based",
22
- "deterministic",
23
- "monorepo",
24
- "claude-code",
25
- "ai-agent",
26
- "project-management",
27
- "coding-agents",
28
- "agent-skills",
29
- "roadmap-generator",
30
- "roadmap-sync",
31
- "task-validation",
32
- "developer-tools",
33
- "markdown",
34
- "agent-workflow"
35
- ],
36
- "author": "PapiScholz",
37
- "license": "MIT",
38
- "repository": {
39
- "type": "git",
40
- "url": "git+https://github.com/PapiScholz/roadmapsmith.git",
41
- "directory": "roadmap-skill"
42
- },
43
- "bugs": {
44
- "url": "https://github.com/PapiScholz/roadmapsmith/issues"
45
- },
46
- "homepage": "https://github.com/PapiScholz/roadmapsmith#readme",
47
- "engines": {
48
- "node": ">=18"
49
- },
50
- "files": [
51
- "bin",
52
- "src",
53
- "templates",
54
- "README.md"
55
- ]
56
- }
1
+ {
2
+ "name": "roadmapsmith",
3
+ "version": "0.9.4",
4
+ "description": "Evidence-backed ROADMAP.md generator and sync tool for AI coding agents.",
5
+ "main": "src/index.js",
6
+ "bin": {
7
+ "roadmapsmith": "bin/cli.js"
8
+ },
9
+ "type": "commonjs",
10
+ "scripts": {
11
+ "test": "node --test test/*.test.js"
12
+ },
13
+ "keywords": [
14
+ "roadmap",
15
+ "planning",
16
+ "agent",
17
+ "cli",
18
+ "validation",
19
+ "sync",
20
+ "task-tracking",
21
+ "evidence-based",
22
+ "deterministic",
23
+ "monorepo",
24
+ "claude-code",
25
+ "ai-agent",
26
+ "project-management",
27
+ "coding-agents",
28
+ "agent-skills",
29
+ "roadmap-generator",
30
+ "roadmap-sync",
31
+ "task-validation",
32
+ "developer-tools",
33
+ "markdown",
34
+ "agent-workflow"
35
+ ],
36
+ "author": "PapiScholz",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/PapiScholz/roadmapsmith.git",
41
+ "directory": "roadmap-skill"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/PapiScholz/roadmapsmith/issues"
45
+ },
46
+ "homepage": "https://github.com/PapiScholz/roadmapsmith#readme",
47
+ "engines": {
48
+ "node": ">=18"
49
+ },
50
+ "files": [
51
+ "bin",
52
+ "src",
53
+ "templates",
54
+ "README.md"
55
+ ]
56
+ }