mjolnir-qa 0.5.7 → 0.5.9
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/CHANGELOG.md +15 -0
- package/dist/cli.d.mts +2 -2
- package/dist/cli.mjs +644 -9
- package/dist/mcp/stdio.d.mts +1 -0
- package/dist/mcp/stdio.mjs +18983 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -74,6 +74,21 @@ scan`. Unknown categories are a usage error (exit 10).
|
|
|
74
74
|
- help registry gained `why`, `handoff`, `install` and the new flags;
|
|
75
75
|
site/reference/cli.md documents the handoff trust model.
|
|
76
76
|
|
|
77
|
+
## [0.5.9] — 2026-09-06
|
|
78
|
+
|
|
79
|
+
### Changes since 0.5.8
|
|
80
|
+
|
|
81
|
+
- Merge pull request #42 from Sergey-Bar/eng/lane-a-qamodel-2.3
|
|
82
|
+
- docs: regenerate all generated artifacts under the Lane A rev-2 rules
|
|
83
|
+
- feat: Lane A — hard-sleep JV/CS family migrated to the QA-model substrate (blueprint §10)
|
|
84
|
+
|
|
85
|
+
## [0.5.8] — 2026-09-06
|
|
86
|
+
|
|
87
|
+
### Changes since 0.5.7
|
|
88
|
+
|
|
89
|
+
- Merge pull request #41 from Sergey-Bar/eng/mcp-transport-2.2
|
|
90
|
+
- feat: MCP stdio transport — pure transport over the machine contract (blueprint §21, Phase 4)
|
|
91
|
+
|
|
77
92
|
## [0.5.7] — 2026-09-06
|
|
78
93
|
|
|
79
94
|
### Changes since 0.5.6
|
package/dist/cli.d.mts
CHANGED
|
@@ -301,7 +301,7 @@ interface Workspace {
|
|
|
301
301
|
* - "RUNTIME": execution evidence drives the decision (reserved —
|
|
302
302
|
* Phase 6).
|
|
303
303
|
*/
|
|
304
|
-
type DetectionStrategy = "LEXICAL" | "AST" | "SEMANTIC" | "FRAMEWORK" | "RUNTIME";
|
|
304
|
+
type DetectionStrategy = "LEXICAL" | "AST" | "SEMANTIC" | "QA_MODEL" | "FRAMEWORK" | "RUNTIME";
|
|
305
305
|
interface RuleMeta {
|
|
306
306
|
/** Frozen public API — never reused (§18.4). */
|
|
307
307
|
id: string;
|
|
@@ -699,7 +699,7 @@ declare const runScan: typeof runScan$1, buildUniversalRules: typeof buildUniver
|
|
|
699
699
|
* `scripts/sync-sarif-version.cjs` on release and guarded by
|
|
700
700
|
* `tests/version-consistency.spec.ts` locally.
|
|
701
701
|
*/
|
|
702
|
-
declare const CLI_VERSION = "0.5.
|
|
702
|
+
declare const CLI_VERSION = "0.5.9";
|
|
703
703
|
/** A usage-error detail: the offending token, when one exists. */
|
|
704
704
|
interface UsageErrorDetail {
|
|
705
705
|
/** The unknown flag or rejected value (e.g. `--nope`, `loud`). */
|