@opensip-cli/graph 0.1.6 → 0.1.8

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.
Files changed (99) hide show
  1. package/README.md +2 -2
  2. package/dist/__tests__/cli/graph-execute.test.js +7 -5
  3. package/dist/__tests__/cli/graph-execute.test.js.map +1 -1
  4. package/dist/__tests__/cli/graph.test.js +18 -12
  5. package/dist/__tests__/cli/graph.test.js.map +1 -1
  6. package/dist/__tests__/internal-surface.test.js +3 -0
  7. package/dist/__tests__/internal-surface.test.js.map +1 -1
  8. package/dist/__tests__/persistence/session-replay.test.js +7 -4
  9. package/dist/__tests__/persistence/session-replay.test.js.map +1 -1
  10. package/dist/__tests__/rules/registry.test.js +2 -2
  11. package/dist/__tests__/rules/registry.test.js.map +1 -1
  12. package/dist/__tests__/test-utils/with-graph-scope.d.ts.map +1 -1
  13. package/dist/__tests__/test-utils/with-graph-scope.js +2 -2
  14. package/dist/__tests__/test-utils/with-graph-scope.js.map +1 -1
  15. package/dist/__tests__/tool-branches.test.d.ts +3 -3
  16. package/dist/__tests__/tool-branches.test.js +25 -14
  17. package/dist/__tests__/tool-branches.test.js.map +1 -1
  18. package/dist/__tests__/tool-register.test.js +61 -77
  19. package/dist/__tests__/tool-register.test.js.map +1 -1
  20. package/dist/__tests__/tool.test.d.ts +4 -4
  21. package/dist/__tests__/tool.test.js +31 -16
  22. package/dist/__tests__/tool.test.js.map +1 -1
  23. package/dist/cli/__tests__/build-envelope.test.js +77 -0
  24. package/dist/cli/__tests__/build-envelope.test.js.map +1 -1
  25. package/dist/cli/__tests__/graph-envelope-view.test.d.ts +2 -0
  26. package/dist/cli/__tests__/graph-envelope-view.test.d.ts.map +1 -0
  27. package/dist/cli/__tests__/graph-envelope-view.test.js +97 -0
  28. package/dist/cli/__tests__/graph-envelope-view.test.js.map +1 -0
  29. package/dist/cli/__tests__/graph-list.test.d.ts +2 -0
  30. package/dist/cli/__tests__/graph-list.test.d.ts.map +1 -0
  31. package/dist/cli/__tests__/graph-list.test.js +20 -0
  32. package/dist/cli/__tests__/graph-list.test.js.map +1 -0
  33. package/dist/cli/__tests__/shard-worker.test.js +22 -0
  34. package/dist/cli/__tests__/shard-worker.test.js.map +1 -1
  35. package/dist/cli/equivalence-check-command.d.ts.map +1 -1
  36. package/dist/cli/equivalence-check-command.js +0 -2
  37. package/dist/cli/equivalence-check-command.js.map +1 -1
  38. package/dist/cli/graph/graph-aux-command-specs.d.ts +54 -27
  39. package/dist/cli/graph/graph-aux-command-specs.d.ts.map +1 -1
  40. package/dist/cli/graph/graph-aux-command-specs.js +359 -265
  41. package/dist/cli/graph/graph-aux-command-specs.js.map +1 -1
  42. package/dist/cli/graph-envelope-view.d.ts +41 -0
  43. package/dist/cli/graph-envelope-view.d.ts.map +1 -0
  44. package/dist/cli/graph-envelope-view.js +133 -0
  45. package/dist/cli/graph-envelope-view.js.map +1 -0
  46. package/dist/cli/graph-list.d.ts +29 -0
  47. package/dist/cli/graph-list.d.ts.map +1 -0
  48. package/dist/cli/graph-list.js +44 -0
  49. package/dist/cli/graph-list.js.map +1 -0
  50. package/dist/cli/graph-report.d.ts +16 -6
  51. package/dist/cli/graph-report.d.ts.map +1 -1
  52. package/dist/cli/graph-report.js +10 -6
  53. package/dist/cli/graph-report.js.map +1 -1
  54. package/dist/cli/graph-runner.d.ts.map +1 -1
  55. package/dist/cli/graph-runner.js +23 -10
  56. package/dist/cli/graph-runner.js.map +1 -1
  57. package/dist/cli/graph-worker.d.ts.map +1 -1
  58. package/dist/cli/graph-worker.js +1 -0
  59. package/dist/cli/graph-worker.js.map +1 -1
  60. package/dist/cli/graph.d.ts.map +1 -1
  61. package/dist/cli/graph.js +30 -25
  62. package/dist/cli/graph.js.map +1 -1
  63. package/dist/cli/lookup.d.ts.map +1 -1
  64. package/dist/cli/lookup.js +0 -2
  65. package/dist/cli/lookup.js.map +1 -1
  66. package/dist/cli/orchestrate/__tests__/shard-runner-correlation.test.d.ts +22 -0
  67. package/dist/cli/orchestrate/__tests__/shard-runner-correlation.test.d.ts.map +1 -0
  68. package/dist/cli/orchestrate/__tests__/shard-runner-correlation.test.js +208 -0
  69. package/dist/cli/orchestrate/__tests__/shard-runner-correlation.test.js.map +1 -0
  70. package/dist/cli/orchestrate/shard-model.d.ts +17 -0
  71. package/dist/cli/orchestrate/shard-model.d.ts.map +1 -1
  72. package/dist/cli/orchestrate/shard-runner.d.ts +31 -1
  73. package/dist/cli/orchestrate/shard-runner.d.ts.map +1 -1
  74. package/dist/cli/orchestrate/shard-runner.js +215 -11
  75. package/dist/cli/orchestrate/shard-runner.js.map +1 -1
  76. package/dist/cli/orchestrate/sharded-graph.d.ts.map +1 -1
  77. package/dist/cli/orchestrate/sharded-graph.js +32 -3
  78. package/dist/cli/orchestrate/sharded-graph.js.map +1 -1
  79. package/dist/cli/shard-worker.d.ts.map +1 -1
  80. package/dist/cli/shard-worker.js +127 -11
  81. package/dist/cli/shard-worker.js.map +1 -1
  82. package/dist/cli/symbol-index.d.ts.map +1 -1
  83. package/dist/cli/symbol-index.js +0 -2
  84. package/dist/cli/symbol-index.js.map +1 -1
  85. package/dist/internal.d.ts +1 -0
  86. package/dist/internal.d.ts.map +1 -1
  87. package/dist/internal.js +5 -0
  88. package/dist/internal.js.map +1 -1
  89. package/dist/persistence/schema.d.ts.map +1 -1
  90. package/dist/persistence/schema.js +18 -0
  91. package/dist/persistence/schema.js.map +1 -1
  92. package/dist/persistence/session-replay.d.ts +9 -4
  93. package/dist/persistence/session-replay.d.ts.map +1 -1
  94. package/dist/persistence/session-replay.js +8 -12
  95. package/dist/persistence/session-replay.js.map +1 -1
  96. package/dist/tool.d.ts.map +1 -1
  97. package/dist/tool.js +37 -118
  98. package/dist/tool.js.map +1 -1
  99. package/package.json +22 -26
package/dist/tool.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"tool.js","sourceRoot":"","sources":["../src/tool.ts"],"names":[],"mappings":"AAAA,iUAAiU;AACjU;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAO,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAE/D,mEAAmE;AACnE,sEAAsE;AACtE,iEAAiE;AACjE,wEAAwE;AACxE,QAAQ;AACR,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EACL,8BAA8B,EAC9B,6BAA6B,EAC7B,gCAAgC,EAChC,sBAAsB,EACtB,uBAAuB,EACvB,2BAA2B,EAC3B,2BAA2B,EAC3B,2BAA2B,GAC5B,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AACtF,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAC3F,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC1D,iEAAiE;AACjE,mDAAmD;AACnD,OAAO,yBAAyB,CAAC;AAcjC,gFAAgF;AAChF,wEAAwE;AACxE,gFAAgF;AAEhF,MAAM,KAAK,GAA0B;IACnC,IAAI,EAAE,OAAO;IACb,WAAW,EACT,qFAAqF;CACxF,CAAC;AAEF,MAAM,YAAY,GAA0B;IAC1C,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,wEAAwE;CACtF,CAAC;AAEF,MAAM,kBAAkB,GAA0B;IAChD,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,6FAA6F;CAChG,CAAC;AAEF,MAAM,qBAAqB,GAA0B;IACnD,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE,oEAAoE;CAClF,CAAC;AAEF,MAAM,kBAAkB,GAA0B;IAChD,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,6GAA6G;CAChH,CAAC;AAEF,MAAM,uBAAuB,GAA0B;IACrD,IAAI,EAAE,yBAAyB;IAC/B,WAAW,EACT,wJAAwJ;CAC3J,CAAC;AAEF,MAAM,gBAAgB,GAA0B;IAC9C,IAAI,EAAE,kBAAkB;IACxB,WAAW,EACT,yGAAyG;CAC5G,CAAC;AAEF,MAAM,oBAAoB,GAA0B;IAClD,IAAI,EAAE,gBAAgB;IACtB,WAAW,EACT,uGAAuG;CAC1G,CAAC;AAEF,MAAM,kBAAkB,GAA0B;IAChD,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,iFAAiF;CAC/F,CAAC;AAEF,MAAM,aAAa,GAA0B;IAC3C,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,8BAA8B;CAC5C,CAAC;AAEF,gFAAgF;AAChF,wBAAwB;AACxB,gFAAgF;AAEhF;;;;;;;;GAQG;AACH,MAAM,iBAAiB,GAAoD;IACzE,gBAAgB;IAChB,sBAAsB;IACtB,2BAA2B;IAC3B,yBAAyB;IACzB,2BAA2B;IAC3B,8BAA8B;IAC9B,6BAA6B;IAC7B,2BAA2B;IAC3B,uBAAuB;IACvB,gCAAgC;CACjC,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,oBAAoB,GAAwB,CAAC,YAAY,EAAE,EAAE;IACjE,sBAAsB,EAAE,CAAC,QAAQ,CAAC,YAAoC,CAAC,CAAC;AAC1E,CAAC,CAAC;AAEF;;;;;;;;;;;GAWG;AACH,SAAS,eAAe;IACtB,OAAO;QACL,KAAK,EAAE;YACL,QAAQ,EAAE,qBAAqB,EAAE;YACjC,KAAK,EAAE,mBAAmB,EAAE;YAC5B,OAAO,EAAE,oBAAoB,EAAE;SAChC;KACF,CAAC;AACJ,CAAC;AAED;;;;;;;;;;;;;;;GAeG;AACH,SAAS,iBAAiB,CAAC,KAAgB;IACzC,qEAAqE;IACrE,yEAAyE;IACzE,yEAAyE;IACzE,iEAAiE;IACjE,MAAM,gBAAgB,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,kBAAkB,GAAG,uBAAuB,CAAC,KAAK,CAAC,CAAC;IAE1D,MAAM,SAAS,GAAG,KAAK,CAAC,SAAS,EAA2B,CAAC;IAC7D,IAAI,CAAC,SAAS;QAAE,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,CAAC;IAChE,IAAI,CAAC;QACH,OAAO;YACL,YAAY,EAAE,IAAI,WAAW,CAAC,SAAS,CAAC,CAAC,mBAAmB,EAAE;YAC9D,gBAAgB;YAChB,kBAAkB;SACnB,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,oEAAoE;QACpE,mEAAmE;QACnE,eAAe;QACf,MAAM,CAAC,KAAK,CAAC;YACX,GAAG,EAAE,qCAAqC;YAC1C,MAAM,EAAE,YAAY;YACpB,GAAG,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;SAC5D,CAAC,CAAC;QACH,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,CAAC;IAClD,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,OAAO,CAAC;AAE9C,MAAM,CAAC,MAAM,eAAe,GAAG,sCAAsC,CAAC;AAEtE,MAAM,CAAC,MAAM,SAAS,GAAS;IAC7B,QAAQ,EAAE;QACR,EAAE,EAAE,eAAe,EAAE,yDAAyD;QAC9E,IAAI,EAAE,OAAO,EAAE,2CAA2C;QAC1D,OAAO,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;QAC5C,WAAW,EAAE,uCAAuC;KACrD;IACD,QAAQ,EAAE;QACR,KAAK;QACL,YAAY;QACZ,kBAAkB;QAClB,qBAAqB;QACrB,kBAAkB;QAClB,uBAAuB;QACvB,gBAAgB;QAChB,oBAAoB;QACpB,kBAAkB;QAClB,aAAa;KACd;IACD,sEAAsE;IACtE,+EAA+E;IAC/E,uCAAuC;IACvC,YAAY,EAAE,iBAAiB;IAC/B,eAAe;IACf,iBAAiB;IACjB,aAAa,EAAE;QACb,IAAI,EAAE,OAAO;QACb,aAAa,EAAE,sBAAsB;KACtC;IACD,4EAA4E;IAC5E,wEAAwE;IACxE,sEAAsE;IACtE,sEAAsE;IACtE,MAAM,EAAE,sBAAsB;IAC9B,8EAA8E;IAC9E,4EAA4E;IAC5E,gEAAgE;IAChE,oBAAoB,EAAE,EAAE,eAAe,EAAE,oBAAoB,EAAE;IAC/D,iFAAiF;IACjF,+EAA+E;IAC/E,mBAAmB,EAAE,wBAAwB;IAC7C,kFAAkF;IAClF,gEAAgE;IAChE,4EAA4E;IAC5E,wDAAwD;IACxD,eAAe,EAAE;QACf,oBAAoB,EAAE,sBAAsB;KAC7C;CACF,CAAC"}
1
+ {"version":3,"file":"tool.js","sourceRoot":"","sources":["../src/tool.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensip-cli/graph",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Static call-graph + dead-end analysis (seven-stage pipeline)",
6
6
  "keywords": [
@@ -42,18 +42,6 @@
42
42
  "name": "graph",
43
43
  "description": "Run static call-graph analysis (rules, entry points, catalog summary in one report)"
44
44
  },
45
- {
46
- "name": "graph-lookup",
47
- "description": "Look up function occurrences by simple name from the persisted catalog"
48
- },
49
- {
50
- "name": "graph-symbol-index",
51
- "description": "Emit a symbolindex.json artifact (name→file:line and file→names) from the persisted catalog"
52
- },
53
- {
54
- "name": "graph-baseline-export",
55
- "description": "Export the graph gate baseline (JSON) from the datastore to a file"
56
- },
57
45
  {
58
46
  "name": "graph-shard-worker",
59
47
  "description": "[internal] Build one shard from a spec file and emit a ShardBuildResult JSON (spawned by the sharded build)"
@@ -67,16 +55,24 @@
67
55
  "description": "[internal] Run the graph build headless and stream progress + result over IPC (forked by the live view)"
68
56
  },
69
57
  {
70
- "name": "catalog-export",
71
- "description": "Run graph analysis and write the CatalogExport JSON document (symbols + edges + provenance) to a file"
58
+ "name": "export",
59
+ "description": "Export graph analysis artifacts (--format sarif | catalog | baseline)"
72
60
  },
73
61
  {
74
- "name": "sarif-export",
75
- "description": "Run graph analysis and write OpenSIP-convention SARIF v2.1.0 findings to a file"
62
+ "name": "recipes",
63
+ "description": "List available graph recipes"
76
64
  },
77
65
  {
78
- "name": "graph-recipes",
79
- "description": "List available graph recipes"
66
+ "name": "lookup",
67
+ "description": "Look up function occurrences by simple name from the persisted catalog"
68
+ },
69
+ {
70
+ "name": "index",
71
+ "description": "Emit a symbolindex.json artifact (name→file:line and file→names) from the persisted catalog"
72
+ },
73
+ {
74
+ "name": "list",
75
+ "description": "List available graph rules"
80
76
  }
81
77
  ],
82
78
  "capabilities": [
@@ -113,19 +109,19 @@
113
109
  "ink": "^7.0.5",
114
110
  "react": "^19.2.7",
115
111
  "zod": "^4.4.3",
116
- "@opensip-cli/cli-ui": "0.1.6",
117
- "@opensip-cli/config": "0.1.6",
118
- "@opensip-cli/core": "0.1.6",
119
- "@opensip-cli/contracts": "0.1.6",
120
- "@opensip-cli/datastore": "0.1.6",
121
- "@opensip-cli/session-store": "0.1.6"
112
+ "@opensip-cli/cli-ui": "0.1.8",
113
+ "@opensip-cli/config": "0.1.8",
114
+ "@opensip-cli/core": "0.1.8",
115
+ "@opensip-cli/datastore": "0.1.8",
116
+ "@opensip-cli/contracts": "0.1.8",
117
+ "@opensip-cli/session-store": "0.1.8"
122
118
  },
123
119
  "devDependencies": {
124
120
  "@types/node": "^24.13.2",
125
121
  "@types/react": "^19.2.17",
126
122
  "typescript": "~6.0.3",
127
123
  "vitest": "^4.1.8",
128
- "@opensip-cli/output": "0.1.6"
124
+ "@opensip-cli/output": "0.1.8"
129
125
  },
130
126
  "scripts": {
131
127
  "build": "tsc",