@stsepelin/checktrail 0.1.0-alpha.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.
Files changed (385) hide show
  1. package/CONTRIBUTING.md +42 -0
  2. package/LICENSE +21 -0
  3. package/README.md +355 -0
  4. package/SECURITY.md +46 -0
  5. package/dist/src/actionlint-evidence.d.ts +2 -0
  6. package/dist/src/actionlint-evidence.js +166 -0
  7. package/dist/src/actionlint-inputs.d.ts +5 -0
  8. package/dist/src/actionlint-inputs.js +123 -0
  9. package/dist/src/actionlint-runner.d.ts +1 -0
  10. package/dist/src/actionlint-runner.js +122 -0
  11. package/dist/src/actionlint.d.ts +19 -0
  12. package/dist/src/actionlint.js +80 -0
  13. package/dist/src/adapters.d.ts +49 -0
  14. package/dist/src/adapters.js +430 -0
  15. package/dist/src/architecture.d.ts +107 -0
  16. package/dist/src/architecture.js +230 -0
  17. package/dist/src/clang-evidence.d.ts +2 -0
  18. package/dist/src/clang-evidence.js +194 -0
  19. package/dist/src/clang-protocol.d.ts +3 -0
  20. package/dist/src/clang-protocol.js +25 -0
  21. package/dist/src/clang-runner.d.ts +1 -0
  22. package/dist/src/clang-runner.js +159 -0
  23. package/dist/src/clang.d.ts +44 -0
  24. package/dist/src/clang.js +197 -0
  25. package/dist/src/cli.d.ts +2 -0
  26. package/dist/src/cli.js +338 -0
  27. package/dist/src/config.d.ts +33 -0
  28. package/dist/src/config.js +140 -0
  29. package/dist/src/contract-schema.d.ts +85 -0
  30. package/dist/src/contract-schema.js +56 -0
  31. package/dist/src/contract-worker.d.ts +1 -0
  32. package/dist/src/contract-worker.js +123 -0
  33. package/dist/src/contracts.d.ts +22 -0
  34. package/dist/src/contracts.js +123 -0
  35. package/dist/src/django-evidence.d.ts +2 -0
  36. package/dist/src/django-evidence.js +100 -0
  37. package/dist/src/django-runner.d.ts +1 -0
  38. package/dist/src/django-runner.js +80 -0
  39. package/dist/src/django.d.ts +9 -0
  40. package/dist/src/django.js +50 -0
  41. package/dist/src/dotnet-compiler.d.ts +1 -0
  42. package/dist/src/dotnet-compiler.js +87 -0
  43. package/dist/src/dotnet-evidence.d.ts +2 -0
  44. package/dist/src/dotnet-evidence.js +127 -0
  45. package/dist/src/dotnet-runner.d.ts +1 -0
  46. package/dist/src/dotnet-runner.js +167 -0
  47. package/dist/src/dotnet.d.ts +65 -0
  48. package/dist/src/dotnet.js +120 -0
  49. package/dist/src/engine.d.ts +19 -0
  50. package/dist/src/engine.js +239 -0
  51. package/dist/src/environment.d.ts +6 -0
  52. package/dist/src/environment.js +36 -0
  53. package/dist/src/eslint-evidence.d.ts +2 -0
  54. package/dist/src/eslint-evidence.js +98 -0
  55. package/dist/src/eslint-runner.d.ts +1 -0
  56. package/dist/src/eslint-runner.js +61 -0
  57. package/dist/src/eslint.d.ts +2 -0
  58. package/dist/src/eslint.js +40 -0
  59. package/dist/src/evidence.d.ts +2 -0
  60. package/dist/src/evidence.js +313 -0
  61. package/dist/src/external-adapter.d.ts +164 -0
  62. package/dist/src/external-adapter.js +265 -0
  63. package/dist/src/external-evidence.d.ts +2 -0
  64. package/dist/src/external-evidence.js +127 -0
  65. package/dist/src/external-runner.d.ts +1 -0
  66. package/dist/src/external-runner.js +122 -0
  67. package/dist/src/fastapi-evidence.d.ts +2 -0
  68. package/dist/src/fastapi-evidence.js +126 -0
  69. package/dist/src/fastapi-runner.d.ts +1 -0
  70. package/dist/src/fastapi-runner.js +84 -0
  71. package/dist/src/fastapi.d.ts +10 -0
  72. package/dist/src/fastapi.js +52 -0
  73. package/dist/src/fetch-pack.d.ts +16 -0
  74. package/dist/src/fetch-pack.js +154 -0
  75. package/dist/src/finding-policy-schema.d.ts +146 -0
  76. package/dist/src/finding-policy-schema.js +70 -0
  77. package/dist/src/finding-policy.d.ts +62 -0
  78. package/dist/src/finding-policy.js +206 -0
  79. package/dist/src/git-selection.d.ts +3 -0
  80. package/dist/src/git-selection.js +229 -0
  81. package/dist/src/go-directives.d.ts +1 -0
  82. package/dist/src/go-directives.js +32 -0
  83. package/dist/src/go-scope.d.ts +11 -0
  84. package/dist/src/go-scope.js +122 -0
  85. package/dist/src/golangci-evidence.d.ts +2 -0
  86. package/dist/src/golangci-evidence.js +92 -0
  87. package/dist/src/golangci-runner.d.ts +1 -0
  88. package/dist/src/golangci-runner.js +124 -0
  89. package/dist/src/golangci.d.ts +2 -0
  90. package/dist/src/golangci.js +35 -0
  91. package/dist/src/guidance.d.ts +98 -0
  92. package/dist/src/guidance.js +247 -0
  93. package/dist/src/index.d.ts +31 -0
  94. package/dist/src/index.js +16 -0
  95. package/dist/src/inventory.d.ts +4 -0
  96. package/dist/src/inventory.js +94 -0
  97. package/dist/src/java-compiler.d.ts +1 -0
  98. package/dist/src/java-compiler.js +110 -0
  99. package/dist/src/java-evidence.d.ts +2 -0
  100. package/dist/src/java-evidence.js +114 -0
  101. package/dist/src/java-runner.d.ts +1 -0
  102. package/dist/src/java-runner.js +79 -0
  103. package/dist/src/java.d.ts +25 -0
  104. package/dist/src/java.js +102 -0
  105. package/dist/src/jest-evidence.d.ts +2 -0
  106. package/dist/src/jest-evidence.js +117 -0
  107. package/dist/src/jest-runner.d.ts +1 -0
  108. package/dist/src/jest-runner.js +46 -0
  109. package/dist/src/jest.d.ts +2 -0
  110. package/dist/src/jest.js +36 -0
  111. package/dist/src/junit.d.ts +18 -0
  112. package/dist/src/junit.js +157 -0
  113. package/dist/src/laravel-evidence.d.ts +2 -0
  114. package/dist/src/laravel-evidence.js +175 -0
  115. package/dist/src/laravel-runner.d.ts +1 -0
  116. package/dist/src/laravel-runner.js +168 -0
  117. package/dist/src/laravel.d.ts +8 -0
  118. package/dist/src/laravel.js +50 -0
  119. package/dist/src/local-tool.d.ts +1 -0
  120. package/dist/src/local-tool.js +19 -0
  121. package/dist/src/mcp.d.ts +14 -0
  122. package/dist/src/mcp.js +362 -0
  123. package/dist/src/mutation.d.ts +118 -0
  124. package/dist/src/mutation.js +370 -0
  125. package/dist/src/mypy-evidence.d.ts +2 -0
  126. package/dist/src/mypy-evidence.js +63 -0
  127. package/dist/src/mypy.d.ts +2 -0
  128. package/dist/src/mypy.js +59 -0
  129. package/dist/src/node-reporter.d.ts +1 -0
  130. package/dist/src/node-reporter.js +28 -0
  131. package/dist/src/nuxt-evidence.d.ts +2 -0
  132. package/dist/src/nuxt-evidence.js +160 -0
  133. package/dist/src/nuxt-protocol.d.ts +52 -0
  134. package/dist/src/nuxt-protocol.js +29 -0
  135. package/dist/src/nuxt-runner.d.ts +1 -0
  136. package/dist/src/nuxt-runner.js +165 -0
  137. package/dist/src/nuxt.d.ts +24 -0
  138. package/dist/src/nuxt.js +105 -0
  139. package/dist/src/output.d.ts +3 -0
  140. package/dist/src/output.js +48 -0
  141. package/dist/src/phpstan-evidence.d.ts +2 -0
  142. package/dist/src/phpstan-evidence.js +81 -0
  143. package/dist/src/phpstan.d.ts +2 -0
  144. package/dist/src/phpstan.js +51 -0
  145. package/dist/src/phpunit-evidence.d.ts +2 -0
  146. package/dist/src/phpunit-evidence.js +53 -0
  147. package/dist/src/phpunit.d.ts +2 -0
  148. package/dist/src/phpunit.js +58 -0
  149. package/dist/src/pint-evidence.d.ts +2 -0
  150. package/dist/src/pint-evidence.js +79 -0
  151. package/dist/src/pint-runner.d.ts +1 -0
  152. package/dist/src/pint-runner.js +53 -0
  153. package/dist/src/pint.d.ts +2 -0
  154. package/dist/src/pint.js +37 -0
  155. package/dist/src/playwright-evidence.d.ts +2 -0
  156. package/dist/src/playwright-evidence.js +127 -0
  157. package/dist/src/playwright-reporter.d.ts +10 -0
  158. package/dist/src/playwright-reporter.js +37 -0
  159. package/dist/src/playwright-runner.d.ts +1 -0
  160. package/dist/src/playwright-runner.js +61 -0
  161. package/dist/src/playwright.d.ts +2 -0
  162. package/dist/src/playwright.js +35 -0
  163. package/dist/src/policy-pack.d.ts +21 -0
  164. package/dist/src/policy-pack.js +41 -0
  165. package/dist/src/pytest-evidence.d.ts +2 -0
  166. package/dist/src/pytest-evidence.js +116 -0
  167. package/dist/src/pytest-runner.d.ts +1 -0
  168. package/dist/src/pytest-runner.js +48 -0
  169. package/dist/src/pytest.d.ts +2 -0
  170. package/dist/src/pytest.js +25 -0
  171. package/dist/src/report-validation.d.ts +129 -0
  172. package/dist/src/report-validation.js +27 -0
  173. package/dist/src/review.d.ts +270 -0
  174. package/dist/src/review.js +349 -0
  175. package/dist/src/ruby.d.ts +2 -0
  176. package/dist/src/ruby.js +25 -0
  177. package/dist/src/ruff-evidence.d.ts +2 -0
  178. package/dist/src/ruff-evidence.js +99 -0
  179. package/dist/src/ruff.d.ts +2 -0
  180. package/dist/src/ruff.js +40 -0
  181. package/dist/src/runner.d.ts +8 -0
  182. package/dist/src/runner.js +117 -0
  183. package/dist/src/runtime-inventory.d.ts +112 -0
  184. package/dist/src/runtime-inventory.js +200 -0
  185. package/dist/src/rust-dep-info.d.ts +1 -0
  186. package/dist/src/rust-dep-info.js +46 -0
  187. package/dist/src/rust-evidence.d.ts +2 -0
  188. package/dist/src/rust-evidence.js +157 -0
  189. package/dist/src/rust-runner.d.ts +1 -0
  190. package/dist/src/rust-runner.js +161 -0
  191. package/dist/src/rust.d.ts +7 -0
  192. package/dist/src/rust.js +39 -0
  193. package/dist/src/sarif.d.ts +86 -0
  194. package/dist/src/sarif.js +113 -0
  195. package/dist/src/schemas.d.ts +393 -0
  196. package/dist/src/schemas.js +222 -0
  197. package/dist/src/staticcheck-evidence.d.ts +2 -0
  198. package/dist/src/staticcheck-evidence.js +75 -0
  199. package/dist/src/swift.d.ts +2 -0
  200. package/dist/src/swift.js +20 -0
  201. package/dist/src/task-store.d.ts +37 -0
  202. package/dist/src/task-store.js +349 -0
  203. package/dist/src/tool-versions.d.ts +3 -0
  204. package/dist/src/tool-versions.js +260 -0
  205. package/dist/src/types.d.ts +157 -0
  206. package/dist/src/types.js +37 -0
  207. package/dist/src/typescript-build-evidence.d.ts +2 -0
  208. package/dist/src/typescript-build-evidence.js +86 -0
  209. package/dist/src/typescript-build-runner.d.ts +1 -0
  210. package/dist/src/typescript-build-runner.js +132 -0
  211. package/dist/src/typescript-build.d.ts +2 -0
  212. package/dist/src/typescript-build.js +41 -0
  213. package/dist/src/typescript.d.ts +2 -0
  214. package/dist/src/typescript.js +54 -0
  215. package/dist/src/validation-task-worker.d.ts +1 -0
  216. package/dist/src/validation-task-worker.js +205 -0
  217. package/dist/src/validation-tasks-protocol.d.ts +69 -0
  218. package/dist/src/validation-tasks-protocol.js +57 -0
  219. package/dist/src/validation-tasks.d.ts +11 -0
  220. package/dist/src/validation-tasks.js +144 -0
  221. package/dist/src/vitest-evidence.d.ts +2 -0
  222. package/dist/src/vitest-evidence.js +112 -0
  223. package/dist/src/vitest-runner.d.ts +1 -0
  224. package/dist/src/vitest-runner.js +48 -0
  225. package/dist/src/vitest.d.ts +2 -0
  226. package/dist/src/vitest.js +36 -0
  227. package/dist/src/vue-router-capture.d.ts +42 -0
  228. package/dist/src/vue-router-capture.js +87 -0
  229. package/dist/src/vue-router-evidence.d.ts +2 -0
  230. package/dist/src/vue-router-evidence.js +126 -0
  231. package/dist/src/vue-router-protocol.d.ts +63 -0
  232. package/dist/src/vue-router-protocol.js +44 -0
  233. package/dist/src/vue-router-runner.d.ts +1 -0
  234. package/dist/src/vue-router-runner.js +88 -0
  235. package/dist/src/vue-router.d.ts +23 -0
  236. package/dist/src/vue-router.js +108 -0
  237. package/dist/src/vue-tsc-runner.d.ts +1 -0
  238. package/dist/src/vue-tsc-runner.js +24 -0
  239. package/dist/src/workspace.d.ts +7 -0
  240. package/dist/src/workspace.js +53 -0
  241. package/docs/ACCEPTANCE.md +56 -0
  242. package/docs/ACTIONLINT.md +112 -0
  243. package/docs/ARCHITECTURE-POLICY.md +82 -0
  244. package/docs/ARCHITECTURE.md +122 -0
  245. package/docs/CLANG.md +113 -0
  246. package/docs/CLIENTS.md +109 -0
  247. package/docs/CONTRACTS.md +73 -0
  248. package/docs/DEPENDENCIES.md +42 -0
  249. package/docs/DJANGO.md +70 -0
  250. package/docs/DOTNET.md +114 -0
  251. package/docs/ENVIRONMENTS.md +52 -0
  252. package/docs/ESLINT.md +68 -0
  253. package/docs/EVALUATION.md +124 -0
  254. package/docs/EXECUTION.md +250 -0
  255. package/docs/EXTERNAL-ADAPTERS.md +170 -0
  256. package/docs/EXTERNAL-EVALUATION.md +155 -0
  257. package/docs/EXTERNAL-RUFF-EVALUATION.md +85 -0
  258. package/docs/FASTAPI.md +73 -0
  259. package/docs/FINDING-POLICY.md +67 -0
  260. package/docs/GO-RACE.md +19 -0
  261. package/docs/GO-SCOPE.md +63 -0
  262. package/docs/GOLANGCI-LINT.md +64 -0
  263. package/docs/GUIDANCE.md +46 -0
  264. package/docs/IMPACT-MEASUREMENT.md +97 -0
  265. package/docs/INSTALLATION.md +102 -0
  266. package/docs/JAVA.md +79 -0
  267. package/docs/JEST.md +36 -0
  268. package/docs/JUNIT.md +31 -0
  269. package/docs/LANGUAGES.md +113 -0
  270. package/docs/LARAVEL.md +111 -0
  271. package/docs/MCP-COMPATIBILITY.md +68 -0
  272. package/docs/MUTATIONS.md +93 -0
  273. package/docs/MYPY.md +37 -0
  274. package/docs/NATIVE-CI.md +96 -0
  275. package/docs/NUXT.md +123 -0
  276. package/docs/PACK-DISTRIBUTION.md +98 -0
  277. package/docs/PERFORMANCE.md +71 -0
  278. package/docs/PEST.md +36 -0
  279. package/docs/PHPSTAN.md +48 -0
  280. package/docs/PHPUNIT.md +32 -0
  281. package/docs/PINT.md +41 -0
  282. package/docs/PLAN.md +265 -0
  283. package/docs/PLAYWRIGHT.md +73 -0
  284. package/docs/POLICY-PACKS.md +106 -0
  285. package/docs/PRIOR-WORKFLOW-EVALUATION.md +116 -0
  286. package/docs/PUBLICATION.md +28 -0
  287. package/docs/PYTEST.md +51 -0
  288. package/docs/RELEASE.md +115 -0
  289. package/docs/RENAMING.md +55 -0
  290. package/docs/REVIEW-EXCHANGE.md +136 -0
  291. package/docs/RUBY.md +50 -0
  292. package/docs/RUFF.md +39 -0
  293. package/docs/RUNTIME-INVENTORY.md +56 -0
  294. package/docs/RUST.md +74 -0
  295. package/docs/SARIF.md +64 -0
  296. package/docs/STATUS.md +530 -0
  297. package/docs/SWIFT.md +48 -0
  298. package/docs/TASK-STORAGE.md +141 -0
  299. package/docs/TOOL-IDENTITY.md +30 -0
  300. package/docs/TYPESCRIPT-BUILD.md +55 -0
  301. package/docs/VALIDATION-TASKS.md +119 -0
  302. package/docs/VITEST.md +36 -0
  303. package/docs/VUE-ROUTER.md +130 -0
  304. package/docs/VUE-TSC.md +26 -0
  305. package/docs/WORKSPACES.md +81 -0
  306. package/docs/licenses/nodable-entities-3.0.0.txt +21 -0
  307. package/docs/measurements/client-claude-before-schema-fix-darwin-arm64-node26.json +60 -0
  308. package/docs/measurements/client-claude-darwin-arm64-node26.json +55 -0
  309. package/docs/measurements/client-codex-darwin-arm64-node26.json +175 -0
  310. package/docs/measurements/evaluation-corpus-repo-verifier.json +332 -0
  311. package/docs/measurements/evaluation-darwin-arm64-node26.json +1236 -0
  312. package/docs/measurements/evaluation-linux-arm64-node22.json +1236 -0
  313. package/docs/measurements/external-eslint-darwin-arm64-node26.json +11866 -0
  314. package/docs/measurements/external-eslint-linux-arm64-node22.json +11866 -0
  315. package/docs/measurements/external-eslint-preservation.json +1527 -0
  316. package/docs/measurements/external-ruff-darwin-arm64-node26.json +1031 -0
  317. package/docs/measurements/external-ruff-linux-arm64-node22.json +1031 -0
  318. package/docs/measurements/hosted-ci-52ba415.json +1005 -0
  319. package/docs/measurements/impact-darwin-arm64-node26.json +6685 -0
  320. package/docs/measurements/impact-linux-arm64-node22.json +6690 -0
  321. package/docs/measurements/performance-darwin-arm64-node26.json +845 -0
  322. package/docs/measurements/performance-linux-arm64-node22.json +845 -0
  323. package/docs/measurements/required-native-profiles.json +500 -0
  324. package/package.json +72 -0
  325. package/packs/actionlint.json +8 -0
  326. package/packs/cpp.json +8 -0
  327. package/packs/dotnet.json +8 -0
  328. package/packs/go.json +7 -0
  329. package/packs/java.json +8 -0
  330. package/packs/javascript-node.json +7 -0
  331. package/packs/nuxt.json +7 -0
  332. package/packs/php-pest.json +7 -0
  333. package/packs/php-phpunit.json +7 -0
  334. package/packs/python-pytest.json +7 -0
  335. package/packs/ruby.json +7 -0
  336. package/packs/rust.json +7 -0
  337. package/packs/swift.json +7 -0
  338. package/packs/vue-router.json +7 -0
  339. package/packs/vue.json +11 -0
  340. package/schemas/actionlint-config.schema.json +19 -0
  341. package/schemas/architecture-policy.schema.json +51 -0
  342. package/schemas/architecture-report.schema.json +123 -0
  343. package/schemas/architecture-summary.schema.json +82 -0
  344. package/schemas/clang-database.schema.json +23 -0
  345. package/schemas/config.schema.json +69 -0
  346. package/schemas/contract-bundle.schema.json +78 -0
  347. package/schemas/contract-report.schema.json +114 -0
  348. package/schemas/contract-summary.schema.json +72 -0
  349. package/schemas/dependency-graph.schema.json +65 -0
  350. package/schemas/django-config.schema.json +16 -0
  351. package/schemas/dotnet-config.schema.json +60 -0
  352. package/schemas/external-manifest.schema.json +97 -0
  353. package/schemas/external-reference.schema.json +10 -0
  354. package/schemas/external-request.schema.json +56 -0
  355. package/schemas/external-result.schema.json +111 -0
  356. package/schemas/fastapi-config.schema.json +27 -0
  357. package/schemas/finding-baseline.schema.json +92 -0
  358. package/schemas/finding-comparison-summary.schema.json +95 -0
  359. package/schemas/finding-comparison.schema.json +121 -0
  360. package/schemas/guidance-context.schema.json +34 -0
  361. package/schemas/guidance-report.schema.json +176 -0
  362. package/schemas/guidance-summary.schema.json +68 -0
  363. package/schemas/java-config.schema.json +24 -0
  364. package/schemas/junit.schema.json +69 -0
  365. package/schemas/laravel-config.schema.json +11 -0
  366. package/schemas/mutation-recipe.schema.json +31 -0
  367. package/schemas/mutation-report.schema.json +238 -0
  368. package/schemas/mutation-summary.schema.json +98 -0
  369. package/schemas/nuxt-config.schema.json +51 -0
  370. package/schemas/plan-summary.schema.json +63 -0
  371. package/schemas/plan.schema.json +244 -0
  372. package/schemas/policy-pack.schema.json +41 -0
  373. package/schemas/report-summary.schema.json +100 -0
  374. package/schemas/report.schema.json +463 -0
  375. package/schemas/review-assessment.schema.json +133 -0
  376. package/schemas/review-context-summary.schema.json +31 -0
  377. package/schemas/review-context.schema.json +254 -0
  378. package/schemas/review-receipt-summary.schema.json +104 -0
  379. package/schemas/review-receipt.schema.json +271 -0
  380. package/schemas/review-selection.schema.json +30 -0
  381. package/schemas/runtime-comparison-summary.schema.json +68 -0
  382. package/schemas/runtime-comparison.schema.json +127 -0
  383. package/schemas/runtime-inventory.schema.json +99 -0
  384. package/schemas/vue-router-config.schema.json +67 -0
  385. package/server.json +47 -0
@@ -0,0 +1,500 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "provenance": "local-required-native-profile-verification",
4
+ "recordedAt": "2026-09-19T01:27:11.461Z",
5
+ "host": {
6
+ "platform": "darwin",
7
+ "architecture": "arm64",
8
+ "node": "26.8.1"
9
+ },
10
+ "manifestSha256": "da3a00cd8f24f3dd6452517090c2d2fa7749e933a567801bdeb0c7a019856f77",
11
+ "runnerSha256": "6ff59f15feade3ef88c00a0c17c6d7dc85c59714379c27f07dacdaf79b9ec4e2",
12
+ "runs": [
13
+ {
14
+ "profile": "core",
15
+ "execution": "host with PHP container shim",
16
+ "helper": "scripts/verify-required-native-tests.mjs",
17
+ "helperSha256": "8d941fa44e799518d9a259e3b45313182aba85cf4efeb6a5f02ca88a0d2a557d",
18
+ "requirementsSha256": "1634fe4b70511ae58cfe3139d3f2864f15831b6f86fec6798bc613a7eeadca89",
19
+ "logSha256": "68ebc02186eff60ad0cb441e27f8bc684691cae3c95d7c72b735bfa958926914",
20
+ "result": {
21
+ "profile": "core",
22
+ "passed": 8,
23
+ "required": 8,
24
+ "problems": [],
25
+ "complete": true
26
+ },
27
+ "environment": [],
28
+ "packageEvidence": []
29
+ },
30
+ {
31
+ "profile": "javascript",
32
+ "execution": "host",
33
+ "helper": "scripts/verify-required-native-tests.mjs",
34
+ "helperSha256": "8d941fa44e799518d9a259e3b45313182aba85cf4efeb6a5f02ca88a0d2a557d",
35
+ "requirementsSha256": "bae17cf3c2335f9956a5ed7dda81c6ce6aef75307192165a9b2ff05370c2adb1",
36
+ "logSha256": "f9ef2b6adc3dd8edfb6e0c5dc3a658296a0d04cdd42f003d7c144b2fdf6f6e85",
37
+ "result": {
38
+ "profile": "javascript",
39
+ "passed": 23,
40
+ "required": 23,
41
+ "problems": [],
42
+ "complete": true
43
+ },
44
+ "environment": [],
45
+ "packageEvidence": []
46
+ },
47
+ {
48
+ "profile": "python",
49
+ "execution": "host with Python container shim",
50
+ "helper": "scripts/verify-python-container.mjs",
51
+ "helperSha256": "a01ce3f1be241acd78b19e346fb60b9aaf46be51a773d4f3ea3fbafa0df0a880",
52
+ "requirementsSha256": "2f3ec7e0969e28ab1105a63328bce42e50afad8cc035c5d264c548b9103963e0",
53
+ "logSha256": "690466b70a154080b86e31fb0fdc9051a10d948bd289f82900c76353d0d2aa60",
54
+ "result": {
55
+ "profile": "python",
56
+ "passed": 5,
57
+ "required": 5,
58
+ "problems": [],
59
+ "complete": true
60
+ },
61
+ "environment": [
62
+ {
63
+ "image": "sha256:6d43704baacd1bfbe7c295d7f13079d5d8104ed33568873133f8fc69980419df",
64
+ "version": "3.12.13 9.1.1",
65
+ "network": "none",
66
+ "mount": "read-only"
67
+ }
68
+ ],
69
+ "packageEvidence": []
70
+ },
71
+ {
72
+ "profile": "frameworks",
73
+ "execution": "host with Python container shim",
74
+ "helper": "scripts/verify-framework-container.mjs",
75
+ "helperSha256": "d4e0a823f7d97f0d41660449a1096f339cacb3d47db3876166589c9e7acf3c5e",
76
+ "requirementsSha256": "ea7b23b43baf5f85e47d753ea22d5c707f23e8350b60b695644a31ef8433fcbe",
77
+ "logSha256": "22409f0970fb7469c20d8f8f4bcbf7c8cece2f1f67d342c81d4b9960349009d6",
78
+ "result": {
79
+ "profile": "frameworks",
80
+ "passed": 8,
81
+ "required": 8,
82
+ "problems": [],
83
+ "complete": true
84
+ },
85
+ "environment": [
86
+ {
87
+ "image": "sha256:6d43704baacd1bfbe7c295d7f13079d5d8104ed33568873133f8fc69980419df",
88
+ "version": "3.12.13 0.141.1 1.6.0 6.1.1",
89
+ "network": "none",
90
+ "mount": "read-only"
91
+ }
92
+ ],
93
+ "packageEvidence": []
94
+ },
95
+ {
96
+ "profile": "go",
97
+ "execution": "host",
98
+ "helper": "scripts/verify-required-native-tests.mjs",
99
+ "helperSha256": "8d941fa44e799518d9a259e3b45313182aba85cf4efeb6a5f02ca88a0d2a557d",
100
+ "requirementsSha256": "35bda6cd43f9280677de8b042c2e2027993fd42e281d8b52031c6da60e4aeec1",
101
+ "logSha256": "9347eb700b999b72e51e0d7c2869f719e817de066e0f2deb0e37595060ab60df",
102
+ "result": {
103
+ "profile": "go",
104
+ "passed": 9,
105
+ "required": 9,
106
+ "problems": [],
107
+ "complete": true
108
+ },
109
+ "environment": [],
110
+ "packageEvidence": []
111
+ },
112
+ {
113
+ "profile": "php-tools",
114
+ "execution": "Linux container",
115
+ "helper": "scripts/verify-php-tools-container.mjs",
116
+ "helperSha256": "bdbb77443c1dd0412bbd62c11386623c58c39f6ca39c583c4d2d830edacaaca2",
117
+ "requirementsSha256": "6334aa858a0e0757a326f27ee7020fa8d4d25b6692f29dadea37555ecead4761",
118
+ "logSha256": "62d37fb6d1d96b02f12c3b0b4fc0ce6960884c70b2adfb8a75d0f84c0cc34998",
119
+ "result": {
120
+ "profile": "php-tools",
121
+ "passed": 8,
122
+ "required": 8,
123
+ "problems": [],
124
+ "complete": true
125
+ },
126
+ "environment": [
127
+ {
128
+ "image": "sha256:b09bccd91a78fe8a9ab4b33d707b862e8fe54fec17782e32683ad2a69c46867d",
129
+ "nodeImage": "sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
130
+ "phpVersion": "PHP 8.5.6 (cli) (built: May 8 2026 16:43:53) (NTS)",
131
+ "nodeVersion": "v22.23.2",
132
+ "network": "none",
133
+ "fixtureFilesystem": "container"
134
+ }
135
+ ],
136
+ "packageEvidence": []
137
+ },
138
+ {
139
+ "profile": "laravel",
140
+ "execution": "Linux container",
141
+ "helper": "scripts/verify-laravel-container.mjs",
142
+ "helperSha256": "b24ee9eb3cf5f7dc40a67863c85405d89325e22f12f350aa72ce55e96a866d95",
143
+ "requirementsSha256": "2e067072ca82e1dc32a4cb1df314655e1d1f4fc06fb8a729f874ad02234b0d36",
144
+ "logSha256": "f4176ea50b5b7d87f8608b1b8796ef5ebac2784e8c22356a3bb13e606abeda3e",
145
+ "result": {
146
+ "profile": "laravel",
147
+ "passed": 3,
148
+ "required": 3,
149
+ "problems": [],
150
+ "complete": true
151
+ },
152
+ "environment": [
153
+ {
154
+ "image": "sha256:b09bccd91a78fe8a9ab4b33d707b862e8fe54fec17782e32683ad2a69c46867d",
155
+ "nodeImage": "sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
156
+ "phpVersion": "PHP 8.5.6 (cli) (built: May 8 2026 16:43:53) (NTS)",
157
+ "nodeVersion": "v22.23.2",
158
+ "network": "none",
159
+ "fixtureFilesystem": "container"
160
+ }
161
+ ],
162
+ "packageEvidence": []
163
+ },
164
+ {
165
+ "profile": "rust",
166
+ "execution": "Linux container",
167
+ "helper": "scripts/verify-rust-container.mjs",
168
+ "helperSha256": "2f491abcbec3cb8acf788158d8c9d4b5d64a7a96b150a9b8af730b1861248f72",
169
+ "requirementsSha256": "79df27bb7156233810ebd6f200deb907134d498d256994f0572d04603d1ba3dc",
170
+ "logSha256": "bb1c91d380351b464c1bfc0d015acdc7398b4b642af764c57c291170e5246a4b",
171
+ "result": {
172
+ "profile": "rust",
173
+ "passed": 5,
174
+ "required": 5,
175
+ "problems": [],
176
+ "complete": true
177
+ },
178
+ "environment": [
179
+ {
180
+ "image": "sha256:c913be57168b9240b86f373f94060152a2e09ea16a72e0801a02ee3a262ca446",
181
+ "nodeImage": "sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
182
+ "rustVersion": "rustc 1.98.1 (48a229cea 2026-09-01)",
183
+ "nodeVersion": "v22.23.2",
184
+ "network": "none",
185
+ "fixtureFilesystem": "container"
186
+ }
187
+ ],
188
+ "packageEvidence": []
189
+ },
190
+ {
191
+ "profile": "clang",
192
+ "execution": "Linux container",
193
+ "helper": "scripts/verify-clang-container.mjs",
194
+ "helperSha256": "a8f4375f32c5fd86054b82fc5926fdcc5adf5a3a97e10ebf6ff718a8edd1af40",
195
+ "requirementsSha256": "9f8021795cee616f806bf4dd632594f13f9157349d8dfe9791eb5bb539d19e59",
196
+ "logSha256": "39cdee7e959234f9c6877c03ce7b764686c2e19c0bf2422fe8790f2b4c014534",
197
+ "result": {
198
+ "profile": "clang",
199
+ "passed": 6,
200
+ "required": 6,
201
+ "problems": [],
202
+ "complete": true
203
+ },
204
+ "environment": [
205
+ {
206
+ "image": "sha256:b5aab26fadf49295a4b4c80bf67beb60e67a972daa26c92bcd0939ac64d126d1",
207
+ "clang": "Alpine clang version 22.1.3\nTarget: aarch64-alpine-linux-musl\nThread model: posix\nInstalledDir: /usr/lib/llvm22/bin",
208
+ "node": "v22.23.2",
209
+ "network": "none",
210
+ "fixtureFilesystem": "container"
211
+ }
212
+ ],
213
+ "packageEvidence": []
214
+ },
215
+ {
216
+ "profile": "java",
217
+ "execution": "Linux container",
218
+ "helper": "scripts/verify-java-container.mjs",
219
+ "helperSha256": "beae4ea69ebe24e95215cd66355c4acb22d47b7cb92905b2b9ed2b0d10ea34f8",
220
+ "requirementsSha256": "8bdeffe26da5b1f120ae404de04877fa36cb5186dfe8f34c95c3ee15860ca6c0",
221
+ "logSha256": "3d230a1952d508881822298b5bc40a9ccf863dffcb922c46244245bcb4450056",
222
+ "result": {
223
+ "profile": "java",
224
+ "passed": 5,
225
+ "required": 5,
226
+ "problems": [],
227
+ "complete": true
228
+ },
229
+ "environment": [
230
+ {
231
+ "image": "sha256:a44c49b6c1fe6e8ed154119981f24b34045c22ea773abc2d995dc6d821d76242",
232
+ "java": "openjdk 25.0.4 2026-07-21 LTS\nOpenJDK Runtime Environment Temurin-25.0.4+7 (build 25.0.4+7-LTS)\nOpenJDK 64-Bit Server VM Temurin-25.0.4+7 (build 25.0.4+7-LTS, mixed mode, sharing)",
233
+ "network": "none",
234
+ "native": "passed",
235
+ "installation": "offline",
236
+ "library": "passed",
237
+ "cli": "passed",
238
+ "mcp": "passed"
239
+ }
240
+ ],
241
+ "packageEvidence": [
242
+ {
243
+ "image": "sha256:a44c49b6c1fe6e8ed154119981f24b34045c22ea773abc2d995dc6d821d76242",
244
+ "java": "openjdk 25.0.4 2026-07-21 LTS\nOpenJDK Runtime Environment Temurin-25.0.4+7 (build 25.0.4+7-LTS)\nOpenJDK 64-Bit Server VM Temurin-25.0.4+7 (build 25.0.4+7-LTS, mixed mode, sharing)",
245
+ "network": "none",
246
+ "native": "passed",
247
+ "installation": "offline",
248
+ "library": "passed",
249
+ "cli": "passed",
250
+ "mcp": "passed"
251
+ }
252
+ ]
253
+ },
254
+ {
255
+ "profile": "dotnet",
256
+ "execution": "Linux container",
257
+ "helper": "scripts/verify-dotnet-container.mjs",
258
+ "helperSha256": "ca4a846d8bfb32c8b034ac39bd0f5ec6222794241eedda8ede63c175627219a1",
259
+ "requirementsSha256": "5d488b47831f1f000a6388fe22961fd28e7e2fd4c46af0186482aa14b3c6fe6b",
260
+ "logSha256": "435ac394ff8a9a50ebfeefd2a885f8fe6bb8029413e61ac52642fec87bc439e7",
261
+ "result": {
262
+ "profile": "dotnet",
263
+ "passed": 7,
264
+ "required": 7,
265
+ "problems": [],
266
+ "complete": true
267
+ },
268
+ "environment": [
269
+ {
270
+ "image": "sha256:fb4a8cb9fdc778122e4a8e3e460135b6c3f77626ae19db8677aa357a95b07570",
271
+ "sdk": "10.0.401 [/usr/share/dotnet/sdk]",
272
+ "compiler": "5.9.0-1.26423.113 (e34a38d2ae1fc26406a317517196e55c68ff83ab)",
273
+ "network": "none",
274
+ "native": "passed",
275
+ "installation": "offline",
276
+ "library": "passed",
277
+ "cli": "passed",
278
+ "mcp": "passed"
279
+ }
280
+ ],
281
+ "packageEvidence": [
282
+ {
283
+ "image": "sha256:fb4a8cb9fdc778122e4a8e3e460135b6c3f77626ae19db8677aa357a95b07570",
284
+ "sdk": "10.0.401 [/usr/share/dotnet/sdk]",
285
+ "compiler": "5.9.0-1.26423.113 (e34a38d2ae1fc26406a317517196e55c68ff83ab)",
286
+ "network": "none",
287
+ "native": "passed",
288
+ "installation": "offline",
289
+ "library": "passed",
290
+ "cli": "passed",
291
+ "mcp": "passed"
292
+ }
293
+ ]
294
+ },
295
+ {
296
+ "profile": "actionlint",
297
+ "execution": "Linux container",
298
+ "helper": "scripts/verify-actionlint-container.mjs",
299
+ "helperSha256": "731c419789b99f9ea010a9782df6e9fa6ae12335e3b80b9ab35dd022b430f047",
300
+ "requirementsSha256": "1c71b09e047090a63f7a027db1083902e595b147a5c92d994eec9821424b6834",
301
+ "logSha256": "6997f4e8fd9cca4ef1b20da34101e7cfb54e563f2fefad23e2334ff7b80d2642",
302
+ "result": {
303
+ "profile": "actionlint",
304
+ "passed": 8,
305
+ "required": 8,
306
+ "problems": [],
307
+ "complete": true
308
+ },
309
+ "environment": [
310
+ {
311
+ "image": "sha256:60fe972d5efcb28a85a9557afe5e8428949dfe675b57b52bf33e9b3e560354dd",
312
+ "version": "1.7.12\ninstalled by downloading from release page\nbuilt with go1.26.1 compiler for linux/arm64",
313
+ "network": "none",
314
+ "native": "passed",
315
+ "installation": "offline",
316
+ "library": "passed",
317
+ "cli": "passed",
318
+ "mcp": "passed"
319
+ }
320
+ ],
321
+ "packageEvidence": [
322
+ {
323
+ "image": "sha256:60fe972d5efcb28a85a9557afe5e8428949dfe675b57b52bf33e9b3e560354dd",
324
+ "version": "1.7.12\ninstalled by downloading from release page\nbuilt with go1.26.1 compiler for linux/arm64",
325
+ "network": "none",
326
+ "native": "passed",
327
+ "installation": "offline",
328
+ "library": "passed",
329
+ "cli": "passed",
330
+ "mcp": "passed"
331
+ }
332
+ ]
333
+ },
334
+ {
335
+ "profile": "vue-router",
336
+ "execution": "Linux container",
337
+ "helper": "scripts/verify-vue-router-container.mjs",
338
+ "helperSha256": "37e543d24bd797daa3f6a3e9910a9c578ca1081bd2b3415f3fccf44bbc3f4f22",
339
+ "requirementsSha256": "4733edf2ca9672dd547b276257e7db0f78943f6962d41e4975b552c89677f6f5",
340
+ "logSha256": "2a045755c06fa36cec8d68cd0586fc1d131f26d92aa8ed5b029935697fba75fd",
341
+ "result": {
342
+ "profile": "vue-router",
343
+ "passed": 8,
344
+ "required": 8,
345
+ "problems": [],
346
+ "complete": true
347
+ },
348
+ "environment": [
349
+ {
350
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
351
+ "node": "22.23.2",
352
+ "vue": "3.5.43",
353
+ "router": "5.3.1",
354
+ "network": "none",
355
+ "native": "passed",
356
+ "installation": "offline",
357
+ "library": "passed",
358
+ "cli": "passed",
359
+ "broken": "failed as expected",
360
+ "mcp": "passed"
361
+ }
362
+ ],
363
+ "packageEvidence": [
364
+ {
365
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
366
+ "node": "22.23.2",
367
+ "vue": "3.5.43",
368
+ "router": "5.3.1",
369
+ "network": "none",
370
+ "native": "passed",
371
+ "installation": "offline",
372
+ "library": "passed",
373
+ "cli": "passed",
374
+ "broken": "failed as expected",
375
+ "mcp": "passed"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "profile": "nuxt",
381
+ "execution": "Linux container",
382
+ "helper": "scripts/verify-nuxt-container.mjs",
383
+ "helperSha256": "6c17315e2e35585e3b2bb40dd2a21c8c1a2b0153c2a5f15700a68af4bb91c80a",
384
+ "requirementsSha256": "194dfdd1153525a4815a5bda45bfa5819638103174c0b1f31e954ba175dc690f",
385
+ "logSha256": "27bf58ea1df77e80dc10538277d5235faaa19d62d4508d36a3ce1b6fb7326a07",
386
+ "result": {
387
+ "profile": "nuxt",
388
+ "passed": 7,
389
+ "required": 7,
390
+ "problems": [],
391
+ "complete": true
392
+ },
393
+ "environment": [
394
+ {
395
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
396
+ "node": "22.23.2",
397
+ "nuxt": "4.5.2",
398
+ "nitro": "2.13.4",
399
+ "network": "none",
400
+ "native": "passed",
401
+ "installation": "offline",
402
+ "library": "passed",
403
+ "cli": "passed",
404
+ "broken": "failed as expected",
405
+ "mcp": "passed"
406
+ }
407
+ ],
408
+ "packageEvidence": [
409
+ {
410
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
411
+ "node": "22.23.2",
412
+ "nuxt": "4.5.2",
413
+ "nitro": "2.13.4",
414
+ "network": "none",
415
+ "native": "passed",
416
+ "installation": "offline",
417
+ "library": "passed",
418
+ "cli": "passed",
419
+ "broken": "failed as expected",
420
+ "mcp": "passed"
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "profile": "review",
426
+ "execution": "Linux container",
427
+ "helper": "scripts/verify-review-container.mjs",
428
+ "helperSha256": "428838c8ddd19cc59ca2cef980199a3aa0c7f1378257ee21f97cb12a4f6c4a31",
429
+ "requirementsSha256": "a000e4b77f9eb5c9628104b595341b68d9e9ebc5e6d3bd29b3ed13225aa550f0",
430
+ "logSha256": "d740170bd11f84c3cd5317977b1f6a96dc77138f0d00ea5aa119e99300430b51",
431
+ "result": {
432
+ "profile": "review",
433
+ "passed": 6,
434
+ "required": 6,
435
+ "problems": [],
436
+ "complete": true
437
+ },
438
+ "environment": [
439
+ {
440
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
441
+ "node": "22.23.2",
442
+ "network": "none",
443
+ "native": "passed",
444
+ "installation": "offline",
445
+ "library": "passed",
446
+ "cli": "passed",
447
+ "mcp": "passed",
448
+ "stale": "detected",
449
+ "claimsVerified": false
450
+ }
451
+ ],
452
+ "packageEvidence": [
453
+ {
454
+ "image": "node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32",
455
+ "node": "22.23.2",
456
+ "network": "none",
457
+ "native": "passed",
458
+ "installation": "offline",
459
+ "library": "passed",
460
+ "cli": "passed",
461
+ "mcp": "passed",
462
+ "stale": "detected",
463
+ "claimsVerified": false
464
+ }
465
+ ]
466
+ },
467
+ {
468
+ "profile": "tasks",
469
+ "execution": "Linux container",
470
+ "helper": "scripts/verify-task-store-container.mjs",
471
+ "helperSha256": "3d6f5bfd3ca38bfbd971c7f9b4948d43f418e68c0fca92beed606fcc55e3cc99",
472
+ "requirementsSha256": "c741716036d6ae50c654e7f6362e3680170187d0760aa1469da9af84f2d9b905",
473
+ "logSha256": "3d929798385f06e7552fb1a004d6f970797c0ee163e15c5384189a966afecd2c",
474
+ "result": {
475
+ "profile": "tasks",
476
+ "passed": 17,
477
+ "required": 17,
478
+ "problems": [],
479
+ "complete": true
480
+ },
481
+ "environment": [],
482
+ "packageEvidence": [
483
+ {
484
+ "durableWorker": "passed",
485
+ "installedLibrary": "passed",
486
+ "nativeValidation": "passed",
487
+ "reopen": "passed",
488
+ "interruption": "explicit-tool-error",
489
+ "mcpTasks": "not-advertised"
490
+ }
491
+ ]
492
+ }
493
+ ],
494
+ "limits": [
495
+ "These are local profile and package runs, not hosted GitHub Actions results.",
496
+ "Passed counts include unit cases in selected files and overlap with the general suite.",
497
+ "Unchanged Ruby and Swift profiles retain their separately documented local evidence.",
498
+ "Some profiles run host Node with containerized language commands; this does not reproduce a hosted runner image."
499
+ ]
500
+ }
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@stsepelin/checktrail",
3
+ "version": "0.1.0-alpha.1",
4
+ "mcpName": "io.github.stsepelin/checktrail",
5
+ "description": "Local code validation with execution evidence, a CLI, and MCP tools.",
6
+ "type": "module",
7
+ "license": "MIT",
8
+ "author": "stsepelin",
9
+ "engines": {
10
+ "node": ">=22"
11
+ },
12
+ "bin": {
13
+ "checktrail": "dist/src/cli.js"
14
+ },
15
+ "files": [
16
+ "dist/src",
17
+ "schemas",
18
+ "packs",
19
+ "server.json",
20
+ "docs",
21
+ "README.md",
22
+ "LICENSE",
23
+ "SECURITY.md",
24
+ "CONTRIBUTING.md"
25
+ ],
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/src/index.d.ts",
29
+ "import": "./dist/src/index.js"
30
+ }
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/stsepelin/checktrail.git"
35
+ },
36
+ "scripts": {
37
+ "build": "tsc",
38
+ "typecheck": "tsc --noEmit",
39
+ "lint": "eslint src test scripts examples/javascript examples/contracts examples/package-contract examples/mutations examples/vue-router examples/nuxt examples/review eslint.config.js",
40
+ "format:check": "prettier --check .",
41
+ "test": "npm run build && node --test dist/test/*.test.js",
42
+ "check": "npm run typecheck && npm run lint && npm run test",
43
+ "probe:mcp-tasks": "node scripts/probe-mcp-tasks.mjs"
44
+ },
45
+ "dependencies": {
46
+ "@modelcontextprotocol/server": "2.0.0",
47
+ "ajv": "8.20.0",
48
+ "ajv-formats": "3.0.1",
49
+ "fast-xml-parser": "5.11.1",
50
+ "yaml": "2.9.1",
51
+ "zod": "4.6.5"
52
+ },
53
+ "devDependencies": {
54
+ "@eslint/js": "10.0.1",
55
+ "@modelcontextprotocol/client": "2.0.0",
56
+ "@playwright/test": "1.63.0",
57
+ "@types/node": "22.20.3",
58
+ "eslint": "10.10.0",
59
+ "jest": "30.5.2",
60
+ "prettier": "3.9.8",
61
+ "typescript": "6.0.3",
62
+ "typescript-eslint": "8.70.0",
63
+ "vitest": "5.0.1",
64
+ "vue": "3.5.43",
65
+ "vue-tsc": "3.3.11"
66
+ },
67
+ "publishConfig": {
68
+ "access": "public",
69
+ "tag": "next",
70
+ "registry": "https://registry.npmjs.org"
71
+ }
72
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "infrastructure.actionlint",
4
+ "version": "1.0.0",
5
+ "description": "Static GitHub Actions workflow analysis with explicit local inputs and per-file native evidence; no workflow execution",
6
+ "requiredChecks": ["infrastructure.actionlint"],
7
+ "requiredEnvironment": []
8
+ }
package/packs/cpp.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "cpp.clang",
4
+ "version": "1.0.0",
5
+ "description": "Prepared Clang compilation database checks with native source and header accounting; no linking or test execution",
6
+ "requiredChecks": ["cpp.clang-check"],
7
+ "requiredEnvironment": []
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "dotnet.csharp",
4
+ "version": "1.0.0",
5
+ "description": "Explicit C# compilation with native syntax/semantic accounting and pinned local references; no build targets or tests",
6
+ "requiredChecks": ["dotnet.csharp"],
7
+ "requiredEnvironment": []
8
+ }
package/packs/go.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "go.core",
4
+ "version": "1.0.0",
5
+ "description": "Go formatting, vet, uncached package tests and Staticcheck",
6
+ "requiredChecks": ["go.format", "go.vet", "go.test", "go.staticcheck"]
7
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "jvm.java",
4
+ "version": "1.0.0",
5
+ "description": "Explicit Java compilation with pinned local dependencies and native source accounting; no build-system or test execution",
6
+ "requiredChecks": ["jvm.javac"],
7
+ "requiredEnvironment": []
8
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "javascript.node",
4
+ "version": "1.0.0",
5
+ "description": "Node tests and ESLint source checks",
6
+ "requiredChecks": ["javascript.node-test", "javascript.eslint"]
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "public.nuxt",
4
+ "version": "1.0.0",
5
+ "description": "Native Nuxt SSR testing assembly with explicit page request contracts.",
6
+ "requiredChecks": ["javascript.nuxt-runtime"]
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "php.pest",
4
+ "version": "1.0.0",
5
+ "description": "PHP syntax, PHPStan, Pest tests and Pint formatting",
6
+ "requiredChecks": ["php.syntax", "php.phpstan", "php.pest", "php.pint"]
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "php.phpunit",
4
+ "version": "1.0.0",
5
+ "description": "PHP syntax, PHPStan, PHPUnit tests and Pint formatting",
6
+ "requiredChecks": ["php.syntax", "php.phpstan", "php.phpunit", "php.pint"]
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "python.pytest",
4
+ "version": "1.0.0",
5
+ "description": "Python pytest tests, Ruff linting and mypy type checking",
6
+ "requiredChecks": ["python.pytest", "python.ruff", "python.mypy"]
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "ruby.syntax",
4
+ "version": "1.0.0",
5
+ "description": "MRI Ruby syntax checks for source and Ruby DSL manifests; no gem installation or tests",
6
+ "requiredChecks": ["ruby.syntax"]
7
+ }