@mstar-harness/engine 2.4.1 → 3.0.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/dist/core.d.ts CHANGED
@@ -16,7 +16,7 @@ export declare const SEVERITY_ORDER: readonly Severity[];
16
16
  /**
17
17
  * Result of one harness validation check.
18
18
  *
19
- * Shape per `.harness/references/skill-programmatic-roadmap.md` §8.5 C4:
19
+ * Shape per roadmap §8.5 C4:
20
20
  * `{ ok: boolean, severity, code, message, fix? }`. v1 enforcement is
21
21
  * non-blocking: callers (CLI output readers, host hooks) surface it as a
22
22
  * warning, never a hard stop.
@@ -42,7 +42,7 @@ export type ExecutionModeToNResult = GateResult & {
42
42
  */
43
43
  export declare function parseAssignmentFields(assignmentText: string): AssignmentFields;
44
44
  /** Where the `Enforcement` flag was declared (roadmap §8.5 C4/D2). */
45
- export type EnforcementSource = "assignment" | "compass" | "none";
45
+ export type EnforcementSource = "assignment" | "compass" | "mstarc" | "none";
46
46
  /** Parsed hard-enforcement flag. `hard: false` + `source: none` = flag absent. */
47
47
  export type EnforcementFlag = {
48
48
  hard: boolean;