@mstar-harness/engine 3.8.1 → 3.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.d.ts +8 -0
- package/dist/engine.js +2 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -109,3 +109,11 @@ export declare function harnessVersionFrom(moduleDir: string): string;
|
|
|
109
109
|
* single-version invariant keeps root, engine, cli and opencode aligned.
|
|
110
110
|
*/
|
|
111
111
|
export declare function readHarnessVersion(): string;
|
|
112
|
+
/**
|
|
113
|
+
* Exact `dsh-llm-fallbacks` version shared by the workspace pin and the
|
|
114
|
+
* published CLI `init --target dsh` install spec. Two literals only: this
|
|
115
|
+
* constant and `packages/dsh/package.json` `devDependencies["dsh-llm-fallbacks"]`.
|
|
116
|
+
* A drift test asserts they match. CLI src must not import JSON (no
|
|
117
|
+
* resolveJsonModule; published dist cannot see the repo).
|
|
118
|
+
*/
|
|
119
|
+
export declare const DSH_LLM_FALLBACKS_VERSION = "0.5.2";
|
package/dist/engine.js
CHANGED
|
@@ -81,6 +81,7 @@ function harnessVersionFrom(moduleDir) {
|
|
|
81
81
|
function readHarnessVersion() {
|
|
82
82
|
return harnessVersionFrom(dirname(fileURLToPath(import.meta.url)));
|
|
83
83
|
}
|
|
84
|
+
var DSH_LLM_FALLBACKS_VERSION = "0.5.2";
|
|
84
85
|
// src/mstarc.ts
|
|
85
86
|
import { readFileSync as readFileSync2, statSync } from "node:fs";
|
|
86
87
|
import { dirname as dirname2, isAbsolute, join as join2, relative, resolve as resolve2 } from "node:path";
|
|
@@ -6823,6 +6824,7 @@ export {
|
|
|
6823
6824
|
AUDIT_PRIORITIES,
|
|
6824
6825
|
AUDIT_RISKS,
|
|
6825
6826
|
DEV_TRACK_PARAMS,
|
|
6827
|
+
DSH_LLM_FALLBACKS_VERSION,
|
|
6826
6828
|
FIVE_QUESTION_SECTIONS,
|
|
6827
6829
|
GIT_CAPTURE_MAX_BYTES,
|
|
6828
6830
|
KNOWLEDGE_BUG_PROBLEM_TYPES,
|
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
* 5-question bodies and resolves skill-relative asset paths.
|
|
28
28
|
*/
|
|
29
29
|
export type { GateResult, Severity, ValidationResult } from "./core.js";
|
|
30
|
-
export { SEVERITY_ORDER, applyEnforcement, readHarnessVersion, readJson, resolveProjectRoot, writeJson } from "./core.js";
|
|
30
|
+
export { DSH_LLM_FALLBACKS_VERSION, SEVERITY_ORDER, applyEnforcement, readHarnessVersion, readJson, resolveProjectRoot, writeJson } from "./core.js";
|
|
31
31
|
export type { HarnessKind, ResolveHarnessDirOptions, ResolveSpecsDirOptions, } from "./path.js";
|
|
32
32
|
export type { MstarcConfig } from "./mstarc.js";
|
|
33
33
|
export { MSTARC_FILE, MSTARC_HARNESS_DIR_KEY, MSTARC_PROJECT_DIR_KEY, MSTARC_SECTION, MSTARC_WORKFLOW_DIR_KEY, findMstarc, parseMstarc, } from "./mstarc.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mstar-harness/engine",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.2",
|
|
4
4
|
"description": "Morning Star Harness Workflow Engine — deterministic workflow enforcement library (path, status, lease, dispatch, sdd, iteration, lint gates).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|