@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.
- package/CONTRIBUTING.md +42 -0
- package/LICENSE +21 -0
- package/README.md +355 -0
- package/SECURITY.md +46 -0
- package/dist/src/actionlint-evidence.d.ts +2 -0
- package/dist/src/actionlint-evidence.js +166 -0
- package/dist/src/actionlint-inputs.d.ts +5 -0
- package/dist/src/actionlint-inputs.js +123 -0
- package/dist/src/actionlint-runner.d.ts +1 -0
- package/dist/src/actionlint-runner.js +122 -0
- package/dist/src/actionlint.d.ts +19 -0
- package/dist/src/actionlint.js +80 -0
- package/dist/src/adapters.d.ts +49 -0
- package/dist/src/adapters.js +430 -0
- package/dist/src/architecture.d.ts +107 -0
- package/dist/src/architecture.js +230 -0
- package/dist/src/clang-evidence.d.ts +2 -0
- package/dist/src/clang-evidence.js +194 -0
- package/dist/src/clang-protocol.d.ts +3 -0
- package/dist/src/clang-protocol.js +25 -0
- package/dist/src/clang-runner.d.ts +1 -0
- package/dist/src/clang-runner.js +159 -0
- package/dist/src/clang.d.ts +44 -0
- package/dist/src/clang.js +197 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +338 -0
- package/dist/src/config.d.ts +33 -0
- package/dist/src/config.js +140 -0
- package/dist/src/contract-schema.d.ts +85 -0
- package/dist/src/contract-schema.js +56 -0
- package/dist/src/contract-worker.d.ts +1 -0
- package/dist/src/contract-worker.js +123 -0
- package/dist/src/contracts.d.ts +22 -0
- package/dist/src/contracts.js +123 -0
- package/dist/src/django-evidence.d.ts +2 -0
- package/dist/src/django-evidence.js +100 -0
- package/dist/src/django-runner.d.ts +1 -0
- package/dist/src/django-runner.js +80 -0
- package/dist/src/django.d.ts +9 -0
- package/dist/src/django.js +50 -0
- package/dist/src/dotnet-compiler.d.ts +1 -0
- package/dist/src/dotnet-compiler.js +87 -0
- package/dist/src/dotnet-evidence.d.ts +2 -0
- package/dist/src/dotnet-evidence.js +127 -0
- package/dist/src/dotnet-runner.d.ts +1 -0
- package/dist/src/dotnet-runner.js +167 -0
- package/dist/src/dotnet.d.ts +65 -0
- package/dist/src/dotnet.js +120 -0
- package/dist/src/engine.d.ts +19 -0
- package/dist/src/engine.js +239 -0
- package/dist/src/environment.d.ts +6 -0
- package/dist/src/environment.js +36 -0
- package/dist/src/eslint-evidence.d.ts +2 -0
- package/dist/src/eslint-evidence.js +98 -0
- package/dist/src/eslint-runner.d.ts +1 -0
- package/dist/src/eslint-runner.js +61 -0
- package/dist/src/eslint.d.ts +2 -0
- package/dist/src/eslint.js +40 -0
- package/dist/src/evidence.d.ts +2 -0
- package/dist/src/evidence.js +313 -0
- package/dist/src/external-adapter.d.ts +164 -0
- package/dist/src/external-adapter.js +265 -0
- package/dist/src/external-evidence.d.ts +2 -0
- package/dist/src/external-evidence.js +127 -0
- package/dist/src/external-runner.d.ts +1 -0
- package/dist/src/external-runner.js +122 -0
- package/dist/src/fastapi-evidence.d.ts +2 -0
- package/dist/src/fastapi-evidence.js +126 -0
- package/dist/src/fastapi-runner.d.ts +1 -0
- package/dist/src/fastapi-runner.js +84 -0
- package/dist/src/fastapi.d.ts +10 -0
- package/dist/src/fastapi.js +52 -0
- package/dist/src/fetch-pack.d.ts +16 -0
- package/dist/src/fetch-pack.js +154 -0
- package/dist/src/finding-policy-schema.d.ts +146 -0
- package/dist/src/finding-policy-schema.js +70 -0
- package/dist/src/finding-policy.d.ts +62 -0
- package/dist/src/finding-policy.js +206 -0
- package/dist/src/git-selection.d.ts +3 -0
- package/dist/src/git-selection.js +229 -0
- package/dist/src/go-directives.d.ts +1 -0
- package/dist/src/go-directives.js +32 -0
- package/dist/src/go-scope.d.ts +11 -0
- package/dist/src/go-scope.js +122 -0
- package/dist/src/golangci-evidence.d.ts +2 -0
- package/dist/src/golangci-evidence.js +92 -0
- package/dist/src/golangci-runner.d.ts +1 -0
- package/dist/src/golangci-runner.js +124 -0
- package/dist/src/golangci.d.ts +2 -0
- package/dist/src/golangci.js +35 -0
- package/dist/src/guidance.d.ts +98 -0
- package/dist/src/guidance.js +247 -0
- package/dist/src/index.d.ts +31 -0
- package/dist/src/index.js +16 -0
- package/dist/src/inventory.d.ts +4 -0
- package/dist/src/inventory.js +94 -0
- package/dist/src/java-compiler.d.ts +1 -0
- package/dist/src/java-compiler.js +110 -0
- package/dist/src/java-evidence.d.ts +2 -0
- package/dist/src/java-evidence.js +114 -0
- package/dist/src/java-runner.d.ts +1 -0
- package/dist/src/java-runner.js +79 -0
- package/dist/src/java.d.ts +25 -0
- package/dist/src/java.js +102 -0
- package/dist/src/jest-evidence.d.ts +2 -0
- package/dist/src/jest-evidence.js +117 -0
- package/dist/src/jest-runner.d.ts +1 -0
- package/dist/src/jest-runner.js +46 -0
- package/dist/src/jest.d.ts +2 -0
- package/dist/src/jest.js +36 -0
- package/dist/src/junit.d.ts +18 -0
- package/dist/src/junit.js +157 -0
- package/dist/src/laravel-evidence.d.ts +2 -0
- package/dist/src/laravel-evidence.js +175 -0
- package/dist/src/laravel-runner.d.ts +1 -0
- package/dist/src/laravel-runner.js +168 -0
- package/dist/src/laravel.d.ts +8 -0
- package/dist/src/laravel.js +50 -0
- package/dist/src/local-tool.d.ts +1 -0
- package/dist/src/local-tool.js +19 -0
- package/dist/src/mcp.d.ts +14 -0
- package/dist/src/mcp.js +362 -0
- package/dist/src/mutation.d.ts +118 -0
- package/dist/src/mutation.js +370 -0
- package/dist/src/mypy-evidence.d.ts +2 -0
- package/dist/src/mypy-evidence.js +63 -0
- package/dist/src/mypy.d.ts +2 -0
- package/dist/src/mypy.js +59 -0
- package/dist/src/node-reporter.d.ts +1 -0
- package/dist/src/node-reporter.js +28 -0
- package/dist/src/nuxt-evidence.d.ts +2 -0
- package/dist/src/nuxt-evidence.js +160 -0
- package/dist/src/nuxt-protocol.d.ts +52 -0
- package/dist/src/nuxt-protocol.js +29 -0
- package/dist/src/nuxt-runner.d.ts +1 -0
- package/dist/src/nuxt-runner.js +165 -0
- package/dist/src/nuxt.d.ts +24 -0
- package/dist/src/nuxt.js +105 -0
- package/dist/src/output.d.ts +3 -0
- package/dist/src/output.js +48 -0
- package/dist/src/phpstan-evidence.d.ts +2 -0
- package/dist/src/phpstan-evidence.js +81 -0
- package/dist/src/phpstan.d.ts +2 -0
- package/dist/src/phpstan.js +51 -0
- package/dist/src/phpunit-evidence.d.ts +2 -0
- package/dist/src/phpunit-evidence.js +53 -0
- package/dist/src/phpunit.d.ts +2 -0
- package/dist/src/phpunit.js +58 -0
- package/dist/src/pint-evidence.d.ts +2 -0
- package/dist/src/pint-evidence.js +79 -0
- package/dist/src/pint-runner.d.ts +1 -0
- package/dist/src/pint-runner.js +53 -0
- package/dist/src/pint.d.ts +2 -0
- package/dist/src/pint.js +37 -0
- package/dist/src/playwright-evidence.d.ts +2 -0
- package/dist/src/playwright-evidence.js +127 -0
- package/dist/src/playwright-reporter.d.ts +10 -0
- package/dist/src/playwright-reporter.js +37 -0
- package/dist/src/playwright-runner.d.ts +1 -0
- package/dist/src/playwright-runner.js +61 -0
- package/dist/src/playwright.d.ts +2 -0
- package/dist/src/playwright.js +35 -0
- package/dist/src/policy-pack.d.ts +21 -0
- package/dist/src/policy-pack.js +41 -0
- package/dist/src/pytest-evidence.d.ts +2 -0
- package/dist/src/pytest-evidence.js +116 -0
- package/dist/src/pytest-runner.d.ts +1 -0
- package/dist/src/pytest-runner.js +48 -0
- package/dist/src/pytest.d.ts +2 -0
- package/dist/src/pytest.js +25 -0
- package/dist/src/report-validation.d.ts +129 -0
- package/dist/src/report-validation.js +27 -0
- package/dist/src/review.d.ts +270 -0
- package/dist/src/review.js +349 -0
- package/dist/src/ruby.d.ts +2 -0
- package/dist/src/ruby.js +25 -0
- package/dist/src/ruff-evidence.d.ts +2 -0
- package/dist/src/ruff-evidence.js +99 -0
- package/dist/src/ruff.d.ts +2 -0
- package/dist/src/ruff.js +40 -0
- package/dist/src/runner.d.ts +8 -0
- package/dist/src/runner.js +117 -0
- package/dist/src/runtime-inventory.d.ts +112 -0
- package/dist/src/runtime-inventory.js +200 -0
- package/dist/src/rust-dep-info.d.ts +1 -0
- package/dist/src/rust-dep-info.js +46 -0
- package/dist/src/rust-evidence.d.ts +2 -0
- package/dist/src/rust-evidence.js +157 -0
- package/dist/src/rust-runner.d.ts +1 -0
- package/dist/src/rust-runner.js +161 -0
- package/dist/src/rust.d.ts +7 -0
- package/dist/src/rust.js +39 -0
- package/dist/src/sarif.d.ts +86 -0
- package/dist/src/sarif.js +113 -0
- package/dist/src/schemas.d.ts +393 -0
- package/dist/src/schemas.js +222 -0
- package/dist/src/staticcheck-evidence.d.ts +2 -0
- package/dist/src/staticcheck-evidence.js +75 -0
- package/dist/src/swift.d.ts +2 -0
- package/dist/src/swift.js +20 -0
- package/dist/src/task-store.d.ts +37 -0
- package/dist/src/task-store.js +349 -0
- package/dist/src/tool-versions.d.ts +3 -0
- package/dist/src/tool-versions.js +260 -0
- package/dist/src/types.d.ts +157 -0
- package/dist/src/types.js +37 -0
- package/dist/src/typescript-build-evidence.d.ts +2 -0
- package/dist/src/typescript-build-evidence.js +86 -0
- package/dist/src/typescript-build-runner.d.ts +1 -0
- package/dist/src/typescript-build-runner.js +132 -0
- package/dist/src/typescript-build.d.ts +2 -0
- package/dist/src/typescript-build.js +41 -0
- package/dist/src/typescript.d.ts +2 -0
- package/dist/src/typescript.js +54 -0
- package/dist/src/validation-task-worker.d.ts +1 -0
- package/dist/src/validation-task-worker.js +205 -0
- package/dist/src/validation-tasks-protocol.d.ts +69 -0
- package/dist/src/validation-tasks-protocol.js +57 -0
- package/dist/src/validation-tasks.d.ts +11 -0
- package/dist/src/validation-tasks.js +144 -0
- package/dist/src/vitest-evidence.d.ts +2 -0
- package/dist/src/vitest-evidence.js +112 -0
- package/dist/src/vitest-runner.d.ts +1 -0
- package/dist/src/vitest-runner.js +48 -0
- package/dist/src/vitest.d.ts +2 -0
- package/dist/src/vitest.js +36 -0
- package/dist/src/vue-router-capture.d.ts +42 -0
- package/dist/src/vue-router-capture.js +87 -0
- package/dist/src/vue-router-evidence.d.ts +2 -0
- package/dist/src/vue-router-evidence.js +126 -0
- package/dist/src/vue-router-protocol.d.ts +63 -0
- package/dist/src/vue-router-protocol.js +44 -0
- package/dist/src/vue-router-runner.d.ts +1 -0
- package/dist/src/vue-router-runner.js +88 -0
- package/dist/src/vue-router.d.ts +23 -0
- package/dist/src/vue-router.js +108 -0
- package/dist/src/vue-tsc-runner.d.ts +1 -0
- package/dist/src/vue-tsc-runner.js +24 -0
- package/dist/src/workspace.d.ts +7 -0
- package/dist/src/workspace.js +53 -0
- package/docs/ACCEPTANCE.md +56 -0
- package/docs/ACTIONLINT.md +112 -0
- package/docs/ARCHITECTURE-POLICY.md +82 -0
- package/docs/ARCHITECTURE.md +122 -0
- package/docs/CLANG.md +113 -0
- package/docs/CLIENTS.md +109 -0
- package/docs/CONTRACTS.md +73 -0
- package/docs/DEPENDENCIES.md +42 -0
- package/docs/DJANGO.md +70 -0
- package/docs/DOTNET.md +114 -0
- package/docs/ENVIRONMENTS.md +52 -0
- package/docs/ESLINT.md +68 -0
- package/docs/EVALUATION.md +124 -0
- package/docs/EXECUTION.md +250 -0
- package/docs/EXTERNAL-ADAPTERS.md +170 -0
- package/docs/EXTERNAL-EVALUATION.md +155 -0
- package/docs/EXTERNAL-RUFF-EVALUATION.md +85 -0
- package/docs/FASTAPI.md +73 -0
- package/docs/FINDING-POLICY.md +67 -0
- package/docs/GO-RACE.md +19 -0
- package/docs/GO-SCOPE.md +63 -0
- package/docs/GOLANGCI-LINT.md +64 -0
- package/docs/GUIDANCE.md +46 -0
- package/docs/IMPACT-MEASUREMENT.md +97 -0
- package/docs/INSTALLATION.md +102 -0
- package/docs/JAVA.md +79 -0
- package/docs/JEST.md +36 -0
- package/docs/JUNIT.md +31 -0
- package/docs/LANGUAGES.md +113 -0
- package/docs/LARAVEL.md +111 -0
- package/docs/MCP-COMPATIBILITY.md +68 -0
- package/docs/MUTATIONS.md +93 -0
- package/docs/MYPY.md +37 -0
- package/docs/NATIVE-CI.md +96 -0
- package/docs/NUXT.md +123 -0
- package/docs/PACK-DISTRIBUTION.md +98 -0
- package/docs/PERFORMANCE.md +71 -0
- package/docs/PEST.md +36 -0
- package/docs/PHPSTAN.md +48 -0
- package/docs/PHPUNIT.md +32 -0
- package/docs/PINT.md +41 -0
- package/docs/PLAN.md +265 -0
- package/docs/PLAYWRIGHT.md +73 -0
- package/docs/POLICY-PACKS.md +106 -0
- package/docs/PRIOR-WORKFLOW-EVALUATION.md +116 -0
- package/docs/PUBLICATION.md +28 -0
- package/docs/PYTEST.md +51 -0
- package/docs/RELEASE.md +115 -0
- package/docs/RENAMING.md +55 -0
- package/docs/REVIEW-EXCHANGE.md +136 -0
- package/docs/RUBY.md +50 -0
- package/docs/RUFF.md +39 -0
- package/docs/RUNTIME-INVENTORY.md +56 -0
- package/docs/RUST.md +74 -0
- package/docs/SARIF.md +64 -0
- package/docs/STATUS.md +530 -0
- package/docs/SWIFT.md +48 -0
- package/docs/TASK-STORAGE.md +141 -0
- package/docs/TOOL-IDENTITY.md +30 -0
- package/docs/TYPESCRIPT-BUILD.md +55 -0
- package/docs/VALIDATION-TASKS.md +119 -0
- package/docs/VITEST.md +36 -0
- package/docs/VUE-ROUTER.md +130 -0
- package/docs/VUE-TSC.md +26 -0
- package/docs/WORKSPACES.md +81 -0
- package/docs/licenses/nodable-entities-3.0.0.txt +21 -0
- package/docs/measurements/client-claude-before-schema-fix-darwin-arm64-node26.json +60 -0
- package/docs/measurements/client-claude-darwin-arm64-node26.json +55 -0
- package/docs/measurements/client-codex-darwin-arm64-node26.json +175 -0
- package/docs/measurements/evaluation-corpus-repo-verifier.json +332 -0
- package/docs/measurements/evaluation-darwin-arm64-node26.json +1236 -0
- package/docs/measurements/evaluation-linux-arm64-node22.json +1236 -0
- package/docs/measurements/external-eslint-darwin-arm64-node26.json +11866 -0
- package/docs/measurements/external-eslint-linux-arm64-node22.json +11866 -0
- package/docs/measurements/external-eslint-preservation.json +1527 -0
- package/docs/measurements/external-ruff-darwin-arm64-node26.json +1031 -0
- package/docs/measurements/external-ruff-linux-arm64-node22.json +1031 -0
- package/docs/measurements/hosted-ci-52ba415.json +1005 -0
- package/docs/measurements/impact-darwin-arm64-node26.json +6685 -0
- package/docs/measurements/impact-linux-arm64-node22.json +6690 -0
- package/docs/measurements/performance-darwin-arm64-node26.json +845 -0
- package/docs/measurements/performance-linux-arm64-node22.json +845 -0
- package/docs/measurements/required-native-profiles.json +500 -0
- package/package.json +72 -0
- package/packs/actionlint.json +8 -0
- package/packs/cpp.json +8 -0
- package/packs/dotnet.json +8 -0
- package/packs/go.json +7 -0
- package/packs/java.json +8 -0
- package/packs/javascript-node.json +7 -0
- package/packs/nuxt.json +7 -0
- package/packs/php-pest.json +7 -0
- package/packs/php-phpunit.json +7 -0
- package/packs/python-pytest.json +7 -0
- package/packs/ruby.json +7 -0
- package/packs/rust.json +7 -0
- package/packs/swift.json +7 -0
- package/packs/vue-router.json +7 -0
- package/packs/vue.json +11 -0
- package/schemas/actionlint-config.schema.json +19 -0
- package/schemas/architecture-policy.schema.json +51 -0
- package/schemas/architecture-report.schema.json +123 -0
- package/schemas/architecture-summary.schema.json +82 -0
- package/schemas/clang-database.schema.json +23 -0
- package/schemas/config.schema.json +69 -0
- package/schemas/contract-bundle.schema.json +78 -0
- package/schemas/contract-report.schema.json +114 -0
- package/schemas/contract-summary.schema.json +72 -0
- package/schemas/dependency-graph.schema.json +65 -0
- package/schemas/django-config.schema.json +16 -0
- package/schemas/dotnet-config.schema.json +60 -0
- package/schemas/external-manifest.schema.json +97 -0
- package/schemas/external-reference.schema.json +10 -0
- package/schemas/external-request.schema.json +56 -0
- package/schemas/external-result.schema.json +111 -0
- package/schemas/fastapi-config.schema.json +27 -0
- package/schemas/finding-baseline.schema.json +92 -0
- package/schemas/finding-comparison-summary.schema.json +95 -0
- package/schemas/finding-comparison.schema.json +121 -0
- package/schemas/guidance-context.schema.json +34 -0
- package/schemas/guidance-report.schema.json +176 -0
- package/schemas/guidance-summary.schema.json +68 -0
- package/schemas/java-config.schema.json +24 -0
- package/schemas/junit.schema.json +69 -0
- package/schemas/laravel-config.schema.json +11 -0
- package/schemas/mutation-recipe.schema.json +31 -0
- package/schemas/mutation-report.schema.json +238 -0
- package/schemas/mutation-summary.schema.json +98 -0
- package/schemas/nuxt-config.schema.json +51 -0
- package/schemas/plan-summary.schema.json +63 -0
- package/schemas/plan.schema.json +244 -0
- package/schemas/policy-pack.schema.json +41 -0
- package/schemas/report-summary.schema.json +100 -0
- package/schemas/report.schema.json +463 -0
- package/schemas/review-assessment.schema.json +133 -0
- package/schemas/review-context-summary.schema.json +31 -0
- package/schemas/review-context.schema.json +254 -0
- package/schemas/review-receipt-summary.schema.json +104 -0
- package/schemas/review-receipt.schema.json +271 -0
- package/schemas/review-selection.schema.json +30 -0
- package/schemas/runtime-comparison-summary.schema.json +68 -0
- package/schemas/runtime-comparison.schema.json +127 -0
- package/schemas/runtime-inventory.schema.json +99 -0
- package/schemas/vue-router-config.schema.json +67 -0
- package/server.json +47 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"recordedAt": "2026-09-19T00:28:06.750Z",
|
|
4
|
+
"profile": "claude-code-health-discovery",
|
|
5
|
+
"clientVersion": "2.1.263 (Claude Code)",
|
|
6
|
+
"runtime": {
|
|
7
|
+
"node": "26.8.1",
|
|
8
|
+
"platform": "darwin",
|
|
9
|
+
"arch": "arm64"
|
|
10
|
+
},
|
|
11
|
+
"package": {
|
|
12
|
+
"name": "@stsepelin/repo-verifier",
|
|
13
|
+
"version": "0.1.0-dev.0",
|
|
14
|
+
"tarballSha256": "075056b19487a671374c60abd69299c4a12dc9bf747c619ee443b6288df29040",
|
|
15
|
+
"runtimeArtifactsSha256": "318b2ef8f73eff03133251595a6b4cd768f16041e108a59c94c87f54d441d54b"
|
|
16
|
+
},
|
|
17
|
+
"harnessSha256": "ff3664ddb54c6b32208dac1456806568241819bed95e4de116589f9fb9007609",
|
|
18
|
+
"observations": [
|
|
19
|
+
{
|
|
20
|
+
"check": "health-and-discovery",
|
|
21
|
+
"outcome": "passed",
|
|
22
|
+
"warnings": [
|
|
23
|
+
{
|
|
24
|
+
"kind": "ignored-starts_with-output-schema-format",
|
|
25
|
+
"count": 2
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"connections": [
|
|
31
|
+
{
|
|
32
|
+
"label": "readonly",
|
|
33
|
+
"starts": 1,
|
|
34
|
+
"observedExits": 1,
|
|
35
|
+
"processesStopped": true,
|
|
36
|
+
"exits": [
|
|
37
|
+
{
|
|
38
|
+
"code": 130,
|
|
39
|
+
"signal": null
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"requestedProtocol": "2025-11-25",
|
|
43
|
+
"negotiatedProtocol": "2025-11-25",
|
|
44
|
+
"tools": [
|
|
45
|
+
"architecture_validation",
|
|
46
|
+
"contract_validation",
|
|
47
|
+
"finding_comparison",
|
|
48
|
+
"mutation_experiment",
|
|
49
|
+
"project_context",
|
|
50
|
+
"review_context",
|
|
51
|
+
"review_guidance",
|
|
52
|
+
"review_receipt",
|
|
53
|
+
"runtime_comparison",
|
|
54
|
+
"validation_plan",
|
|
55
|
+
"validation_report",
|
|
56
|
+
"validation_run"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"recordedAt": "2026-09-19T00:42:13.799Z",
|
|
4
|
+
"profile": "claude-code-health-discovery",
|
|
5
|
+
"clientVersion": "2.1.263 (Claude Code)",
|
|
6
|
+
"runtime": {
|
|
7
|
+
"node": "26.8.1",
|
|
8
|
+
"platform": "darwin",
|
|
9
|
+
"arch": "arm64"
|
|
10
|
+
},
|
|
11
|
+
"package": {
|
|
12
|
+
"name": "@stsepelin/repo-verifier",
|
|
13
|
+
"version": "0.1.0-dev.0",
|
|
14
|
+
"tarballSha256": "606294107e4247d413a1233a124cc9c6ec9378192f32d41386f63255630c47f5",
|
|
15
|
+
"runtimeArtifactsSha256": "ff2534991f373526b95896780ae5cdd70c637b68a8cb939509cf4bea4d532fd5"
|
|
16
|
+
},
|
|
17
|
+
"harnessSha256": "cc92413c0d762a1dead49bd551fa8cdbff1131ea25acc9c232bd3545b5614b45",
|
|
18
|
+
"observations": [
|
|
19
|
+
{
|
|
20
|
+
"check": "health-and-discovery",
|
|
21
|
+
"outcome": "passed",
|
|
22
|
+
"warnings": []
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"connections": [
|
|
26
|
+
{
|
|
27
|
+
"label": "readonly",
|
|
28
|
+
"starts": 1,
|
|
29
|
+
"observedExits": 1,
|
|
30
|
+
"processesStopped": true,
|
|
31
|
+
"exits": [
|
|
32
|
+
{
|
|
33
|
+
"code": 130,
|
|
34
|
+
"signal": null
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"requestedProtocol": "2025-11-25",
|
|
38
|
+
"negotiatedProtocol": "2025-11-25",
|
|
39
|
+
"tools": [
|
|
40
|
+
"architecture_validation",
|
|
41
|
+
"contract_validation",
|
|
42
|
+
"finding_comparison",
|
|
43
|
+
"mutation_experiment",
|
|
44
|
+
"project_context",
|
|
45
|
+
"review_context",
|
|
46
|
+
"review_guidance",
|
|
47
|
+
"review_receipt",
|
|
48
|
+
"runtime_comparison",
|
|
49
|
+
"validation_plan",
|
|
50
|
+
"validation_report",
|
|
51
|
+
"validation_run"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"recordedAt": "2026-09-19T00:42:38.887Z",
|
|
4
|
+
"profile": "codex-app-server-direct-tools",
|
|
5
|
+
"clientVersion": "codex-cli 0.154.0",
|
|
6
|
+
"runtime": {
|
|
7
|
+
"node": "26.8.1",
|
|
8
|
+
"platform": "darwin",
|
|
9
|
+
"arch": "arm64"
|
|
10
|
+
},
|
|
11
|
+
"package": {
|
|
12
|
+
"name": "@stsepelin/repo-verifier",
|
|
13
|
+
"version": "0.1.0-dev.0",
|
|
14
|
+
"tarballSha256": "606294107e4247d413a1233a124cc9c6ec9378192f32d41386f63255630c47f5",
|
|
15
|
+
"runtimeArtifactsSha256": "ff2534991f373526b95896780ae5cdd70c637b68a8cb939509cf4bea4d532fd5"
|
|
16
|
+
},
|
|
17
|
+
"harnessSha256": "cc92413c0d762a1dead49bd551fa8cdbff1131ea25acc9c232bd3545b5614b45",
|
|
18
|
+
"observations": [
|
|
19
|
+
{
|
|
20
|
+
"check": "project_context",
|
|
21
|
+
"outcome": "passed",
|
|
22
|
+
"checks": [
|
|
23
|
+
{
|
|
24
|
+
"id": "javascript.node-test",
|
|
25
|
+
"kind": "test",
|
|
26
|
+
"ready": true
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"check": "validation_plan",
|
|
32
|
+
"outcome": "passed",
|
|
33
|
+
"checks": [
|
|
34
|
+
{
|
|
35
|
+
"id": "javascript.node-test",
|
|
36
|
+
"kind": "test",
|
|
37
|
+
"ready": true
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"check": "guidance-https-result",
|
|
43
|
+
"outcome": "passed",
|
|
44
|
+
"references": ["https://nodejs.org/api/test.html"]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"check": "default-execution-denied",
|
|
48
|
+
"outcome": "passed"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"check": "tool-cannot-grant-trust",
|
|
52
|
+
"outcome": "passed"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"check": "native-passed-and-report",
|
|
56
|
+
"outcome": "passed",
|
|
57
|
+
"validationOutcome": "passed",
|
|
58
|
+
"sourceChanged": false,
|
|
59
|
+
"checks": [
|
|
60
|
+
{
|
|
61
|
+
"id": "javascript.node-test",
|
|
62
|
+
"status": "passed",
|
|
63
|
+
"tests": {
|
|
64
|
+
"total": 1,
|
|
65
|
+
"passed": 1,
|
|
66
|
+
"failed": 0,
|
|
67
|
+
"skipped": 0
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"retainedReportEqual": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"check": "native-failed-and-report",
|
|
75
|
+
"outcome": "passed",
|
|
76
|
+
"validationOutcome": "failed",
|
|
77
|
+
"sourceChanged": false,
|
|
78
|
+
"checks": [
|
|
79
|
+
{
|
|
80
|
+
"id": "javascript.node-test",
|
|
81
|
+
"status": "failed",
|
|
82
|
+
"tests": {
|
|
83
|
+
"total": 1,
|
|
84
|
+
"passed": 0,
|
|
85
|
+
"failed": 1,
|
|
86
|
+
"skipped": 0
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"retainedReportEqual": true
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"check": "all-skipped-is-incomplete",
|
|
94
|
+
"outcome": "passed",
|
|
95
|
+
"validationOutcome": "incomplete",
|
|
96
|
+
"checks": [
|
|
97
|
+
{
|
|
98
|
+
"id": "javascript.node-test",
|
|
99
|
+
"status": "inconclusive",
|
|
100
|
+
"tests": {
|
|
101
|
+
"total": 1,
|
|
102
|
+
"passed": 0,
|
|
103
|
+
"failed": 0,
|
|
104
|
+
"skipped": 1
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"providerRequests": [
|
|
111
|
+
{
|
|
112
|
+
"method": "GET",
|
|
113
|
+
"path": "/models?client_version=0.154.0"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"inferenceRequests": 0,
|
|
117
|
+
"connections": [
|
|
118
|
+
{
|
|
119
|
+
"label": "readonly",
|
|
120
|
+
"starts": 2,
|
|
121
|
+
"observedExits": 1,
|
|
122
|
+
"processesStopped": true,
|
|
123
|
+
"exits": [
|
|
124
|
+
{
|
|
125
|
+
"code": null,
|
|
126
|
+
"signal": "SIGTERM"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"requestedProtocol": "2025-06-18",
|
|
130
|
+
"negotiatedProtocol": "2025-06-18",
|
|
131
|
+
"tools": [
|
|
132
|
+
"architecture_validation",
|
|
133
|
+
"contract_validation",
|
|
134
|
+
"finding_comparison",
|
|
135
|
+
"mutation_experiment",
|
|
136
|
+
"project_context",
|
|
137
|
+
"review_context",
|
|
138
|
+
"review_guidance",
|
|
139
|
+
"review_receipt",
|
|
140
|
+
"runtime_comparison",
|
|
141
|
+
"validation_plan",
|
|
142
|
+
"validation_report",
|
|
143
|
+
"validation_run"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"label": "trusted",
|
|
148
|
+
"starts": 2,
|
|
149
|
+
"observedExits": 1,
|
|
150
|
+
"processesStopped": true,
|
|
151
|
+
"exits": [
|
|
152
|
+
{
|
|
153
|
+
"code": null,
|
|
154
|
+
"signal": "SIGTERM"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"requestedProtocol": "2025-06-18",
|
|
158
|
+
"negotiatedProtocol": "2025-06-18",
|
|
159
|
+
"tools": [
|
|
160
|
+
"architecture_validation",
|
|
161
|
+
"contract_validation",
|
|
162
|
+
"finding_comparison",
|
|
163
|
+
"mutation_experiment",
|
|
164
|
+
"project_context",
|
|
165
|
+
"review_context",
|
|
166
|
+
"review_guidance",
|
|
167
|
+
"review_receipt",
|
|
168
|
+
"runtime_comparison",
|
|
169
|
+
"validation_plan",
|
|
170
|
+
"validation_report",
|
|
171
|
+
"validation_run"
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
}
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"id": "synthetic-evaluation-v1",
|
|
4
|
+
"provenance": "Original post-implementation development corpus; not an independently held-out sample.",
|
|
5
|
+
"cases": [
|
|
6
|
+
{
|
|
7
|
+
"id": "node-upper-bound-defect",
|
|
8
|
+
"family": "node",
|
|
9
|
+
"label": "defect",
|
|
10
|
+
"files": {
|
|
11
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
12
|
+
"value.js": "export const evaluate = value => value <= 8;\n",
|
|
13
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('upper-bound', () => { assert.equal(evaluate(8), false); });\n"
|
|
14
|
+
},
|
|
15
|
+
"engineSignal": "ERR_ASSERTION",
|
|
16
|
+
"nativeSignal": "ERR_ASSERTION"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "node-upper-bound-valid",
|
|
20
|
+
"family": "node",
|
|
21
|
+
"label": "valid",
|
|
22
|
+
"files": {
|
|
23
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
24
|
+
"value.js": "export const evaluate = value => value < 8;\n",
|
|
25
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('upper-bound', () => { assert.equal(evaluate(8), false); });\n"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "node-numeric-order-defect",
|
|
30
|
+
"family": "node",
|
|
31
|
+
"label": "defect",
|
|
32
|
+
"files": {
|
|
33
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
34
|
+
"value.js": "export const evaluate = values => values.sort();\n",
|
|
35
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('numeric-order', () => { assert.deepEqual(evaluate([11, 2, 7]), [2, 7, 11]); });\n"
|
|
36
|
+
},
|
|
37
|
+
"engineSignal": "ERR_ASSERTION",
|
|
38
|
+
"nativeSignal": "ERR_ASSERTION"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "node-numeric-order-valid",
|
|
42
|
+
"family": "node",
|
|
43
|
+
"label": "valid",
|
|
44
|
+
"files": {
|
|
45
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
46
|
+
"value.js": "export const evaluate = values => values.sort((a, b) => a - b);\n",
|
|
47
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('numeric-order', () => { assert.deepEqual(evaluate([11, 2, 7]), [2, 7, 11]); });\n"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "node-trimmed-key-defect",
|
|
52
|
+
"family": "node",
|
|
53
|
+
"label": "defect",
|
|
54
|
+
"files": {
|
|
55
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
56
|
+
"value.js": "export const evaluate = value => value.toLowerCase();\n",
|
|
57
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('trimmed-key', () => { assert.equal(evaluate(' NORTH '), 'north'); });\n"
|
|
58
|
+
},
|
|
59
|
+
"engineSignal": "ERR_ASSERTION",
|
|
60
|
+
"nativeSignal": "ERR_ASSERTION"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "node-trimmed-key-valid",
|
|
64
|
+
"family": "node",
|
|
65
|
+
"label": "valid",
|
|
66
|
+
"files": {
|
|
67
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
68
|
+
"value.js": "export const evaluate = value => value.trim().toLowerCase();\n",
|
|
69
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('trimmed-key', () => { assert.equal(evaluate(' NORTH '), 'north'); });\n"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "node-zero-default-defect",
|
|
74
|
+
"family": "node",
|
|
75
|
+
"label": "defect",
|
|
76
|
+
"files": {
|
|
77
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
78
|
+
"value.js": "export const evaluate = value => value || 12;\n",
|
|
79
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('zero-default', () => { assert.equal(evaluate(0), 0); });\n"
|
|
80
|
+
},
|
|
81
|
+
"engineSignal": "ERR_ASSERTION",
|
|
82
|
+
"nativeSignal": "ERR_ASSERTION"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "node-zero-default-valid",
|
|
86
|
+
"family": "node",
|
|
87
|
+
"label": "valid",
|
|
88
|
+
"files": {
|
|
89
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
90
|
+
"value.js": "export const evaluate = value => value ?? 12;\n",
|
|
91
|
+
"value.test.js": "import {test} from 'node:test';\nimport assert from 'node:assert/strict';\nimport {evaluate} from './value.js';\ntest('zero-default', () => { assert.equal(evaluate(0), 0); });\n"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "node-empty-tests",
|
|
96
|
+
"family": "node",
|
|
97
|
+
"label": "insufficient-evidence",
|
|
98
|
+
"files": {
|
|
99
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
100
|
+
"value.test.js": "export const marker = 1;\n"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "node-skipped-tests",
|
|
105
|
+
"family": "node",
|
|
106
|
+
"label": "insufficient-evidence",
|
|
107
|
+
"files": {
|
|
108
|
+
"package.json": "{\"private\": true, \"type\": \"module\", \"scripts\": {\"test\": \"node --test\"}}",
|
|
109
|
+
"value.test.js": "import {test} from 'node:test';\ntest.skip('deferred requirement', () => {});\n"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"id": "typescript-generic-input-defect",
|
|
114
|
+
"family": "typescript",
|
|
115
|
+
"label": "defect",
|
|
116
|
+
"files": {
|
|
117
|
+
"package.json": "{}",
|
|
118
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
119
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
120
|
+
"src/value.ts": "function identity<T>(value: T): T { return value; }\nexport const result = identity<number>('7');\n"
|
|
121
|
+
},
|
|
122
|
+
"engineSignal": "TS2345",
|
|
123
|
+
"nativeSignal": "TS2345"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "typescript-generic-input-valid",
|
|
127
|
+
"family": "typescript",
|
|
128
|
+
"label": "valid",
|
|
129
|
+
"files": {
|
|
130
|
+
"package.json": "{}",
|
|
131
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
132
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
133
|
+
"src/value.ts": "function identity<T>(value: T): T { return value; }\nexport const result = identity<number>(7);\n"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "typescript-nullable-input-defect",
|
|
138
|
+
"family": "typescript",
|
|
139
|
+
"label": "defect",
|
|
140
|
+
"files": {
|
|
141
|
+
"package.json": "{}",
|
|
142
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
143
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
144
|
+
"src/value.ts": "export const size = (value: string | null) => value.length;\n"
|
|
145
|
+
},
|
|
146
|
+
"engineSignal": "TS18047",
|
|
147
|
+
"nativeSignal": "TS18047"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "typescript-nullable-input-valid",
|
|
151
|
+
"family": "typescript",
|
|
152
|
+
"label": "valid",
|
|
153
|
+
"files": {
|
|
154
|
+
"package.json": "{}",
|
|
155
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
156
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
157
|
+
"src/value.ts": "export const size = (value: string | null) => value === null ? 0 : value.length;\n"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"id": "typescript-union-member-defect",
|
|
162
|
+
"family": "typescript",
|
|
163
|
+
"label": "defect",
|
|
164
|
+
"files": {
|
|
165
|
+
"package.json": "{}",
|
|
166
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
167
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
168
|
+
"src/value.ts": "type Item = {kind: 'ready', value: number} | {kind: 'empty'};\nexport const read = (item: Item) => item.value;\n"
|
|
169
|
+
},
|
|
170
|
+
"engineSignal": "TS2339",
|
|
171
|
+
"nativeSignal": "TS2339"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "typescript-union-member-valid",
|
|
175
|
+
"family": "typescript",
|
|
176
|
+
"label": "valid",
|
|
177
|
+
"files": {
|
|
178
|
+
"package.json": "{}",
|
|
179
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
180
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
181
|
+
"src/value.ts": "type Item = {kind: 'ready', value: number} | {kind: 'empty'};\nexport const read = (item: Item) => item.kind === 'ready' ? item.value : 0;\n"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "typescript-literal-key-defect",
|
|
186
|
+
"family": "typescript",
|
|
187
|
+
"label": "defect",
|
|
188
|
+
"files": {
|
|
189
|
+
"package.json": "{}",
|
|
190
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
191
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
192
|
+
"src/value.ts": "const values = {north: 1, south: 2};\nconst key: keyof typeof values = 'nort';\nexport {key};\n"
|
|
193
|
+
},
|
|
194
|
+
"engineSignal": "TS2820",
|
|
195
|
+
"nativeSignal": "TS2820"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "typescript-literal-key-valid",
|
|
199
|
+
"family": "typescript",
|
|
200
|
+
"label": "valid",
|
|
201
|
+
"files": {
|
|
202
|
+
"package.json": "{}",
|
|
203
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
204
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
205
|
+
"src/value.ts": "const values = {north: 1, south: 2};\nconst key: keyof typeof values = 'north';\nexport {key};\n"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"id": "typescript-no-check",
|
|
210
|
+
"family": "typescript",
|
|
211
|
+
"label": "defect",
|
|
212
|
+
"files": {
|
|
213
|
+
"package.json": "{}",
|
|
214
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
215
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\", \"noCheck\": true}, \"include\": [\"src/**/*.ts\"]}",
|
|
216
|
+
"src/value.ts": "export const amount: number = \"seven\";\n"
|
|
217
|
+
},
|
|
218
|
+
"engineSignal": "TS2322",
|
|
219
|
+
"nativeSignal": "TS2322"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "typescript-excluded-input",
|
|
223
|
+
"family": "typescript",
|
|
224
|
+
"label": "insufficient-evidence",
|
|
225
|
+
"files": {
|
|
226
|
+
"package.json": "{}",
|
|
227
|
+
"repo-verifier.json": "{\"schemaVersion\": 1, \"projects\": [{\"path\": \".\", \"checks\": [\"javascript.typescript\"]}]}",
|
|
228
|
+
"tsconfig.json": "{\"compilerOptions\": {\"strict\": true, \"types\": [], \"target\": \"ES2023\"}, \"include\": [\"src/**/*.ts\"]}",
|
|
229
|
+
"src/value.ts": "export const amount = 7;\n",
|
|
230
|
+
"outside.ts": "export const other = 8;\n"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"id": "actionlint-unknown-context-defect",
|
|
235
|
+
"family": "actionlint",
|
|
236
|
+
"label": "defect",
|
|
237
|
+
"files": {
|
|
238
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
239
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo '${{ unknowable.value }}'\n"
|
|
240
|
+
},
|
|
241
|
+
"engineSignal": "actionlint/expression",
|
|
242
|
+
"nativeSignal": "\"kind\":\"expression\""
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "actionlint-unknown-context-valid",
|
|
246
|
+
"family": "actionlint",
|
|
247
|
+
"label": "valid",
|
|
248
|
+
"files": {
|
|
249
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
250
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo '${{ github.event_name }}'\n"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "actionlint-job-dependency-defect",
|
|
255
|
+
"family": "actionlint",
|
|
256
|
+
"label": "defect",
|
|
257
|
+
"files": {
|
|
258
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
259
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n needs: absent\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n"
|
|
260
|
+
},
|
|
261
|
+
"engineSignal": "actionlint/job-needs",
|
|
262
|
+
"nativeSignal": "\"kind\":\"job-needs\""
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"id": "actionlint-job-dependency-valid",
|
|
266
|
+
"family": "actionlint",
|
|
267
|
+
"label": "valid",
|
|
268
|
+
"files": {
|
|
269
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
270
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "actionlint-runner-name-defect",
|
|
275
|
+
"family": "actionlint",
|
|
276
|
+
"label": "defect",
|
|
277
|
+
"files": {
|
|
278
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
279
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-nonexistent\n steps:\n - run: echo ready\n"
|
|
280
|
+
},
|
|
281
|
+
"engineSignal": "actionlint/runner-label",
|
|
282
|
+
"nativeSignal": "\"kind\":\"runner-label\""
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"id": "actionlint-runner-name-valid",
|
|
286
|
+
"family": "actionlint",
|
|
287
|
+
"label": "valid",
|
|
288
|
+
"files": {
|
|
289
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
290
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "actionlint-permission-value-defect",
|
|
295
|
+
"family": "actionlint",
|
|
296
|
+
"label": "defect",
|
|
297
|
+
"files": {
|
|
298
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
299
|
+
".github/workflows/check.yml": "permissions:\n contents: execute\non: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n"
|
|
300
|
+
},
|
|
301
|
+
"engineSignal": "actionlint/permissions",
|
|
302
|
+
"nativeSignal": "\"kind\":\"permissions\""
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"id": "actionlint-permission-value-valid",
|
|
306
|
+
"family": "actionlint",
|
|
307
|
+
"label": "valid",
|
|
308
|
+
"files": {
|
|
309
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
310
|
+
".github/workflows/check.yml": "permissions:\n contents: read\non: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"id": "actionlint-missing-local-action",
|
|
315
|
+
"family": "actionlint",
|
|
316
|
+
"label": "insufficient-evidence",
|
|
317
|
+
"files": {
|
|
318
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
319
|
+
".github/workflows/check.yml": "on: push\njobs:\n inspect:\n runs-on: ubuntu-latest\n steps:\n - uses: ./unprepared-action\n"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "actionlint-yaml-alias",
|
|
324
|
+
"family": "actionlint",
|
|
325
|
+
"label": "unsupported-profile",
|
|
326
|
+
"files": {
|
|
327
|
+
"repo-verifier.actionlint.json": "{\"schemaVersion\": 1, \"runnerLabels\": [], \"variables\": []}",
|
|
328
|
+
".github/workflows/check.yml": "on: push\njobs:\n first: &job\n runs-on: ubuntu-latest\n steps:\n - run: echo ready\n second: *job\n"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
}
|