sysprom 1.20.0 → 1.21.1
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/dist/schema.json +4 -44
- package/dist/src/cli/commands/add.js +6 -2
- package/dist/src/cli/commands/query.js +5 -3
- package/dist/src/cli/commands/speckit.js +2 -2
- package/dist/src/cli/commands/update.js +6 -4
- package/dist/src/endpoint-types.d.ts +4 -0
- package/dist/src/endpoint-types.js +22 -121
- package/dist/src/json-to-md.js +2 -16
- package/dist/src/lifecycle-state.d.ts +9 -0
- package/dist/src/lifecycle-state.js +22 -0
- package/dist/src/mcp/server.js +3 -6
- package/dist/src/md-to-json.js +1 -19
- package/dist/src/operations/add-node.d.ts +21 -135
- package/dist/src/operations/add-plan-task.d.ts +14 -90
- package/dist/src/operations/add-relationship.d.ts +16 -105
- package/dist/src/operations/check.d.ts +7 -45
- package/dist/src/operations/graph-decision.d.ts +7 -45
- package/dist/src/operations/graph-decision.js +0 -1
- package/dist/src/operations/graph-dependency.d.ts +7 -45
- package/dist/src/operations/graph-dependency.js +3 -23
- package/dist/src/operations/graph-refinement.d.ts +7 -45
- package/dist/src/operations/graph-shared.js +1 -3
- package/dist/src/operations/graph.d.ts +7 -45
- package/dist/src/operations/infer-completeness.d.ts +10 -54
- package/dist/src/operations/infer-derived.d.ts +7 -45
- package/dist/src/operations/infer-derived.js +28 -4
- package/dist/src/operations/infer-impact.d.ts +49 -315
- package/dist/src/operations/infer-impact.js +22 -3
- package/dist/src/operations/infer-lifecycle.d.ts +8 -106
- package/dist/src/operations/infer-lifecycle.js +4 -10
- package/dist/src/operations/init-document.d.ts +7 -45
- package/dist/src/operations/json-to-markdown.d.ts +7 -45
- package/dist/src/operations/mark-task-done.d.ts +14 -90
- package/dist/src/operations/mark-task-undone.d.ts +14 -90
- package/dist/src/operations/markdown-to-json.d.ts +7 -45
- package/dist/src/operations/next-id.d.ts +8 -48
- package/dist/src/operations/node-history.d.ts +7 -45
- package/dist/src/operations/plan-add-task.d.ts +14 -90
- package/dist/src/operations/plan-gate.d.ts +7 -45
- package/dist/src/operations/plan-init.d.ts +7 -45
- package/dist/src/operations/plan-progress.d.ts +7 -45
- package/dist/src/operations/plan-status.d.ts +7 -45
- package/dist/src/operations/query-node.d.ts +29 -195
- package/dist/src/operations/query-nodes.d.ts +15 -91
- package/dist/src/operations/query-nodes.js +6 -4
- package/dist/src/operations/query-relationships.d.ts +9 -60
- package/dist/src/operations/remove-node.d.ts +21 -135
- package/dist/src/operations/remove-node.js +11 -1
- package/dist/src/operations/remove-relationship.d.ts +15 -104
- package/dist/src/operations/rename.d.ts +14 -90
- package/dist/src/operations/search.d.ts +14 -90
- package/dist/src/operations/speckit-diff.d.ts +7 -45
- package/dist/src/operations/speckit-export.d.ts +7 -45
- package/dist/src/operations/speckit-import.d.ts +7 -45
- package/dist/src/operations/speckit-sync.d.ts +22 -136
- package/dist/src/operations/speckit-sync.js +3 -3
- package/dist/src/operations/state-at.d.ts +7 -45
- package/dist/src/operations/stats.d.ts +7 -45
- package/dist/src/operations/sync.d.ts +21 -135
- package/dist/src/operations/task-list.d.ts +7 -45
- package/dist/src/operations/timeline.d.ts +7 -45
- package/dist/src/operations/trace-from-node.d.ts +21 -135
- package/dist/src/operations/update-metadata.d.ts +14 -90
- package/dist/src/operations/update-node.d.ts +20 -155
- package/dist/src/operations/update-plan-task.d.ts +14 -90
- package/dist/src/operations/validate.d.ts +7 -45
- package/dist/src/operations/validate.js +8 -6
- package/dist/src/schema.d.ts +22 -164
- package/dist/src/schema.js +4 -27
- package/dist/src/speckit/generate.js +10 -7
- package/dist/src/speckit/parse.js +6 -3
- package/dist/src/speckit/plan.js +1 -1
- package/package.json +13 -2
- package/schema.json +4 -44
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sysprom",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.1",
|
|
4
4
|
"description": "SysProM — System Provenance Model CLI and library",
|
|
5
5
|
"author": "ExaDev",
|
|
6
6
|
"homepage": "https://exadev.github.io/SysProM",
|
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"validate": "turbo run _validate",
|
|
62
62
|
"prepare": "husky"
|
|
63
63
|
},
|
|
64
|
+
"lint-staged": {
|
|
65
|
+
"*.{js,cjs,mjs,ts,tsx}": [
|
|
66
|
+
"eslint --fix --no-error-on-unmatched-pattern"
|
|
67
|
+
],
|
|
68
|
+
"*.{json,md}": [
|
|
69
|
+
"eslint --fix --no-error-on-unmatched-pattern --no-warn-ignored"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
64
72
|
"dependencies": {
|
|
65
73
|
"@modelcontextprotocol/sdk": "1.27.1",
|
|
66
74
|
"commander": "14.0.3",
|
|
@@ -74,6 +82,8 @@
|
|
|
74
82
|
"@eslint/compat": "2.0.3",
|
|
75
83
|
"@eslint/eslintrc": "3.3.5",
|
|
76
84
|
"@eslint/js": "10.0.1",
|
|
85
|
+
"@eslint/json": "1.2.0",
|
|
86
|
+
"@eslint/markdown": "7.5.1",
|
|
77
87
|
"@semantic-release/changelog": "6.0.3",
|
|
78
88
|
"@semantic-release/exec": "7.1.0",
|
|
79
89
|
"@semantic-release/git": "10.0.1",
|
|
@@ -83,10 +93,11 @@
|
|
|
83
93
|
"eslint": "10.1.0",
|
|
84
94
|
"eslint-config-prettier": "10.1.8",
|
|
85
95
|
"eslint-formatter-compact": "9.0.1",
|
|
86
|
-
"eslint-plugin-jsdoc": "62.8.
|
|
96
|
+
"eslint-plugin-jsdoc": "62.8.1",
|
|
87
97
|
"eslint-plugin-prettier": "5.5.5",
|
|
88
98
|
"eslint-plugin-sonarjs": "^4.0.2",
|
|
89
99
|
"husky": "9.1.7",
|
|
100
|
+
"lint-staged": "16.4.0",
|
|
90
101
|
"prettier": "3.8.1",
|
|
91
102
|
"semantic-release": "25.0.3",
|
|
92
103
|
"tsx": "4.21.0",
|
package/schema.json
CHANGED
|
@@ -210,10 +210,6 @@
|
|
|
210
210
|
},
|
|
211
211
|
"type": "array"
|
|
212
212
|
},
|
|
213
|
-
"input": {
|
|
214
|
-
"description": "ID of the input artefact. Applicable to artefact_flow nodes.",
|
|
215
|
-
"type": "string"
|
|
216
|
-
},
|
|
217
213
|
"lifecycle": {
|
|
218
214
|
"additionalProperties": {
|
|
219
215
|
"anyOf": [
|
|
@@ -306,10 +302,6 @@
|
|
|
306
302
|
},
|
|
307
303
|
"type": "array"
|
|
308
304
|
},
|
|
309
|
-
"output": {
|
|
310
|
-
"description": "ID of the output artefact. Applicable to artefact_flow nodes.",
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
305
|
"plan": {
|
|
314
306
|
"description": "Execution plan as a sequence of tasks. Applicable to change nodes.",
|
|
315
307
|
"items": {
|
|
@@ -377,25 +369,8 @@
|
|
|
377
369
|
"type": "string"
|
|
378
370
|
},
|
|
379
371
|
"status": {
|
|
380
|
-
"
|
|
381
|
-
|
|
382
|
-
"accepted",
|
|
383
|
-
"active",
|
|
384
|
-
"implemented",
|
|
385
|
-
"adopted",
|
|
386
|
-
"defined",
|
|
387
|
-
"introduced",
|
|
388
|
-
"in_progress",
|
|
389
|
-
"complete",
|
|
390
|
-
"consolidated",
|
|
391
|
-
"experimental",
|
|
392
|
-
"deprecated",
|
|
393
|
-
"retired",
|
|
394
|
-
"superseded",
|
|
395
|
-
"abandoned",
|
|
396
|
-
"deferred"
|
|
397
|
-
],
|
|
398
|
-
"type": "string"
|
|
372
|
+
"description": "Deprecated field. Node-level status is not supported; use lifecycle states instead.",
|
|
373
|
+
"not": {}
|
|
399
374
|
},
|
|
400
375
|
"subsystem": {
|
|
401
376
|
"$ref": "#"
|
|
@@ -416,12 +391,10 @@
|
|
|
416
391
|
"gate",
|
|
417
392
|
"mode",
|
|
418
393
|
"artefact",
|
|
419
|
-
"artefact_flow",
|
|
420
394
|
"decision",
|
|
421
395
|
"change",
|
|
422
396
|
"view",
|
|
423
|
-
"milestone"
|
|
424
|
-
"version"
|
|
397
|
+
"milestone"
|
|
425
398
|
],
|
|
426
399
|
"type": "string"
|
|
427
400
|
}
|
|
@@ -488,25 +461,12 @@
|
|
|
488
461
|
"affects",
|
|
489
462
|
"supersedes",
|
|
490
463
|
"must_preserve",
|
|
491
|
-
"performs",
|
|
492
464
|
"part_of",
|
|
493
465
|
"precedes",
|
|
494
466
|
"must_follow",
|
|
495
|
-
"blocks",
|
|
496
|
-
"routes_to",
|
|
497
|
-
"orchestrates",
|
|
498
467
|
"governed_by",
|
|
499
468
|
"modifies",
|
|
500
|
-
"
|
|
501
|
-
"applies_to",
|
|
502
|
-
"produces",
|
|
503
|
-
"consumes",
|
|
504
|
-
"transforms_into",
|
|
505
|
-
"selects",
|
|
506
|
-
"requires",
|
|
507
|
-
"disables",
|
|
508
|
-
"influence",
|
|
509
|
-
"justifies"
|
|
469
|
+
"produces"
|
|
510
470
|
],
|
|
511
471
|
"type": "string"
|
|
512
472
|
}
|