arkgate 4.8.13 → 4.8.15
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 +219 -4
- package/README.md +33 -22
- package/SECURITY.md +5 -3
- package/bin/ark-check-runtime.mjs +25 -57
- package/bin/ark-mcp-runtime.mjs +111 -2
- package/bin/ark-shared.mjs +140 -11
- package/bin/ark.mjs +7 -25
- package/bin/lib/adr-presence.mjs +97 -0
- package/bin/lib/agent-projection-formatters.mjs +2 -0
- package/bin/lib/agent-skills-package.mjs +241 -8
- package/bin/lib/analysis-completeness.mjs +38 -2
- package/bin/lib/analysis-engine.mjs +6 -6
- package/bin/lib/architecture-scan.mjs +33 -5
- package/bin/lib/ark-order-doctor.mjs +7 -1
- package/bin/lib/ark-order-report.mjs +2 -1
- package/bin/lib/ark-run-doctor.mjs +6 -0
- package/bin/lib/ark-run-report.mjs +6 -2
- package/bin/lib/arkrules-sensors.mjs +81 -0
- package/bin/lib/baseline-key.mjs +4 -1
- package/bin/lib/check-args.mjs +52 -2
- package/bin/lib/ci-and-commands.mjs +7 -2
- package/bin/lib/config-contract.mjs +64 -1
- package/bin/lib/design-smells.mjs +21 -1
- package/bin/lib/diagnostic-catalog.mjs +5 -3
- package/bin/lib/doctor-advisories.mjs +109 -17
- package/bin/lib/doctor-human.mjs +20 -6
- package/bin/lib/doctor-next-actions.mjs +14 -0
- package/bin/lib/doctor-plan.mjs +32 -2
- package/bin/lib/enforcement-honesty.mjs +47 -2
- package/bin/lib/first-run-help.mjs +19 -3
- package/bin/lib/gate-files.mjs +40 -3
- package/bin/lib/host-support-matrix.mjs +9 -1
- package/bin/lib/html-report-depth.mjs +2 -0
- package/bin/lib/html-report.mjs +13 -2
- package/bin/lib/import-resolve.mjs +74 -13
- package/bin/lib/improvement-compass-doctor.mjs +6 -1
- package/bin/lib/improvement-compass-map.mjs +3 -1
- package/bin/lib/install-migrate.mjs +23 -0
- package/bin/lib/layer-description.mjs +90 -8
- package/bin/lib/mcp-hook-payload.mjs +57 -1
- package/bin/lib/no-domain-frontend.mjs +91 -0
- package/bin/lib/presets.mjs +3 -4
- package/bin/lib/product-copy.mjs +19 -0
- package/bin/lib/projected-governed-coverage.mjs +114 -0
- package/bin/lib/recommend-cli.mjs +54 -0
- package/bin/lib/remediation.mjs +6 -2
- package/bin/lib/resolved-candidate-facts.mjs +225 -100
- package/bin/lib/rules-under-contract.mjs +117 -2
- package/bin/lib/scan-files.mjs +39 -0
- package/bin/lib/snippet-analysis.mjs +14 -8
- package/bin/lib/start-preview.mjs +8 -2
- package/bin/lib/states-transitions-presence.mjs +212 -0
- package/bin/lib/status-command.mjs +2 -0
- package/bin/lib/status-transition-catalog.mjs +410 -0
- package/bin/lib/team-parliament-io.mjs +10 -0
- package/bin/lib/upgrade-whats-new.mjs +3 -3
- package/bin/lib/violations.mjs +43 -1
- package/bin/lib/write-path-capabilities.mjs +20 -5
- package/bin/lib/write-path-detect.mjs +27 -2
- package/dist/{configTypes-j7so8B4O.d.ts → configTypes-Dt3DpVbd.d.ts} +19 -0
- package/dist/{diagnosticCatalog-DA565Lja.d.ts → diagnosticCatalog-BEg85XlE.d.ts} +3 -3
- package/dist/eslint/index.cjs +4 -4
- package/dist/eslint/index.d.ts +1 -1
- package/dist/eslint/index.js +4 -4
- package/dist/index.cjs +31 -31
- package/dist/index.d.ts +126 -19
- package/dist/index.js +31 -31
- package/dist/nestjs/index.cjs +5 -5
- package/dist/nestjs/index.d.ts +3 -3
- package/dist/nestjs/index.js +5 -5
- package/dist/runtime/index.cjs +15 -15
- package/dist/runtime/index.d.ts +6 -6
- package/dist/runtime/index.js +15 -15
- package/dist/{types-Djbs3KjE.d.ts → types-CN9tVMPz.d.ts} +3 -1
- package/dist/{types-tGhZUiGX.d.ts → types-TBiv0WHL.d.ts} +1 -1
- package/docs/README.md +8 -6
- package/docs/agent-guide.md +35 -17
- package/docs/ai-gates.md +13 -4
- package/docs/arkorder.md +11 -4
- package/docs/brownfield-adoption.md +4 -1
- package/docs/configuration.md +63 -14
- package/docs/develop.md +4 -1
- package/docs/diagnostics.md +30 -10
- package/docs/enthusiast/README.md +6 -1
- package/docs/enthusiast/how-to-agent-gates.md +5 -0
- package/docs/enthusiast/how-to-gallery-starter.md +2 -1
- package/docs/enthusiast/how-to-pick-shape.md +1 -1
- package/docs/package-surface.md +10 -6
- package/docs/product-voice.md +32 -6
- package/docs/threat-model.md +2 -2
- package/docs/typescript-support.md +3 -3
- package/docs/use.md +23 -11
- package/package.json +1 -1
- package/schemas/ark.config.schema.json +23 -2
- package/server.json +2 -2
- package/templates/agent-skills/README.md +7 -4
- package/templates/agent-skills/ark-adopt/SKILL.md +91 -6
- package/templates/agent-skills/ark-architect/SKILL.md +5 -18
- package/templates/agent-skills/ark-autopilot/SKILL.md +14 -6
- package/templates/agent-skills/ark-contract/SKILL.md +9 -20
- package/templates/agent-skills/ark-coverage/SKILL.md +13 -9
- package/templates/agent-skills/ark-explain/SKILL.md +11 -5
- package/templates/agent-skills/ark-explore/SKILL.md +39 -5
- package/templates/agent-skills/ark-fix/SKILL.md +15 -20
- package/templates/agent-skills/ark-loop/SKILL.md +14 -20
- package/templates/agent-skills/ark-order/SKILL.md +200 -0
- package/templates/agent-skills/ark-place/SKILL.md +49 -11
- package/templates/agent-skills/ark-runtime/SKILL.md +21 -6
- package/templates/agent-skills/ark-think/SKILL.md +24 -126
- package/templates/agent-skills/ark-upgrade/SKILL.md +14 -3
- package/templates/arkrules/DomainModel.json +14 -1
- package/templates/skills/ark-adopt.md +91 -6
- package/templates/skills/ark-architect.md +5 -18
- package/templates/skills/ark-autopilot.md +14 -6
- package/templates/skills/ark-contract.md +9 -20
- package/templates/skills/ark-coverage.md +13 -9
- package/templates/skills/ark-explain.md +11 -5
- package/templates/skills/ark-explore.md +39 -5
- package/templates/skills/ark-fix.md +15 -20
- package/templates/skills/ark-loop.md +14 -20
- package/templates/skills/ark-order.md +200 -0
- package/templates/skills/ark-place.md +49 -11
- package/templates/skills/ark-runtime.md +21 -6
- package/templates/skills/ark-think.md +24 -126
- package/templates/skills/ark-upgrade.md +14 -3
- package/templates/tests/ark-adoption-gaps.test.ts +5 -4
package/dist/runtime/index.cjs
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
"use strict";var
|
|
2
|
-
`)}function
|
|
1
|
+
"use strict";var Oa=Object.create;var Gt=Object.defineProperty;var Pa=Object.getOwnPropertyDescriptor;var _a=Object.getOwnPropertyNames;var Ta=Object.getPrototypeOf,Na=Object.prototype.hasOwnProperty;var i=(e,t)=>Gt(e,"name",{value:t,configurable:!0});var Vt=(e,t,n)=>()=>{if(n)throw n[0];try{return e&&(t=e(e=0)),t}catch(r){throw n=[r],r}};var ss=(e,t)=>{for(var n in t)Gt(e,n,{get:t[n],enumerable:!0})},is=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of _a(t))!Na.call(e,o)&&o!==n&&Gt(e,o,{get:()=>t[o],enumerable:!(r=Pa(t,o))||r.enumerable});return e};var Da=(e,t,n)=>(n=e!=null?Oa(Ta(e)):{},is(t||!e||!e.__esModule?Gt(n,"default",{value:e,enumerable:!0}):n,e)),La=e=>is(Gt({},"__esModule",{value:!0}),e);function Go(e,t){return e<t?-1:e>t?1:0}function hd(e){return[...new Set(e)].sort(Go)}function On(e){if(!Array.isArray(e))return[];let t=[];for(let n of e)typeof n=="string"&&n.length>0&&t.push(n);return hd(t)}function Rd(e){if(e===null)return null;if(typeof e=="string"||typeof e=="boolean"||typeof e=="number"&&Number.isFinite(e))return e}function Ad(e){return typeof e=="string"&&yd.has(e)?e:"singleton"}function pa(e){if(e===null||typeof e!="object"||Array.isArray(e))return;let t={};for(let n of Object.keys(e).sort(Go)){if(n.length===0)continue;let r=Rd(e[n]);r!==void 0&&(t[n]=r)}return Object.keys(t).length>0?t:void 0}function kd(e){if(e===null||typeof e!="object"||Array.isArray(e))return;let t=e,n={};typeof t.label=="string"&&t.label.length>0&&(n.label=t.label),typeof t.architectureKind=="string"&&t.architectureKind.length>0&&(n.architectureKind=t.architectureKind);let r=On(t.tags);r.length>0&&(n.tags=r),typeof t.group=="string"&&t.group.length>0&&(n.group=t.group);let o=pa(t.metadata);return o&&(n.metadata=o),Object.keys(n).length>0?n:void 0}function Vo(e){if(e===null||typeof e!="object"||Array.isArray(e))return;let t=e,n=typeof t.id=="string"?t.id.trim():"";if(!n)return;let r={id:n,lifetime:Ad(t.lifetime),uses:On(t.uses),reactsTo:On(t.reactsTo),raises:On(t.raises),sends:On(t.sends)},o=kd(t.extendedInfo);return o&&(r.extendedInfo=o),r}function bd(e){return pa(e)}function jo(e){if(e===null||typeof e!="object"||Array.isArray(e))return;let t=e,n=typeof t.xiHash=="string"?t.xiHash.trim():"";if(!n)return;let r=t.event;if(r===null||typeof r!="object"||Array.isArray(r))return;let o=r,s=typeof o.kind=="string"?o.kind.trim():"";if(!s)return;let a=t.residual;if(a===null||typeof a!="object"||Array.isArray(a))return;let l=a,c=typeof l.kind=="string"&&Id.has(l.kind)?l.kind:void 0;if(!c)return;let p={kind:s},f=bd(o.payload);f&&(p.payload=f);let y={kind:c};return typeof l.reasonCode=="string"&&l.reasonCode.length>0&&(y.reasonCode=l.reasonCode),typeof l.eventId=="string"&&l.eventId.length>0&&(y.eventId=l.eventId),typeof l.target=="string"&&l.target.length>0&&(y.target=l.target),{xiHash:n,event:p,residual:y}}function Ed(e){if(!Array.isArray(e))return[];let t=[];for(let n of e){let r=jo(n);r&&t.push(r)}return t}function me(e){let t=typeof e.kernelInstanceId=="string"?e.kernelInstanceId:"",n=Array.isArray(e.components)?e.components:[],r=new Set,o=[];for(let a of n){let l=Vo(a);!l||r.has(l.id)||(r.add(l.id),o.push(l))}o.sort((a,l)=>Go(a.id,l.id));let s=Ed(e.decisionTape);return{schemaVersion:"1.0",kernelInstanceId:t,components:o,...s.length>0?{decisionTape:s}:{}}}function Bo(e,t){let n=jo(t),r=e.decisionTape??[],o=n?[...r,n]:[...r];return{schemaVersion:e.schemaVersion,kernelInstanceId:e.kernelInstanceId,components:e.components,...o.length>0?{decisionTape:o}:{}}}var Pn,br,ua,yd,Id,xt=Vt(()=>{"use strict";Pn="1.0",br=["singleton","transient"],ua=["absorb","escalate_up","hold"],yd=new Set(br);i(Go,"compare");i(hd,"uniqueSorted");i(On,"nameList");i(Rd,"jsonPrimitive");i(Ad,"closedLifetime");i(pa,"sanitizeMetadata");i(kd,"sanitizeArkRunExtendedInfo");i(Vo,"sanitizeArkRunComponent");Id=new Set(ua);i(bd,"sanitizeTapePayload");i(jo,"sanitizeDecisionTapeRecord");i(Ed,"sanitizeDecisionTape");i(me,"buildDependencyInformationPackage");i(Bo,"appendDecisionTape")});function Nn(e,t){return e<t?-1:e>t?1:0}function Yo(e){return[...new Set(e)].sort(Nn)}function ga(){return{tokens:[],ids:[],labels:[],tags:[],groups:[],architectureKinds:[]}}function Xo(e){return e.tokens.length+e.ids.length+e.labels.length+e.tags.length+e.groups.length+e.architectureKinds.length>0}function ye(e,t){if(e==null||e==="")return[];if(typeof e=="string")return Yo(e.split(",").map(r=>r.trim()).filter(r=>r.length>0));if(!Array.isArray(e))throw new J(t);let n=[];for(let r of e){if(typeof r!="string")throw new J(t);let o=r.trim();o.length>0&&n.push(o)}return Yo(n)}function Ra(e,t){if(t==="*")return e.length>0;if(!t.includes("*"))return e===t;let n="^";for(let r of t)r==="*"?n+=".*":/[.*+?^${}()|[\]\\]/.test(r)?n+=`\\${r}`:n+=r;return n+="$",new RegExp(n).test(e)}function _n(e,t){return e?t.some(n=>Ra(e,n)):!1}function Aa(e){if(e==null||e==="")return Cr;if(typeof e=="string"&&vd.has(e))return e;throw new J("slice")}function ka(e){if(e==null||e==="")return null;if(typeof e=="string"&&/^(0|[1-9]\d*)$/.test(e))return Number(e);if(typeof e=="number"&&Number.isInteger(e)&&e>=0)return e;throw new J("degreesOfSeparation")}function ma(e,t){if(e==null||e==="")return ga();if(typeof e=="string"||Array.isArray(e))return{...ga(),tokens:ye(e,t)};if(typeof e!="object")throw new J(t);let n=e;for(let r of Object.keys(n))if(!wd.has(r))throw new J(t);return{tokens:[],ids:ye(n.ids,t),labels:ye(n.labels,t),tags:ye(n.tags,t),groups:ye(n.groups,t),architectureKinds:ye(n.architectureKinds,t)}}function Ln(e={}){if(e==null||e==="")return Ln({});if(typeof e!="object"||Array.isArray(e))throw new J("slice","ArkRun graph query must be an object.");let t=e;for(let n of Object.keys(t))if(!Sd.has(n))throw new J("slice",`ArkRun graph query key "${n}" is not closed.`);return{slice:Aa(t.slice),nodeIds:ye(t.nodeIds,"nodeIds"),degreesOfSeparation:ka(t.degreesOfSeparation),include:ma(t.include,"include"),exclude:ma(t.exclude,"exclude")}}function Fn(e){let t={};e.slice&&(t.slice=Aa(e.slice));let n=ye(e.nodeIds??void 0,"nodeIds");n.length>0&&(t.nodeIds=n);let r=ka(e.degreesOfSeparation??void 0);r!==null&&(t.degreesOfSeparation=r);let o=ye(e.include??void 0,"include");o.length>0&&(t.include=o);let s=ye(e.exclude??void 0,"exclude");return s.length>0&&(t.exclude=s),t}function Cd(e){let t=[e.id];return e.label&&t.push(e.label),e.group&&t.push(e.group),e.architectureKind&&t.push(e.architectureKind),e.tags&&t.push(...e.tags),t}function ya(e,t){if(!Xo(t))return!0;let n=Cd(e);return t.tokens.some(r=>n.some(o=>Ra(o,r)))||_n(e.id,t.ids)||_n(e.label,t.labels)||e.tags?.some(r=>_n(r,t.tags))||_n(e.group,t.groups)?!0:_n(e.architectureKind,t.architectureKinds)}function xd(e){if(e&&typeof e=="object"&&!Array.isArray(e)){let t=e;return me({kernelInstanceId:t.kernelInstanceId,components:t.components})}return me({})}function Od(e){let t={id:e.id,kind:"component",lifetime:e.lifetime},n=e.extendedInfo;return n?.label&&(t.label=n.label),n?.group&&(t.group=n.group),n?.architectureKind&&(t.architectureKind=n.architectureKind),n?.tags&&n.tags.length>0&&(t.tags=[...n.tags]),t}function vr(e){return{id:e,kind:"interaction"}}function Tn(e,t){let n=e.get(t.id);(!n||n.kind==="interaction"&&t.kind==="component")&&e.set(t.id,t)}function Sr(e,t,n,r,o){let s=`${n}\0${o}\0${r}`;t.has(s)||(t.add(s),e.push({from:n,to:r,kind:o}))}function Pd(e,t){let n=new Map,r=[],o=new Set;for(let s of e){if(Tn(n,Od(s)),t==="technical"){for(let a of s.uses)Tn(n,n.get(a)??vr(a)),Sr(r,o,s.id,a,"uses");continue}for(let a of s.raises)Tn(n,n.get(a)??vr(a)),Sr(r,o,s.id,a,"raises");for(let a of s.reactsTo)Tn(n,n.get(a)??vr(a)),Sr(r,o,a,s.id,"reactsTo");for(let a of s.sends)Tn(n,n.get(a)??vr(a)),Sr(r,o,s.id,a,"sends")}return{nodes:n,edges:r}}function _d(e){let t=new Map,n=i((r,o)=>{let s=t.get(r);s?s.push(o):t.set(r,[o])},"push");for(let r of e)n(r.from,r.to),n(r.to,r.from);return t}function Td(e,t,n,r){let o=t.filter(l=>e.has(l));if(o.length===0)return new Set;let s=new Set,a=o.map(l=>({id:l,depth:0}));for(;a.length>0;){let l=a.shift();if(!(!l||s.has(l.id))&&(s.add(l.id),!(n!==null&&l.depth>=n)))for(let c of r.get(l.id)??[])!s.has(c)&&e.has(c)&&a.push({id:c,depth:l.depth+1})}return s}function Dn(e){let t=e.replace(/[^A-Za-z0-9_]/g,"_");return/^[A-Za-z_]/.test(t)?t:`n_${t}`}function ha(e){return e.replace(/\\/g,"\\\\").replace(/"/g,"#quot;").replace(/]/g,"#93;")}function Nd(e){let t=new Set,n=new Map;for(let r of e){let o=Dn(r),s=o,a=2;for(;t.has(s);)s=`${o}_${a}`,a+=1;t.add(s),n.set(r,s)}return n}function Or(e){let t=e.slice==="technical"?"TD":"LR",n=e.nodes.map(l=>l.id),r=Nd(n),o=Yo(e.nodes.map(l=>l.group).filter(l=>!!l)),s=[`flowchart ${t}`],a=i((l,c)=>{let p=r.get(l.id)??Dn(l.id),f=ha(l.label??l.id);s.push(`${c}${p}["${f}"]`)},"emitNode");for(let l of o){let c=Dn(`group_${l}`);s.push(` subgraph ${c}["${ha(l)}"]`);for(let p of e.nodes)p.group===l&&a(p," ");s.push(" end")}for(let l of e.nodes)l.group||a(l," ");for(let l of e.edges){let c=r.get(l.from)??Dn(l.from),p=r.get(l.to)??Dn(l.to);s.push(` ${c} -->|${l.kind}| ${p}`)}return s.join(`
|
|
2
|
+
`)}function Dd(e,t,n){let r=new Set(e.keys());if(Xo(n.include)&&(r=new Set([...r].filter(l=>{let c=e.get(l);return c!==void 0&&ya(c,n.include)}))),Xo(n.exclude))for(let l of[...r]){let c=e.get(l);c&&ya(c,n.exclude)&&r.delete(l)}let o=t.filter(l=>r.has(l.from)&&r.has(l.to));n.nodeIds.length>0&&(r=Td(r,n.nodeIds,n.degreesOfSeparation,_d(o)));let s=[...r].sort(Nn).map(l=>e.get(l)).filter(l=>!!l),a=o.filter(l=>r.has(l.from)&&r.has(l.to)).sort((l,c)=>Nn(l.from,c.from)||Nn(l.kind,c.kind)||Nn(l.to,c.to));return{nodes:s,edges:a}}function $n(e={},t={}){let n=xd(e),r=Ln(t),o=Pd(n.components,r.slice),s=Dd(o.nodes,o.edges,r),a={schemaVersion:wr,kernelInstanceId:n.kernelInstanceId,slice:r.slice,query:r,nodes:s.nodes,edges:s.edges,mermaid:""};return a.mermaid=Or(a),a}var wr,Cr,xr,Zo,Jo,Qo,J,vd,Sd,wd,Pr=Vt(()=>{"use strict";xt();wr="1.0",Cr="process",xr=["process","technical"],Zo=["component","interaction"],Jo=["raises","reactsTo","sends"],Qo=["uses"],J=class extends Error{static{i(this,"InvalidArkRunGraphQueryError")}option;constructor(t,n){super(n??(t==="slice"?'ArkRun graph slice must be "process" or "technical".':t==="degreesOfSeparation"?"ArkRun graph degreesOfSeparation must be a non-negative integer.":`ArkRun graph ${t} is not a closed query.`)),this.name="InvalidArkRunGraphQueryError",this.option=t}},vd=new Set(xr),Sd=new Set(["slice","nodeIds","degreesOfSeparation","include","exclude"]),wd=new Set(["ids","labels","tags","groups","architectureKinds"]);i(Nn,"compare");i(Yo,"uniqueSorted");i(ga,"emptyMatch");i(Xo,"matchHasCriteria");i(ye,"nameList");i(Ra,"globMatch");i(_n,"anyGlob");i(Aa,"closedSlice");i(ka,"closedDegrees");i(ma,"closedMatch");i(Ln,"closeArkRunGraphQuery");i(Fn,"arkRunGraphQueryFromSearchParams");i(Cd,"nodeFields");i(ya,"nodeMatches");i(xd,"asPackage");i(Od,"componentNode");i(vr,"interactionNode");i(Tn,"addNode");i(Sr,"addEdge");i(Pd,"buildSlice");i(_d,"adjacency");i(Td,"neighborhood");i(Dn,"mermaidSafeId");i(ha,"mermaidLabel");i(Nd,"uniqueMermaidIds");i(Or,"formatArkRunGraphMermaid");i(Dd,"filterGraph");i($n,"requestArkRunGraph")});function _r(e){if(e===void 0)return"local";if(typeof e=="string"&&Ld.has(e))return e;throw new nt("transport")}function Tr(e){if(e===void 0)return!0;if(e===!0||e===!1)return e;throw new nt("ephemeral")}function Mn(e){let t=_r(e.transport),n=Tr(e.ephemeral),r=t==="broker"&&e.brokerBound!==!0,o=t==="broker"&&!r?"broker":"local",s=t==="localBlocking";return{transport:t,ephemeral:n,deliveredVia:o,fallbackToLocal:r,notifySubscribers:o==="local",awaitHandlers:s,awaitHandoff:n||s}}var Ot,rt,Ld,nt,Kn=Vt(()=>{"use strict";Ot=["local","localBlocking","broker"],rt=!0,Ld=new Set(Ot),nt=class extends Error{static{i(this,"InvalidArkRunSendOptionError")}option;constructor(t){super(t==="transport"?'ArkRun transport must be "local", "localBlocking", or "broker".':"ArkRun ephemeral must be a boolean."),this.name="InvalidArkRunSendOptionError",this.option=t}};i(_r,"closedArkRunTransportKind");i(Tr,"closedArkRunEphemeral");i(Mn,"resolveArkRunSendPlan")});function Un(e){return e==="production"}function $d(e){let t=e.split(".");if(t.length!==4)return;let n=[];for(let r of t){if(!/^\d{1,3}$/.test(r))return;let o=Number(r);if(o>255)return;n.push(o)}return n}function Ia(e){if(e.startsWith("[::ffff:")&&e.endsWith("]"))return e.slice(8,-1);if(e.startsWith("::ffff:"))return e.slice(7)}function st(e){if(typeof e!="string")return!1;let t=e.trim().toLowerCase();if(t==="localhost"||t==="::1"||t==="[::1]")return!0;let n=Ia(t);if(n)return st(n);let r=$d(t);return r!==void 0&&r[0]===127}function ba(e){if(e===void 0)return Hn;if(typeof e!="string")throw new se(String(e));let t=e.trim();if(Fd.has(t.toLowerCase())||!st(t))throw new se(t);let n=t.toLowerCase();if(n==="localhost")return Hn;if(n==="[::1]")return"::1";let r=Ia(n);return r?ba(r):n}function Md(e){if(e===void 0)return Dr;if(typeof e!="number"||!Number.isInteger(e)||e<0||e>65535)throw new se(`port:${String(e)}`);return e}function Lt(e={}){if(Un(e.nodeEnv)||Un(e.processNodeEnv))throw new ot;return{host:ba(e.host),port:Md(e.port)}}function he(e,t,n){return`http://${e.includes(":")?`[${e}]`:e}:${t}${n}`}function Kd(e){if(e!==void 0)try{return JSON.parse(JSON.stringify(e))}catch{return}}function Hd(e){return{kinds:[...Ot],ephemeralDefault:e.ephemeralDefault===!1?!1:!0,brokerBound:e.brokerBound===!0,cloudSdksShipped:!1,fallback:Fr}}function Ne(e){if(!(!e||typeof e!="object"||Array.isArray(e)))return e}function Ud(e){let t=Ne(e);if(!t||typeof t.id!="string")return;let n=t.status;if(n!=="pending"&&n!=="failed")return;let r=Ne(t.event),o=r&&typeof r.intent=="string"?r.intent:typeof t.intent=="string"?t.intent:void 0,s={id:t.id,status:n,attempts:typeof t.attempts=="number"&&Number.isFinite(t.attempts)?t.attempts:0};return o&&(s.intent=o),typeof t.error=="string"&&t.error.length>0&&(s.error=t.error),typeof t.updatedAt=="string"&&(s.updatedAt=t.updatedAt),s}function $r(e){if(typeof e!="number"||!Number.isFinite(e))return te;let t=Math.trunc(e);return t<0?0:t>te?te:t}function Fe(e,t){let n=typeof e=="string"&&e.trim().length>0?e.trim():e&&typeof e=="object"&&"constructor"in e?String(e.constructor?.name??t):t,r=/^InMemory/i.test(n)?"memory":"durable";return{role:t,id:n,kind:r}}function Ft(e={}){let t=Ne(e),n=Ne(t?.durability)??t,r=Array.isArray(n?.stores)?n.stores:Array.isArray(t?.stores)?t.stores:[],o=[];for(let s of r){let a=Ne(s);if(!a)continue;let l=a.role;if(l!=="outbox"&&l!=="audit"&&l!=="workflow")continue;let c=typeof a.id=="string"?a.id:typeof a.name=="string"?a.name:void 0;if(!c)continue;let p=a.kind==="memory"||a.kind==="durable"?a.kind:Fe(c,l).kind;o.push({role:l,id:c,kind:p})}return{durability:{stores:o}}}function $e(e=[],t={}){let n=$r(t.sampleLimit),r=Array.isArray(e)?e:[],o=[],s=[];for(let a of r){let l=Ud(a);l&&(l.status==="pending"?o.push(l):s.push(l))}return{available:!0,pendingCount:o.length,failedCount:s.length,pending:o.slice(0,n),failed:s.slice(0,n),sampleLimit:n}}function De(){return{available:!1,pendingCount:0,failedCount:0,pending:[],failed:[],sampleLimit:te}}function Gd(e){let t=Ne(e);if(!t||typeof t.id!="string")return;let n=typeof t.workflowName=="string"?t.workflowName:typeof t.name=="string"?t.name:void 0;if(!n)return;let r={id:t.id,name:n,status:typeof t.status=="string"?t.status:"unknown"};return typeof t.currentStep=="string"&&(r.currentStep=t.currentStep),typeof t.error=="string"&&t.error.length>0&&(r.error=t.error),r}function Vd(e){return e==="idle"||e==="waiting"}function Me(e=[],t={}){let n=$r(t.sampleLimit),r=Array.isArray(e)?e:[],o=[],s=0,a=0,l=0,c=0;for(let p of r){let f=Gd(p);f&&(o.push(f),f.status==="running"?s+=1:f.status==="compensating"?a+=1:f.status==="failed"?l+=1:Vd(f.status)&&(c+=1))}return{available:!0,total:o.length,runningCount:s,compensatingCount:a,failedCount:l,pendingCount:c,workflows:o.slice(0,n),sampleLimit:n}}function Le(){return{available:!1,total:0,runningCount:0,compensatingCount:0,failedCount:0,pendingCount:0,workflows:[],sampleLimit:te}}function jd(e){if(e===void 0)return;let t=Ne(e);if(!t||t.available===!1)return De();let n=$r(t.sampleLimit);if(Array.isArray(t.pending)||Array.isArray(t.failed)||Array.isArray(t.records)){let r=[...Array.isArray(t.pending)?t.pending:[],...Array.isArray(t.failed)?t.failed:[],...Array.isArray(t.records)?t.records:[]],o=$e(r,{sampleLimit:n}),s=typeof t.pendingCount=="number"&&Number.isFinite(t.pendingCount)?Math.max(0,Math.trunc(t.pendingCount)):o.pendingCount,a=typeof t.failedCount=="number"&&Number.isFinite(t.failedCount)?Math.max(0,Math.trunc(t.failedCount)):o.failedCount;return{...o,pendingCount:s,failedCount:a,sampleLimit:n}}return De()}function Bd(e){if(e===void 0)return;let t=Ne(e);if(!t||t.available===!1)return Le();let n=$r(t.sampleLimit);if(Array.isArray(t.workflows)){let r=Me(t.workflows,{sampleLimit:n}),o=typeof t.total=="number"&&Number.isFinite(t.total)?Math.max(0,Math.trunc(t.total)):r.total,s=typeof t.runningCount=="number"&&Number.isFinite(t.runningCount)?Math.max(0,Math.trunc(t.runningCount)):r.runningCount,a=typeof t.compensatingCount=="number"&&Number.isFinite(t.compensatingCount)?Math.max(0,Math.trunc(t.compensatingCount)):r.compensatingCount,l=typeof t.failedCount=="number"&&Number.isFinite(t.failedCount)?Math.max(0,Math.trunc(t.failedCount)):r.failedCount,c=typeof t.pendingCount=="number"&&Number.isFinite(t.pendingCount)?Math.max(0,Math.trunc(t.pendingCount)):r.pendingCount;return{...r,total:o,runningCount:s,compensatingCount:a,failedCount:l,pendingCount:c,sampleLimit:n}}return Le()}function Gn(e={}){let t=Lt({host:e.host,port:e.port}),n=me({kernelInstanceId:e.kernelInstanceId,components:e.package&&typeof e.package=="object"&&!Array.isArray(e.package)&&Array.isArray(e.package.components)?e.package.components:[]}),r=jd(e.outbox),o=Bd(e.workflows),s={schemaVersion:Nr,kernelInstanceId:typeof e.kernelInstanceId=="string"?e.kernelInstanceId:n.kernelInstanceId,bind:{host:t.host,port:t.port,loopback:!0},package:{...n,schemaVersion:"1.0"},transport:Hd(e),observability:Kd(e.observability)??{},hardening:Ft(e.hardening)};return r&&(s.outbox=r),o&&(s.workflows=o),s}function $t(e){return`event: ${Lr}
|
|
3
3
|
data: ${JSON.stringify(e)}
|
|
4
4
|
|
|
5
|
-
`}var Tr,$n,Nr,Ot,Pt,_t,Tt,Nt,Dr,Lr,ee,ot,oe,gd,Un=Ut(()=>{"use strict";Ct();Mn();Tr="1.0",$n="127.0.0.1",Nr=0,Ot="/snapshot",Pt="/events",_t="/graph",Tt="/outbox",Nt="/workflows",Dr="snapshot",Lr="in-process-local",ee=32,ot=class extends Error{static{s(this,"ArkRunInspectorProductionError")}constructor(){super("ArkRun inspector refuses to start when NODE_ENV=production."),this.name="ArkRunInspectorProductionError"}},oe=class extends Error{static{s(this,"ArkRunInspectorBindError")}constructor(t){super(`ArkRun inspector binds loopback only (default 127.0.0.1). Public host "${t}" is rejected.`),this.name="ArkRunInspectorBindError"}},gd=new Set(["","*","0","0.0.0.0","::","::0","[::]","[::0]","::ffff:0.0.0.0","[::ffff:0.0.0.0]"]);s(Kn,"isArkRunInspectorProductionEnv");s(md,"ipv4Octets");s(ua,"unwrapIpv4Mapped");s(it,"isArkRunInspectorLoopbackHost");s(pa,"closedHost");s(yd,"closedPort");s(Dt,"resolveArkRunInspectorBind");s(me,"arkRunInspectorUrl");s(hd,"jsonClone");s(Rd,"closedTransportFacts");s(Te,"asRecord");s(Ad,"closedOutboxSummary");s(Fr,"closedSampleLimit");s(Le,"classifyArkRunInspectorStoreDurability");s(Lt,"buildArkRunInspectorHardening");s(Fe,"buildArkRunInspectorOutboxMonitor");s(Ne,"unavailableArkRunInspectorOutboxMonitor");s(kd,"closedWorkflowSummary");s(Id,"isPendingWorkflowStatus");s(Me,"buildArkRunInspectorWorkflowsMonitor");s(De,"unavailableArkRunInspectorWorkflowsMonitor");s(bd,"closedOutboxMonitor");s(Ed,"closedWorkflowsMonitor");s(Hn,"buildArkRunInspectorSnapshot");s(Ft,"formatArkRunInspectorSseEvent")});var fa={};ri(fa,{listenArkRunInspector:()=>Pd});function vd(){return{"content-type":"application/json; charset=utf-8","cache-control":"no-store"}}function Sd(){return{"content-type":"text/event-stream; charset=utf-8","cache-control":"no-store",connection:"keep-alive","x-accel-buffering":"no"}}function wd(e){let t=e&&e.length>0?e:"/";return new URL(t,"http://127.0.0.1")}function $e(e,t,n){if(!(e.writableEnded||e.destroyed))try{e.writeHead(t,vd()),e.end(JSON.stringify(n))}catch{}}function Cd(e,t){let n=e.address();if(n===null||typeof n=="string")throw new oe(t.host);if(!it(n.address))throw new oe(n.address);return{host:t.host,port:n.port}}async function xd(e){if(typeof e.listInspectorOutbox=="function")return e.listInspectorOutbox();let t=e.outbox??e.eventBuffer;if(!t||typeof t.list!="function")return Ne();let[n,r]=await Promise.all([t.list("pending"),t.list("failed")]);return Fe([...n??[],...r??[]],{sampleLimit:ee})}async function Od(e){return typeof e.listInspectorWorkflows=="function"?e.listInspectorWorkflows():!e.workflowEngine||typeof e.workflowEngine.list!="function"?De():Me(await e.workflowEngine.list(),{sampleLimit:ee})}async function Pd(e,t){let n=await import("http"),r=new Set,o=new Set,i=typeof t.sseIntervalMs=="number"&&Number.isFinite(t.sseIntervalMs)?Math.max(0,t.sseIntervalMs):1e3,a=t.bind,l=s(()=>e.getInspectorSnapshot(a),"snapshot"),c=n.createServer((p,g)=>{let h=wd(p.url),u=h.pathname;if(p.method==="GET"&&(u==="/"||u===Ot)){$e(g,200,l());return}if(p.method==="GET"&&u===_t){try{$e(g,200,e.requestGraph(Dn({slice:h.searchParams.get("slice"),nodeIds:h.searchParams.get("nodeIds"),degreesOfSeparation:h.searchParams.get("degreesOfSeparation"),include:h.searchParams.get("include"),exclude:h.searchParams.get("exclude")})))}catch(f){if(f instanceof X){$e(g,400,{error:f.message,option:f.option});return}throw f}return}if(p.method==="GET"&&u===Tt){xd(e).then(f=>$e(g,200,f)).catch(f=>{$e(g,500,{error:f instanceof Error?f.message:"outbox monitor failed"})});return}if(p.method==="GET"&&u===Nt){Od(e).then(f=>$e(g,200,f)).catch(f=>{$e(g,500,{error:f instanceof Error?f.message:"workflows monitor failed"})});return}if(p.method==="GET"&&u===Pt){g.writeHead(200,Sd()),g.flushHeaders(),g.write(Ft(l())),r.add(g);let f=i>0?setInterval(()=>{g.write(Ft(l()))},i):void 0;f&&o.add(f);let m=s(()=>{r.delete(g),f&&(clearInterval(f),o.delete(f))},"drop");p.on("close",m),g.on("close",m);return}$e(g,404,{error:"not found"})});try{await new Promise((p,g)=>{let h=s(u=>g(u),"onError");c.once("error",h),c.listen({host:t.bind.host,port:t.bind.port},()=>{c.off("error",h);try{a=Cd(c,t.bind),p()}catch(u){g(u instanceof Error?u:new oe(t.bind.host))}})})}catch(p){throw await new Promise(g=>{c.close(()=>g())}),p}return{host:a.host,port:a.port,url:me(a.host,a.port,"/"),snapshotUrl:me(a.host,a.port,Ot),eventsUrl:me(a.host,a.port,Pt),graphUrl:me(a.host,a.port,_t),outboxUrl:me(a.host,a.port,Tt),workflowsUrl:me(a.host,a.port,Nt),close(){for(let p of o)clearInterval(p);o.clear();for(let p of r)p.end();return r.clear(),new Promise((p,g)=>{c.close(h=>{h?g(h):p()})})}}}var ga=Ut(()=>{"use strict";Or();Un();s(vd,"jsonHeaders");s(Sd,"sseHeaders");s(wd,"requestUrl");s($e,"writeJson");s(Cd,"boundAddress");s(xd,"resolveOutboxMonitor");s(Od,"resolveWorkflowsMonitor");s(Pd,"listenArkRunInspector")});var Fd={};ri(Fd,{ANALYSIS_IR_SCHEMA_VERSION:()=>cr,ARK_ANALYSIS_RESULT_SCHEMA:()=>Vr,ARK_ANALYSIS_RESULT_SCHEMA_VERSION:()=>Gt,ARK_DESIGN_DELTA_SCHEMA_VERSION:()=>Js,ARK_ENFORCEMENT_STATE_SCHEMA_VERSION:()=>Zs,ARK_RUN_COMPONENT_LIFETIMES:()=>Ir,ARK_RUN_EPHEMERAL_DEFAULT:()=>rt,ARK_RUN_GRAPH_DEFAULT_SLICE:()=>wr,ARK_RUN_GRAPH_NODE_KINDS:()=>Yo,ARK_RUN_GRAPH_PROCESS_EDGE_KINDS:()=>Xo,ARK_RUN_GRAPH_SCHEMA_VERSION:()=>Sr,ARK_RUN_GRAPH_SLICES:()=>Cr,ARK_RUN_GRAPH_TECHNICAL_EDGE_KINDS:()=>Zo,ARK_RUN_INFORMATION_PACKAGE_SCHEMA_VERSION:()=>xn,ARK_RUN_INSPECTOR_DEFAULT_HOST:()=>$n,ARK_RUN_INSPECTOR_DEFAULT_PORT:()=>Nr,ARK_RUN_INSPECTOR_EVENTS_PATH:()=>Pt,ARK_RUN_INSPECTOR_GRAPH_PATH:()=>_t,ARK_RUN_INSPECTOR_MONITOR_SAMPLE_LIMIT:()=>ee,ARK_RUN_INSPECTOR_OUTBOX_PATH:()=>Tt,ARK_RUN_INSPECTOR_SCHEMA_VERSION:()=>Tr,ARK_RUN_INSPECTOR_SNAPSHOT_PATH:()=>Ot,ARK_RUN_INSPECTOR_SSE_EVENT:()=>Dr,ARK_RUN_INSPECTOR_TRANSPORT_FALLBACK:()=>Lr,ARK_RUN_INSPECTOR_WORKFLOWS_PATH:()=>Nt,ARK_RUN_TRANSPORT_KINDS:()=>xt,ArkRunInspectorBindError:()=>oe,ArkRunInspectorProductionError:()=>ot,DEFAULT_MAX_HISTORY_SIZE:()=>Mr,DIAGNOSTIC_CATALOG:()=>bn,DIAGNOSTIC_CATALOG_SCHEMA_VERSION:()=>Vs,DIAGNOSTIC_DOCS_RELATIVE_PATH:()=>Ar,DIAGNOSTIC_RULE_IDS:()=>js,EventContractRegistryImpl:()=>ft,EventContractViolationError:()=>Be,InMemoryAuditStore:()=>gt,InMemoryEventBuffer:()=>Ce,InMemoryOutboxStore:()=>eo,InMemoryReadModelStore:()=>vt,InMemoryWorkflowStore:()=>St,IntentRegistry:()=>He,InvalidArkRunGraphQueryError:()=>X,InvalidArkRunSendOptionError:()=>nt,InvalidIntentNameError:()=>Ve,LayerPolicyContextError:()=>je,MANIFEST_SCHEMA_VERSION:()=>Sn,ObservedLayerFlowViolationError:()=>We,POLICY_DELTA_SCHEMA_VERSION:()=>ur,PolicyEngine:()=>Se,PolicyViolationError:()=>he,RESOLVED_CANDIDATE_FACTS_SCHEMA:()=>lr,RESOLVED_CANDIDATE_FACTS_SCHEMA_VERSION:()=>Oe,SourceMetadataOverrideError:()=>Re,UnknownEventSourceError:()=>we,UnregisteredIntentError:()=>Ge,analyzeArchitectureConvergence:()=>Qe,analyzeChange:()=>kn,analyzePolicyDelta:()=>xo,analyzeProject:()=>It,analyzeResolvedProject:()=>Et,appendDecisionTape:()=>Vo,architecturalPolicies:()=>Yn,arkRunGraphQueryFromSearchParams:()=>Dn,arkRunInspectorUrl:()=>me,buildArkRunInspectorHardening:()=>Lt,buildArkRunInspectorOutboxMonitor:()=>Fe,buildArkRunInspectorSnapshot:()=>Hn,buildArkRunInspectorWorkflowsMonitor:()=>Me,buildDependencyInformationPackage:()=>fe,buildPublishPolicyContext:()=>qt,catalogFixForRuleId:()=>Ys,catalogWhyForRuleId:()=>Xs,checkAdapterGovernance:()=>or,checkContract:()=>lo,classifyArkPolicyDelta:()=>pr,classifyArkRunInspectorStoreDurability:()=>Le,closeArkRunGraphQuery:()=>Nn,closedArkRunEphemeral:()=>_r,closedArkRunTransportKind:()=>Pr,collectAnalysisConfigWarnings:()=>In,collectForbiddenCapabilityUses:()=>Ze,compareInformationPackages:()=>br,createAICodeGate:()=>vo,createAdapter:()=>ao,createAdapterResult:()=>si,createArchitectureProfile:()=>sn,createArchitectureProfileFromArkConfig:()=>an,createArkKernel:()=>Mt,createArkKernelFromConfig:()=>ei,createArkManifest:()=>wn,createArkTestHarness:()=>no,createAuditTrail:()=>en,createDependencyGraph:()=>tn,createElevenLayerArkConfig:()=>io,createEventBus:()=>Qr,createEventContractRegistry:()=>Jt,createIntentRegistry:()=>Vt,createLenientArkKernel:()=>Kr,createLenientArkKernelFromConfig:()=>ni,createMetadataRegistry:()=>ln,createObservabilityReporter:()=>Qt,createProjectionRegistry:()=>vn,createResolvedCandidateFacts:()=>ar,createSaga:()=>Ko,createStrictArkKernel:()=>$r,createStrictArkKernelFromConfig:()=>ti,createWorkflowEngine:()=>wt,defaultIntentRegistry:()=>zr,defineArchitectureProfilePolicy:()=>zt,defineIntent:()=>Wr,defineLayerPolicy:()=>Bt,definePolicy:()=>Ue,definePort:()=>so,definePublishPolicy:()=>qr,detectArchitectureCycles:()=>mr,deterministicHash:()=>W,diagnosticDocsFragment:()=>Lo,diagnosticDocsPath:()=>zs,elevenLayerProfile:()=>Ye,evaluateArchitectureGraph:()=>tt,explainViolation:()=>Oo,extractSemanticDependencies:()=>Xe,formatArkRunGraphMermaid:()=>xr,formatArkRunInspectorSseEvent:()=>Ft,getDiagnosticCatalogEntry:()=>En,isArkRunInspectorLoopbackHost:()=>it,isArkRunInspectorProductionEnv:()=>Kn,isCataloguedOrArkRuleFamily:()=>Ws,isKnownDiagnosticCode:()=>Bs,isLayerPolicy:()=>Wt,loadContract:()=>An,loadResolvedCandidateFacts:()=>Ee,policyDeltaAcknowledgementMatches:()=>fr,preflightChange:()=>To,preflightResolvedChange:()=>No,replayInformationPackages:()=>Wo,requestArkRunGraph:()=>Ln,resolveArkRunInspectorBind:()=>Dt,resolveArkRunSendPlan:()=>Fn,resolvedFactsEvidenceRequirementsHash:()=>kt,serializeDiagnosticCatalog:()=>qs,shadowInformationPackage:()=>Bo,stableSerialize:()=>F,startArkRunInspector:()=>Gn,syncRegistryToGraph:()=>nn,toAdapterDiagnostic:()=>qn,unavailableArkRunInspectorOutboxMonitor:()=>Ne,unavailableArkRunInspectorWorkflowsMonitor:()=>De,validateIntentName:()=>jt,version:()=>Bn});module.exports=Sa(Fd);var Bn="4.8.13";var wa=/(^|\/)(constants|types|enums|shared-types|shared\/(?:types|constants)|test-projects)(\/|\.|$)|(?:^|\/)[^/]*(?:constants|types)(?:\.[cm]?[jt]sx?)?$/i,Ca=/(^|\/)(?:kernel(?:\/|$)|events?(?:\/|\.|$)|bootstrap(?:\.[cm]?[jt]sx?)?$|emitter(?:\.[cm]?[jt]sx?)?$)|(?:^|\/)(?:intents?|publish)(?:\/|\.|$)/i,xa=/(use-?cases?|usecases?|application|orchestrat|services?|handlers?)(\/|\.|$)/i;function Oa(e,t){let n=String(e??"").replace(/\\/g,"/").trim(),r=String(t?.fromLayer??""),o=String(t?.toLayer??"");return wa.test(n)?"pure-shared":r==="PersistenceAdapters"&&(Ca.test(n)||/events?|intents?|kernel|bootstrap/i.test(`${o} ${n}`))?"kernel-emit":xa.test(n)||(r==="DomainModel"||r==="ApplicationOrchestration")&&o==="PersistenceAdapters"?"use-case":"unknown"}s(Oa,"classifyLayerImportKind");function Pa(e){if(e.typeOnly||e.targetTypeOnlyExports||e.namedBindingsTypeOnly)return"Move the referenced type to a mutually allowed layer, use `import type`, then preflight again.";if(e.peerIsolation)return"Extract the shared dependency to a shared layer, test at the public interface, then preflight again.";let t=Oa(typeof e.target=="string"?e.target:"",{fromLayer:typeof e.fromLayer=="string"?e.fromLayer:void 0,toLayer:typeof e.toLayer=="string"?e.toLayer:void 0});return t==="pure-shared"?"Adopt the imported constants/types/pure module into DomainModel or SharedKernel (do not inject a port). Then preflight again.":t==="kernel-emit"?"Persistence must not emit. Inject a port or move the event map to SharedTypes; do not import kernel/events/bootstrap from a repository. Then preflight again.":t==="use-case"||e.portProofEligible?`Define a port in ${e.fromLayer??"the source layer"}, inject the ${e.toLayer??"outer-layer"} implementation, test at the public interface, then preflight again.`:"Classify the import: if it is constants/types/pure, adopt into DomainModel or SharedKernel; define a port only if the target is a real use-case. Then preflight again."}s(Pa,"layerImportNextAction");function _a(e){return typeof e.target=="string"&&e.target.trim().length>0?e.target.trim():void 0}s(_a,"arkRunCallSiteName");function Ta(e){let t=_a(e),n=typeof e.fromLayer=="string"&&e.fromLayer.length>0?e.fromLayer:void 0;switch(e.ruleId){case"ARKRUN_MISSING_ROOT":return t?`Import createStrictArkKernel from arkgate/runtime and call it in composition root ${t} listed in arkRun.compositionRoots, then preflight again.`:"Import createStrictArkKernel from arkgate/runtime (same npm package; @arkgate/runtime is deprecated) and call it in a composition root listed in arkRun.compositionRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision.";case"ARKRUN_KERNEL_IN_DOMAIN":return t?`Move the kernel import of ${t} out of ${n??"the Domain-role layer"} into a composition root or adapter. Import from arkgate/runtime, then preflight again.`:"Move the kernel import out of the Domain-role layer into a composition root or adapter. Import from arkgate/runtime (same npm package; @arkgate/runtime is deprecated), then preflight again. Never mechanical-safe.";case"ARKRUN_DIRECT_NEW":return t?`Resolve ${t} from the kernel instead of constructing it with new, then preflight again.`:"Resolve the type from the kernel instead of constructing it with new, then preflight again. Never mechanical-safe \u2014 rewiring construction is a design decision.";case"ARKRUN_UNDECLARED_EMIT":return t?`Add ${t} to raises or sends on the managed component, then preflight again.`:"Add the existing call-site name to raises or sends on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new emit stays judgment.";case"ARKRUN_UNDECLARED_HANDLE":return t?`Add ${t} to reactsTo on the managed component, then preflight again.`:"Add the existing call-site name to reactsTo on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new handle stays judgment.";case"ARKRUN_UNDECLARED_DEPEND":return t?`Add ${t} to uses on the managed component, then preflight again.`:"Add the existing call-site name to uses on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new depend stays judgment.";case"ARKRUN_TRANSPORT_BYPASS":return t?`Send through the ArkRun kernel transport instead of importing ${t}, then preflight again.`:"Send through the ArkRun kernel transport instead of importing that broker or emitter, then preflight again. Never mechanical-safe \u2014 homemade buses stay judgment.";default:return`Resolve ${typeof e.ruleId=="string"&&e.ruleId.length>0?e.ruleId:"ARK_UNKNOWN"} without weakening ark.config.json, then run Ark again.`}}s(Ta,"arkRunNextAction");function pe(e){switch(e.ruleId){case"LAYER_IMPORT_VIOLATION":return Pa(e);case"FORBIDDEN_GLOBAL":return`Inject ${e.target??"the capability"} through a port, test at the public interface, then preflight again.`;case"CAPABILITY_VIOLATION":return`Define a ${String(e.capability??"capability")} port in ${e.fromLayer??"the walled layer"}, bind the implementation outside it, test at the public interface, then preflight again.`;case"CIRCULAR_DEPENDENCY":return"Extract the shared dependency into a third module, test at the public interface, then preflight again.";case"RAW_EVENT_PUBLISH":return"Publish through a registered intent creator, then run Ark again.";case"LITERAL_PATH_DRIFT":return typeof e.target=="string"&&e.target.length>0?`Rewrite the literal to ${e.target}, or run \`arkgate-check --path-drift --base-ref <ref> --write\` to apply every anchored replacement.`:"Rewrite the literal to the rename destination, or run `arkgate-check --path-drift --base-ref <ref> --write` to apply every anchored replacement.";case"LITERAL_PATH_UNRESOLVED":return"Read the candidate and decide: fix the path, or leave it. Advisory \u2014 with no rename to anchor it there is no destination to propose, so --write never touches it.";case"PUBLISH_MISSING_SOURCE":return"Add metadata.source to the publish call, then run Ark again.";case"INVARIANT_COVERAGE_OUTSIDE_ROOTS":return"Move the covering test under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json, then run Ark again.";case"ARKRULE_STRUCTURE":case"ARKRULE_INVARIANT":case"INVARIANT_UNCOVERED":return`Fix the structure or invariant for ${typeof e.arkruleId=="string"&&e.arkruleId.length>0?e.arkruleId:"the ArkRule"} (declared in ${typeof e.arkruleSource=="string"&&e.arkruleSource.length>0?e.arkruleSource:"arkrules/<Layer>.json"}), then preflight again. Do not demote the rule without a hash-bound policy acknowledgement.`;case"ARKRUN_MISSING_ROOT":case"ARKRUN_KERNEL_IN_DOMAIN":case"ARKRUN_DIRECT_NEW":case"ARKRUN_UNDECLARED_EMIT":case"ARKRUN_UNDECLARED_HANDLE":case"ARKRUN_UNDECLARED_DEPEND":case"ARKRUN_TRANSPORT_BYPASS":return Ta(e);case"ARKORDER_MISSING_PLANE":return typeof e.target=="string"&&e.target.length>0?`Import createOrderPlane from arkgate/order and call it in plane root ${e.target} listed in arkOrder.planeRoots, then preflight again.`:"Import createOrderPlane from arkgate/order and call it in a plane root listed in arkOrder.planeRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision.";case"ARKORDER_KERNEL_IN_DOMAIN":return"Move the arkgate/order import out of the Domain-role layer into a plane root or adapter, then preflight again. Never mechanical-safe.";case"ARKORDER_GENERIC_UPDATE":return"Don't use a generic update. First freeze with release(). Later, propose the change, then apply it.";case"ARKORDER_TOO_MANY_PARAMS":return"Cut \u03BE to the slow keys that actually slave the rest, then preflight again. Never mechanical-safe.";case"ARKORDER_INGEST_WRITES_XI":return"Keep ingest results as absorb/escalate_up/hold only. Change \u03BE with proposeRelease then apply(ProposeResult). Never mechanical-safe.";case"ARKORDER_XI_FIELD_WRITE":return typeof e.target=="string"&&e.target.length>0?`Don't write ${e.target} from a use-case. Take the event in, or change that choice through the valve (proposeRelease then apply), not a generic update.`:"Don't write a named product choice from a use-case. Take the event in, or change that choice through the valve (proposeRelease then apply), not a generic update.";case"ARKORDER_UNVALVED_RELEASE":return"Change \u03BE with proposeRelease then apply(ProposeResult). release() is only the first freeze. Never mechanical-safe.";default:return typeof e.ruleId=="string"&&e.ruleId.startsWith("ARKRULE_")?`Fix the ArkRule ${typeof e.arkruleId=="string"?e.arkruleId:e.ruleId}, then preflight again.`:`Resolve ${typeof e.ruleId=="string"&&e.ruleId.length>0?e.ruleId:"ARK_UNKNOWN"} without weakening ark.config.json, then run Ark again.`}}s(pe,"deterministicNextAction");var Gt="1.5",Gr="docs/diagnostics.md",Vr={$schema:"https://json-schema.org/draft/2020-12/schema",$id:"https://unpkg.com/arkgate@3/schemas/ark.analysis-result.schema.json",title:"ArkGate analysis result",type:"object",additionalProperties:!1,required:["schemaVersion","mode","valid","completeness","completenessReasons","diagnostics"],allOf:[{if:{properties:{completeness:{enum:["partial","unavailable"]}},required:["completeness"]},then:{properties:{valid:{const:!1}}}},{if:{properties:{mode:{const:"resolved-candidate-facts"},completeness:{enum:["complete","partial"]}},required:["mode","completeness"]},then:{required:["policyHash","resolverIdentity","factsHash","candidateTreeHash"]}},{if:{properties:{completeness:{const:"complete"}},required:["completeness"]},then:{properties:{completenessReasons:{maxItems:0}}},else:{properties:{completenessReasons:{minItems:1}}}}],properties:{schemaVersion:{const:"1.5"},mode:{enum:["lexical-compatibility","resolved-candidate-facts"]},valid:{type:"boolean"},completeness:{enum:["complete","partial","unavailable"]},completenessReasons:{type:"array",items:{type:"object",additionalProperties:!1,required:["code","message"],properties:{code:{type:"string",minLength:1},message:{type:"string",minLength:1},file:{type:"string",minLength:1}}}},policyHash:{type:"string",minLength:1},resolverIdentity:{type:"string",minLength:1},factsHash:{type:"string",minLength:1},candidateTreeHash:{type:"string",minLength:1},diagnostics:{type:"array",items:{type:"object",additionalProperties:!1,required:["ruleId","severity","message","location","evidence"],properties:{ruleId:{type:"string",minLength:1},severity:{enum:["error","warning"]},message:{type:"string",minLength:1},location:{type:"object",additionalProperties:!1,required:["file","line","column"],properties:{file:{type:"string",minLength:1},line:{type:"integer",minimum:1},column:{type:"integer",minimum:1}}},evidence:{type:"object",additionalProperties:!1,properties:{target:{type:"string"},fromLayer:{type:"string"},toLayer:{type:"string"},typeOnly:{type:"boolean"},targetTypeOnlyExports:{type:"boolean"},sourcePureTypeModule:{type:"boolean"},namedBindingsTypeOnly:{type:"boolean"},portProofEligible:{type:"boolean"},peerIsolation:{type:"boolean"},capability:{type:"string",minLength:1},edgeKind:{type:"string",minLength:1},arkruleId:{type:"string",minLength:1},arkruleSource:{type:"string",minLength:1}}},nextAction:{type:"string",minLength:1},findingRef:{type:"string",minLength:1,pattern:"^fnv1a-[0-9a-f]{8}$"},targetKey:{type:"string",minLength:1},docsCodePath:{type:"string",minLength:1}}}}}};function Wn(e){let t=typeof e.ruleId=="string"?e.ruleId:typeof e.code=="string"?e.code:void 0,n=typeof e.file=="string"?e.file:void 0,r=typeof e.fromLayer=="string"?e.fromLayer:void 0,o=typeof e.toLayer=="string"?e.toLayer:void 0,i=typeof e.target=="string"?e.target:void 0;return[t,n,r??"",o??"",i??""].join("|")}s(Wn,"adapterFindingTargetKey");function zn(e){let t=new Map;return e.map(n=>{let r=Wn(n),o=(t.get(r)??0)+1;return t.set(r,o),o===1?r:`${r}#${o}`})}s(zn,"adapterFindingOccurrenceTargetKeys");function jr(e){let t=2166136261;for(let n=0;n<e.length;n+=1)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return`fnv1a-${(t>>>0).toString(16).padStart(8,"0")}`}s(jr,"adapterFindingRefFromTargetKey");function Br(e){return`${Gr}#${e}`}s(Br,"adapterDocsCodePath");function x(e){return typeof e=="string"&&e.length>0?e:void 0}s(x,"text");function ii(e,t){return Number.isInteger(e)&&Number(e)>0?Number(e):t}s(ii,"positiveInteger");function Na(e,t,n){return pe({ruleId:e,target:x(t.target)??x(n.target)??void 0,fromLayer:x(t.fromLayer)??void 0,toLayer:x(t.toLayer)??void 0,typeOnly:t.typeOnly===!0,targetTypeOnlyExports:t.targetTypeOnlyExports===!0,namedBindingsTypeOnly:t.namedBindingsTypeOnly===!0,portProofEligible:t.portProofEligible===!0,peerIsolation:t.peerIsolation===!0,sourcePureTypeModule:t.sourcePureTypeModule===!0,edgeKind:x(t.edgeKind)??void 0,capability:x(t.capability)??x(n.capability)??void 0,arkruleId:x(t.arkruleId)??void 0,arkruleSource:x(t.arkruleSource)??void 0})}s(Na,"nextActionForDiagnostic");function qn(e,t="error",n){let r=x(e.ruleId)??x(e.code)??"ARK_UNKNOWN",o=e.severity==="warning"||e.failsStrict===!1||e.typeOnly===!0&&e.peerIsolation!==!0?"warning":t,i={...x(e.target)?{target:x(e.target)}:{},...x(e.fromLayer)?{fromLayer:x(e.fromLayer)}:{},...x(e.toLayer)?{toLayer:x(e.toLayer)}:{},...typeof e.typeOnly=="boolean"?{typeOnly:e.typeOnly}:{},...typeof e.targetTypeOnlyExports=="boolean"?{targetTypeOnlyExports:e.targetTypeOnlyExports}:{},...typeof e.sourcePureTypeModule=="boolean"?{sourcePureTypeModule:e.sourcePureTypeModule}:{},...typeof e.namedBindingsTypeOnly=="boolean"?{namedBindingsTypeOnly:e.namedBindingsTypeOnly}:{},...typeof e.portProofEligible=="boolean"?{portProofEligible:e.portProofEligible}:{},...typeof e.peerIsolation=="boolean"?{peerIsolation:e.peerIsolation}:{},...x(e.capability)?{capability:x(e.capability)}:{},...x(e.edgeKind)?{edgeKind:x(e.edgeKind)}:{},...x(e.arkruleId)?{arkruleId:x(e.arkruleId)}:{},...x(e.arkruleSource)?{arkruleSource:x(e.arkruleSource)}:{}},a=n??Wn(e),l=jr(a);return{ruleId:r,severity:o,message:x(e.message)??r,location:{file:x(e.file)??"<unknown>",line:ii(e.line,1),column:ii(e.column,1)},evidence:i,nextAction:x(e.nextAction)??Na(r,i,e),findingRef:l,targetKey:a,docsCodePath:Br(r)}}s(qn,"toAdapterDiagnostic");function si(e){let t=e.completeness??"complete",n=e.mode??"lexical-compatibility";if(t==="complete"&&(e.completenessReasons?.length??0)>0)throw new Error("completenessReasons must be empty when completeness is complete.");let r=t==="complete"?[]:e.completenessReasons&&e.completenessReasons.length>0?e.completenessReasons.map(h=>({code:x(h.code)??"ANALYSIS_EVIDENCE_INCOMPLETE",message:x(h.message)??`Analysis ${t}: required evidence is incomplete.`,...x(h.file)?{file:x(h.file)}:{}})):[{code:t==="unavailable"?"ANALYSIS_UNAVAILABLE":"ANALYSIS_EVIDENCE_INCOMPLETE",message:`Analysis ${t}: required evidence is incomplete.`}],o={...x(e.policyHash)?{policyHash:x(e.policyHash)}:{},...x(e.resolverIdentity)?{resolverIdentity:x(e.resolverIdentity)}:{},...x(e.factsHash)?{factsHash:x(e.factsHash)}:{},...x(e.candidateTreeHash)?{candidateTreeHash:x(e.candidateTreeHash)}:{}};if(n==="resolved-candidate-facts"&&t!=="unavailable"){for(let h of["policyHash","resolverIdentity","factsHash","candidateTreeHash"])if(!o[h])throw new Error(`${h} is required for resolved ${t} adapter evidence.`)}let i=e.violations??[],a=e.warnings??[],l=zn(i),c=zn(a),p=[...i.map((h,u)=>qn(h,"error",l[u])),...a.map((h,u)=>qn(h,"warning",c[u]))],g={schemaVersion:"1.5",completenessReasons:r,diagnostics:p};if(n==="resolved-candidate-facts"){if(t==="unavailable")return{...g,mode:n,valid:!1,completeness:t,...o};let h={policyHash:o.policyHash,resolverIdentity:o.resolverIdentity,factsHash:o.factsHash,candidateTreeHash:o.candidateTreeHash};return t==="complete"?{...g,mode:n,valid:e.valid,completeness:t,...h}:{...g,mode:n,valid:!1,completeness:t,...h}}return t==="complete"?{...g,mode:n,valid:e.valid,completeness:t,...o}:{...g,mode:n,valid:!1,completeness:t,...o}}s(si,"createAdapterResult");var He=class{static{s(this,"IntentRegistry")}intents=new Map;dependencies=new Map;productions=new Map;define(t,n){if(this.intents.has(t))throw new Error(`Intent "${t}" is already registered. Intent names must be unique within a registry.`);let r=s(i=>({intent:t,payload:i,metadata:{occurredAt:new Date().toISOString(),source:"unknown"}}),"fn");Object.defineProperty(r,"name",{value:t,enumerable:!0,configurable:!1,writable:!1});let o=r;if(this.intents.set(t,o),n?.dependsOn)for(let i of n.dependsOn)this.declareDependency(t,i);if(n?.produces)for(let i of n.produces)this.declareProduction(t,i);return o}declareDependency(t,n){this.dependencies.has(t)||this.dependencies.set(t,new Set),this.dependencies.get(t).add(n)}declareProduction(t,n){this.productions.has(t)||this.productions.set(t,new Set),this.productions.get(t).add(n)}get(t){return this.intents.get(t)}list(){return Array.from(this.intents.values())}getDependencies(t){let n=this.dependencies.get(t);return n?Array.from(n):[]}getProductions(t){let n=this.productions.get(t);return n?Array.from(n):[]}getAllRelationships(){let t=[];for(let[n,r]of this.dependencies.entries())for(let o of r)t.push({from:n,to:o,kind:"dependsOn"});for(let[n,r]of this.productions.entries())for(let o of r)t.push({from:n,to:o,kind:"produces"});return t}has(t){return this.intents.has(t)}clear(){this.intents.clear(),this.dependencies.clear(),this.productions.clear()}};var ai=new He;function Wr(e,t){return ai.define(e,t)}s(Wr,"defineIntent");function Vt(){return new He}s(Vt,"createIntentRegistry");var zr=ai;var li=["Domain.","Application.","Adapter.","Workflow.","Job.","Presentation.","Reporting.","Metadata.","Security.","Audit.","Observability.","Kernel."];function jt(e){if(!e||typeof e!="string")return{valid:!1,reason:"Intent name must be a non-empty string"};if(!li.some(n=>e.startsWith(n)))return{valid:!1,reason:`Intent "${e}" must start with one of: ${li.join(", ")}`};let t=e.slice(e.indexOf(".")+1);return!t||!/^[A-Za-z][A-Za-z0-9_.]*$/.test(t)?{valid:!1,reason:`Intent "${e}" has an invalid segment after the layer prefix`}:{valid:!0}}s(jt,"validateIntentName");var he=class extends Error{static{s(this,"PolicyViolationError")}violations;constructor(t){let n=t.map(r=>`- ${r.policyName}: ${r.message}`).join(`
|
|
5
|
+
`}var Nr,Hn,Dr,Pt,_t,Tt,Nt,Dt,Lr,Fr,te,ot,se,Fd,Vn=Vt(()=>{"use strict";xt();Kn();Nr="1.0",Hn="127.0.0.1",Dr=0,Pt="/snapshot",_t="/events",Tt="/graph",Nt="/outbox",Dt="/workflows",Lr="snapshot",Fr="in-process-local",te=32,ot=class extends Error{static{i(this,"ArkRunInspectorProductionError")}constructor(){super("ArkRun inspector refuses to start when NODE_ENV=production."),this.name="ArkRunInspectorProductionError"}},se=class extends Error{static{i(this,"ArkRunInspectorBindError")}constructor(t){super(`ArkRun inspector binds loopback only (default 127.0.0.1). Public host "${t}" is rejected.`),this.name="ArkRunInspectorBindError"}},Fd=new Set(["","*","0","0.0.0.0","::","::0","[::]","[::0]","::ffff:0.0.0.0","[::ffff:0.0.0.0]"]);i(Un,"isArkRunInspectorProductionEnv");i($d,"ipv4Octets");i(Ia,"unwrapIpv4Mapped");i(st,"isArkRunInspectorLoopbackHost");i(ba,"closedHost");i(Md,"closedPort");i(Lt,"resolveArkRunInspectorBind");i(he,"arkRunInspectorUrl");i(Kd,"jsonClone");i(Hd,"closedTransportFacts");i(Ne,"asRecord");i(Ud,"closedOutboxSummary");i($r,"closedSampleLimit");i(Fe,"classifyArkRunInspectorStoreDurability");i(Ft,"buildArkRunInspectorHardening");i($e,"buildArkRunInspectorOutboxMonitor");i(De,"unavailableArkRunInspectorOutboxMonitor");i(Gd,"closedWorkflowSummary");i(Vd,"isPendingWorkflowStatus");i(Me,"buildArkRunInspectorWorkflowsMonitor");i(Le,"unavailableArkRunInspectorWorkflowsMonitor");i(jd,"closedOutboxMonitor");i(Bd,"closedWorkflowsMonitor");i(Gn,"buildArkRunInspectorSnapshot");i($t,"formatArkRunInspectorSseEvent")});var Ea={};ss(Ea,{listenArkRunInspector:()=>Jd});function Wd(){return{"content-type":"application/json; charset=utf-8","cache-control":"no-store"}}function zd(){return{"content-type":"text/event-stream; charset=utf-8","cache-control":"no-store",connection:"keep-alive","x-accel-buffering":"no"}}function qd(e){let t=e&&e.length>0?e:"/";return new URL(t,"http://127.0.0.1")}function Ke(e,t,n){if(!(e.writableEnded||e.destroyed))try{e.writeHead(t,Wd()),e.end(JSON.stringify(n))}catch{}}function Yd(e,t){let n=e.address();if(n===null||typeof n=="string")throw new se(t.host);if(!st(n.address))throw new se(n.address);return{host:t.host,port:n.port}}async function Xd(e){if(typeof e.listInspectorOutbox=="function")return e.listInspectorOutbox();let t=e.outbox??e.eventBuffer;if(!t||typeof t.list!="function")return De();let[n,r]=await Promise.all([t.list("pending"),t.list("failed")]);return $e([...n??[],...r??[]],{sampleLimit:te})}async function Zd(e){return typeof e.listInspectorWorkflows=="function"?e.listInspectorWorkflows():!e.workflowEngine||typeof e.workflowEngine.list!="function"?Le():Me(await e.workflowEngine.list(),{sampleLimit:te})}async function Jd(e,t){let n=await import("http"),r=new Set,o=new Set,s=typeof t.sseIntervalMs=="number"&&Number.isFinite(t.sseIntervalMs)?Math.max(0,t.sseIntervalMs):1e3,a=t.bind,l=i(()=>e.getInspectorSnapshot(a),"snapshot"),c=n.createServer((p,f)=>{let y=qd(p.url),u=y.pathname;if(p.method==="GET"&&(u==="/"||u===Pt)){Ke(f,200,l());return}if(p.method==="GET"&&u===Tt){try{Ke(f,200,e.requestGraph(Fn({slice:y.searchParams.get("slice"),nodeIds:y.searchParams.get("nodeIds"),degreesOfSeparation:y.searchParams.get("degreesOfSeparation"),include:y.searchParams.get("include"),exclude:y.searchParams.get("exclude")})))}catch(g){if(g instanceof J){Ke(f,400,{error:g.message,option:g.option});return}throw g}return}if(p.method==="GET"&&u===Nt){Xd(e).then(g=>Ke(f,200,g)).catch(g=>{Ke(f,500,{error:g instanceof Error?g.message:"outbox monitor failed"})});return}if(p.method==="GET"&&u===Dt){Zd(e).then(g=>Ke(f,200,g)).catch(g=>{Ke(f,500,{error:g instanceof Error?g.message:"workflows monitor failed"})});return}if(p.method==="GET"&&u===_t){f.writeHead(200,zd()),f.flushHeaders(),f.write($t(l())),r.add(f);let g=s>0?setInterval(()=>{f.write($t(l()))},s):void 0;g&&o.add(g);let d=i(()=>{r.delete(f),g&&(clearInterval(g),o.delete(g))},"drop");p.on("close",d),f.on("close",d);return}Ke(f,404,{error:"not found"})});try{await new Promise((p,f)=>{let y=i(u=>f(u),"onError");c.once("error",y),c.listen({host:t.bind.host,port:t.bind.port},()=>{c.off("error",y);try{a=Yd(c,t.bind),p()}catch(u){f(u instanceof Error?u:new se(t.bind.host))}})})}catch(p){throw await new Promise(f=>{c.close(()=>f())}),p}return{host:a.host,port:a.port,url:he(a.host,a.port,"/"),snapshotUrl:he(a.host,a.port,Pt),eventsUrl:he(a.host,a.port,_t),graphUrl:he(a.host,a.port,Tt),outboxUrl:he(a.host,a.port,Nt),workflowsUrl:he(a.host,a.port,Dt),close(){for(let p of o)clearInterval(p);o.clear();for(let p of r)p.end();return r.clear(),new Promise((p,f)=>{c.close(y=>{y?f(y):p()})})}}}var va=Vt(()=>{"use strict";Pr();Vn();i(Wd,"jsonHeaders");i(zd,"sseHeaders");i(qd,"requestUrl");i(Ke,"writeJson");i(Yd,"boundAddress");i(Xd,"resolveOutboxMonitor");i(Zd,"resolveWorkflowsMonitor");i(Jd,"listenArkRunInspector")});var ou={};ss(ou,{ANALYSIS_IR_SCHEMA_VERSION:()=>dr,ARK_ANALYSIS_RESULT_SCHEMA:()=>jr,ARK_ANALYSIS_RESULT_SCHEMA_VERSION:()=>jt,ARK_DESIGN_DELTA_SCHEMA_VERSION:()=>la,ARK_ENFORCEMENT_STATE_SCHEMA_VERSION:()=>aa,ARK_RUN_COMPONENT_LIFETIMES:()=>br,ARK_RUN_EPHEMERAL_DEFAULT:()=>rt,ARK_RUN_GRAPH_DEFAULT_SLICE:()=>Cr,ARK_RUN_GRAPH_NODE_KINDS:()=>Zo,ARK_RUN_GRAPH_PROCESS_EDGE_KINDS:()=>Jo,ARK_RUN_GRAPH_SCHEMA_VERSION:()=>wr,ARK_RUN_GRAPH_SLICES:()=>xr,ARK_RUN_GRAPH_TECHNICAL_EDGE_KINDS:()=>Qo,ARK_RUN_INFORMATION_PACKAGE_SCHEMA_VERSION:()=>Pn,ARK_RUN_INSPECTOR_DEFAULT_HOST:()=>Hn,ARK_RUN_INSPECTOR_DEFAULT_PORT:()=>Dr,ARK_RUN_INSPECTOR_EVENTS_PATH:()=>_t,ARK_RUN_INSPECTOR_GRAPH_PATH:()=>Tt,ARK_RUN_INSPECTOR_MONITOR_SAMPLE_LIMIT:()=>te,ARK_RUN_INSPECTOR_OUTBOX_PATH:()=>Nt,ARK_RUN_INSPECTOR_SCHEMA_VERSION:()=>Nr,ARK_RUN_INSPECTOR_SNAPSHOT_PATH:()=>Pt,ARK_RUN_INSPECTOR_SSE_EVENT:()=>Lr,ARK_RUN_INSPECTOR_TRANSPORT_FALLBACK:()=>Fr,ARK_RUN_INSPECTOR_WORKFLOWS_PATH:()=>Dt,ARK_RUN_TRANSPORT_KINDS:()=>Ot,ArkRunInspectorBindError:()=>se,ArkRunInspectorProductionError:()=>ot,DEFAULT_MAX_HISTORY_SIZE:()=>Mr,DIAGNOSTIC_CATALOG:()=>vn,DIAGNOSTIC_CATALOG_SCHEMA_VERSION:()=>Qi,DIAGNOSTIC_DOCS_RELATIVE_PATH:()=>kr,DIAGNOSTIC_RULE_IDS:()=>ea,EventContractRegistryImpl:()=>gt,EventContractViolationError:()=>Be,InMemoryAuditStore:()=>mt,InMemoryEventBuffer:()=>xe,InMemoryOutboxStore:()=>to,InMemoryReadModelStore:()=>St,InMemoryWorkflowStore:()=>wt,IntentRegistry:()=>He,InvalidArkRunGraphQueryError:()=>J,InvalidArkRunSendOptionError:()=>nt,InvalidIntentNameError:()=>Ve,LayerPolicyContextError:()=>je,MANIFEST_SCHEMA_VERSION:()=>Cn,ObservedLayerFlowViolationError:()=>We,POLICY_DELTA_SCHEMA_VERSION:()=>pr,PolicyEngine:()=>we,PolicyViolationError:()=>Re,RESOLVED_CANDIDATE_FACTS_SCHEMA:()=>cr,RESOLVED_CANDIDATE_FACTS_SCHEMA_VERSION:()=>Pe,SourceMetadataOverrideError:()=>Ae,UnknownEventSourceError:()=>Ce,UnregisteredIntentError:()=>Ge,analyzeArchitectureConvergence:()=>Qe,analyzeChange:()=>bn,analyzePolicyDelta:()=>Po,analyzeProject:()=>bt,analyzeResolvedProject:()=>vt,appendDecisionTape:()=>Bo,architecturalPolicies:()=>Yn,arkRunGraphQueryFromSearchParams:()=>Fn,arkRunInspectorUrl:()=>he,buildArkRunInspectorHardening:()=>Ft,buildArkRunInspectorOutboxMonitor:()=>$e,buildArkRunInspectorSnapshot:()=>Gn,buildArkRunInspectorWorkflowsMonitor:()=>Me,buildDependencyInformationPackage:()=>me,buildPublishPolicyContext:()=>Xt,catalogFixForRuleId:()=>sa,catalogWhyForRuleId:()=>ia,checkAdapterGovernance:()=>sr,checkContract:()=>uo,classifyArkPolicyDelta:()=>fr,classifyArkRunInspectorStoreDurability:()=>Fe,closeArkRunGraphQuery:()=>Ln,closedArkRunEphemeral:()=>Tr,closedArkRunTransportKind:()=>_r,collectAnalysisConfigWarnings:()=>En,collectForbiddenCapabilityUses:()=>Ze,compareInformationPackages:()=>Er,createAICodeGate:()=>wo,createAdapter:()=>co,createAdapterResult:()=>ls,createArchitectureProfile:()=>ln,createArchitectureProfileFromArkConfig:()=>cn,createArkKernel:()=>Mt,createArkKernelFromConfig:()=>ns,createArkManifest:()=>xn,createArkTestHarness:()=>ro,createAuditTrail:()=>nn,createDependencyGraph:()=>rn,createElevenLayerArkConfig:()=>ao,createEventBus:()=>eo,createEventContractRegistry:()=>en,createIntentRegistry:()=>Bt,createLenientArkKernel:()=>Hr,createLenientArkKernelFromConfig:()=>os,createMetadataRegistry:()=>dn,createObservabilityReporter:()=>tn,createProjectionRegistry:()=>wn,createResolvedCandidateFacts:()=>lr,createSaga:()=>Uo,createStrictArkKernel:()=>Kr,createStrictArkKernelFromConfig:()=>rs,createWorkflowEngine:()=>Ct,defaultIntentRegistry:()=>qr,defineArchitectureProfilePolicy:()=>Yt,defineIntent:()=>zr,defineLayerPolicy:()=>zt,definePolicy:()=>Ue,definePort:()=>lo,definePublishPolicy:()=>Yr,detectArchitectureCycles:()=>yr,deterministicHash:()=>W,diagnosticDocsFragment:()=>$o,diagnosticDocsPath:()=>ra,elevenLayerProfile:()=>Ye,evaluateArchitectureGraph:()=>tt,explainViolation:()=>_o,extractSemanticDependencies:()=>Xe,formatArkRunGraphMermaid:()=>Or,formatArkRunInspectorSseEvent:()=>$t,getDiagnosticCatalogEntry:()=>Sn,isArkRunInspectorLoopbackHost:()=>st,isArkRunInspectorProductionEnv:()=>Un,isCataloguedOrArkRuleFamily:()=>na,isKnownDiagnosticCode:()=>ta,isLayerPolicy:()=>qt,loadContract:()=>In,loadResolvedCandidateFacts:()=>ve,policyDeltaAcknowledgementMatches:()=>gr,preflightChange:()=>Do,preflightResolvedChange:()=>Lo,replayInformationPackages:()=>qo,requestArkRunGraph:()=>$n,resolveArkRunInspectorBind:()=>Lt,resolveArkRunSendPlan:()=>Mn,resolvedFactsEvidenceRequirementsHash:()=>It,serializeDiagnosticCatalog:()=>oa,shadowInformationPackage:()=>zo,stableSerialize:()=>$,startArkRunInspector:()=>jn,syncRegistryToGraph:()=>on,toAdapterDiagnostic:()=>qn,unavailableArkRunInspectorOutboxMonitor:()=>De,unavailableArkRunInspectorWorkflowsMonitor:()=>Le,validateIntentName:()=>Wt,version:()=>Bn});module.exports=La(ou);var Bn="4.8.15";var Fa=/(^|\/)(constants|types|enums|shared-types|shared\/(?:types|constants)|test-projects)(\/|\.|$)|(?:^|\/)[^/]*(?:constants|types)(?:\.[cm]?[jt]sx?)?$/i,$a=/(^|\/)(?:kernel(?:\/|$)|events?(?:\/|\.|$)|bootstrap(?:\.[cm]?[jt]sx?)?$|emitter(?:\.[cm]?[jt]sx?)?$)|(?:^|\/)(?:intents?|publish)(?:\/|\.|$)/i,Ma=/(use-?cases?|usecases?|application|orchestrat|services?|handlers?)(\/|\.|$)/i;function Ka(e,t){let n=String(e??"").replace(/\\/g,"/").trim(),r=String(t?.fromLayer??""),o=String(t?.toLayer??"");return Fa.test(n)?"pure-shared":r==="PersistenceAdapters"&&($a.test(n)||/events?|intents?|kernel|bootstrap/i.test(`${o} ${n}`))?"kernel-emit":Ma.test(n)||(r==="DomainModel"||r==="ApplicationOrchestration")&&o==="PersistenceAdapters"?"use-case":"unknown"}i(Ka,"classifyLayerImportKind");function Ha(e){if(e.typeOnly||e.targetTypeOnlyExports||e.namedBindingsTypeOnly)return"Move the referenced type to a mutually allowed layer, use `import type`, then preflight again.";if(e.peerIsolation)return"Extract the shared dependency to a shared layer, test at the public interface, then preflight again.";let t=Ka(typeof e.target=="string"?e.target:"",{fromLayer:typeof e.fromLayer=="string"?e.fromLayer:void 0,toLayer:typeof e.toLayer=="string"?e.toLayer:void 0});return t==="pure-shared"?"Adopt the imported constants/types/pure module into DomainModel or SharedKernel (do not inject a port). Then preflight again.":t==="kernel-emit"?"Persistence must not emit. Inject a port or move the event map to SharedTypes; do not import kernel/events/bootstrap from a repository. Then preflight again.":t==="use-case"||e.portProofEligible?`Define a port in ${e.fromLayer??"the source layer"}, inject the ${e.toLayer??"outer-layer"} implementation, test at the public interface, then preflight again.`:"Classify the import: if it is constants/types/pure, adopt into DomainModel or SharedKernel; define a port only if the target is a real use-case. Then preflight again."}i(Ha,"layerImportNextAction");function Ua(e){return typeof e.target=="string"&&e.target.trim().length>0?e.target.trim():void 0}i(Ua,"arkRunCallSiteName");function Ga(e){let t=Ua(e),n=typeof e.fromLayer=="string"&&e.fromLayer.length>0?e.fromLayer:void 0;switch(e.ruleId){case"ARKRUN_MISSING_ROOT":return t?`Import createStrictArkKernel from arkgate/runtime and call it in composition root ${t} listed in arkRun.compositionRoots, then preflight again.`:"Import createStrictArkKernel from arkgate/runtime (same npm package; @arkgate/runtime is deprecated) and call it in a composition root listed in arkRun.compositionRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision.";case"ARKRUN_KERNEL_IN_DOMAIN":return t?`Move the kernel import of ${t} out of ${n??"the Domain-role layer"} into a composition root or adapter. Import from arkgate/runtime, then preflight again.`:"Move the kernel import out of the Domain-role layer into a composition root or adapter. Import from arkgate/runtime (same npm package; @arkgate/runtime is deprecated), then preflight again. Never mechanical-safe.";case"ARKRUN_DIRECT_NEW":return t?`Resolve ${t} from the kernel instead of constructing it with new, then preflight again.`:"Resolve the type from the kernel instead of constructing it with new, then preflight again. Never mechanical-safe \u2014 rewiring construction is a design decision.";case"ARKRUN_UNDECLARED_EMIT":return t?`Add ${t} to raises or sends on the managed component, then preflight again.`:"Add the existing call-site name to raises or sends on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new emit stays judgment.";case"ARKRUN_UNDECLARED_HANDLE":return t?`Add ${t} to reactsTo on the managed component, then preflight again.`:"Add the existing call-site name to reactsTo on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new handle stays judgment.";case"ARKRUN_UNDECLARED_DEPEND":return t?`Add ${t} to uses on the managed component, then preflight again.`:"Add the existing call-site name to uses on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new depend stays judgment.";case"ARKRUN_TRANSPORT_BYPASS":return t?`Send through the ArkRun kernel transport instead of importing ${t}, then preflight again.`:"Send through the ArkRun kernel transport instead of importing that broker or emitter, then preflight again. Never mechanical-safe \u2014 homemade buses stay judgment.";default:return`Resolve ${typeof e.ruleId=="string"&&e.ruleId.length>0?e.ruleId:"ARK_UNKNOWN"} without weakening ark.config.json, then run Ark again.`}}i(Ga,"arkRunNextAction");function ge(e){switch(e.ruleId){case"LAYER_IMPORT_VIOLATION":return Ha(e);case"FORBIDDEN_GLOBAL":return`Inject ${e.target??"the capability"} through a port, test at the public interface, then preflight again.`;case"CAPABILITY_VIOLATION":return`Define a ${String(e.capability??"capability")} port in ${e.fromLayer??"the walled layer"}, bind the implementation outside it, test at the public interface, then preflight again.`;case"CIRCULAR_DEPENDENCY":return"Extract the shared dependency into a third module, test at the public interface, then preflight again.";case"RAW_EVENT_PUBLISH":return"Publish through a registered intent creator, then run Ark again.";case"LITERAL_PATH_DRIFT":return typeof e.target=="string"&&e.target.length>0?`Rewrite the literal to ${e.target}, or run \`arkgate-check --path-drift --base-ref <ref> --write\` to apply every anchored replacement.`:"Rewrite the literal to the rename destination, or run `arkgate-check --path-drift --base-ref <ref> --write` to apply every anchored replacement.";case"LITERAL_PATH_UNRESOLVED":return"Read the candidate and decide: fix the path, or leave it. Advisory \u2014 with no rename to anchor it there is no destination to propose, so --write never touches it.";case"PUBLISH_MISSING_SOURCE":return"Add metadata.source to the publish call, then run Ark again.";case"INVARIANT_COVERAGE_OUTSIDE_ROOTS":return"Move the covering test under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json, then run Ark again.";case"INVARIANT_CATALOG_EMPTY":return typeof e.file=="string"&&e.file.length>0?`Add 1\u20132 short phrases to invariants[] in ${e.file}, then run ark-check --doctor. Starters show the shape.`:"Add 1\u20132 short phrases to invariants[] in arkrules/<Domain>.json, then run ark-check --doctor. Starters show the shape.";case"ARKRULE_STRUCTURE":case"ARKRULE_INVARIANT":case"INVARIANT_UNCOVERED":return`Fix the structure or invariant for ${typeof e.arkruleId=="string"&&e.arkruleId.length>0?e.arkruleId:"the ArkRule"} (declared in ${typeof e.arkruleSource=="string"&&e.arkruleSource.length>0?e.arkruleSource:"arkrules/<Layer>.json"}), then preflight again. Do not demote the rule without a hash-bound policy acknowledgement.`;case"ARKRUN_MISSING_ROOT":case"ARKRUN_KERNEL_IN_DOMAIN":case"ARKRUN_DIRECT_NEW":case"ARKRUN_UNDECLARED_EMIT":case"ARKRUN_UNDECLARED_HANDLE":case"ARKRUN_UNDECLARED_DEPEND":case"ARKRUN_TRANSPORT_BYPASS":return Ga(e);case"ARKORDER_MISSING_PLANE":return typeof e.target=="string"&&e.target.length>0?`Import createOrderPlane from arkgate/order and call it in plane root ${e.target} listed in arkOrder.planeRoots, then preflight again.`:"Import createOrderPlane from arkgate/order and call it in a plane root listed in arkOrder.planeRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision.";case"ARKORDER_KERNEL_IN_DOMAIN":return"Move the arkgate/order import out of the Domain-role layer into a plane root or adapter, then preflight again. Never mechanical-safe.";case"ARKORDER_GENERIC_UPDATE":return"Don't use a generic update. First freeze with release(). Later, propose the change, then apply it.";case"ARKORDER_TOO_MANY_PARAMS":return"Cut \u03BE to the slow keys that actually slave the rest, then preflight again. Never mechanical-safe.";case"ARKORDER_INGEST_WRITES_XI":return"Keep ingest results as absorb/escalate_up/hold only. Change \u03BE with proposeRelease then apply(ProposeResult). Never mechanical-safe.";case"ARKORDER_XI_FIELD_WRITE":return typeof e.target=="string"&&e.target.length>0?`Don't write ${e.target} from a use-case. Take the event in, or change that choice through the valve (proposeRelease then apply), not a generic update.`:"Don't write a named product choice from a use-case. Take the event in, or change that choice through the valve (proposeRelease then apply), not a generic update.";case"ARKORDER_UNVALVED_RELEASE":return"Change the choice with proposeRelease then apply. release() is only the first freeze. Never mechanical-safe.";default:return typeof e.ruleId=="string"&&e.ruleId.startsWith("ARKRULE_")?`Fix the ArkRule ${typeof e.arkruleId=="string"?e.arkruleId:e.ruleId}, then preflight again.`:`Resolve ${typeof e.ruleId=="string"&&e.ruleId.length>0?e.ruleId:"ARK_UNKNOWN"} without weakening ark.config.json, then run Ark again.`}}i(ge,"deterministicNextAction");var jt="1.5",Vr="docs/diagnostics.md",jr={$schema:"https://json-schema.org/draft/2020-12/schema",$id:"https://unpkg.com/arkgate@3/schemas/ark.analysis-result.schema.json",title:"ArkGate analysis result",type:"object",additionalProperties:!1,required:["schemaVersion","mode","valid","completeness","completenessReasons","diagnostics"],allOf:[{if:{properties:{completeness:{enum:["partial","unavailable"]}},required:["completeness"]},then:{properties:{valid:{const:!1}}}},{if:{properties:{mode:{const:"resolved-candidate-facts"},completeness:{enum:["complete","partial"]}},required:["mode","completeness"]},then:{required:["policyHash","resolverIdentity","factsHash","candidateTreeHash"]}},{if:{properties:{completeness:{const:"complete"}},required:["completeness"]},then:{properties:{completenessReasons:{maxItems:0}}},else:{properties:{completenessReasons:{minItems:1}}}}],properties:{schemaVersion:{const:"1.5"},mode:{enum:["lexical-compatibility","resolved-candidate-facts"]},valid:{type:"boolean"},completeness:{enum:["complete","partial","unavailable"]},completenessReasons:{type:"array",items:{type:"object",additionalProperties:!1,required:["code","message"],properties:{code:{type:"string",minLength:1},message:{type:"string",minLength:1},file:{type:"string",minLength:1}}}},policyHash:{type:"string",minLength:1},resolverIdentity:{type:"string",minLength:1},factsHash:{type:"string",minLength:1},candidateTreeHash:{type:"string",minLength:1},diagnostics:{type:"array",items:{type:"object",additionalProperties:!1,required:["ruleId","severity","message","location","evidence"],properties:{ruleId:{type:"string",minLength:1},severity:{enum:["error","warning"]},message:{type:"string",minLength:1},location:{type:"object",additionalProperties:!1,required:["file","line","column"],properties:{file:{type:"string",minLength:1},line:{type:"integer",minimum:1},column:{type:"integer",minimum:1}}},evidence:{type:"object",additionalProperties:!1,properties:{target:{type:"string"},fromLayer:{type:"string"},toLayer:{type:"string"},typeOnly:{type:"boolean"},targetTypeOnlyExports:{type:"boolean"},sourcePureTypeModule:{type:"boolean"},namedBindingsTypeOnly:{type:"boolean"},portProofEligible:{type:"boolean"},peerIsolation:{type:"boolean"},capability:{type:"string",minLength:1},edgeKind:{type:"string",minLength:1},arkruleId:{type:"string",minLength:1},arkruleSource:{type:"string",minLength:1}}},nextAction:{type:"string",minLength:1},findingRef:{type:"string",minLength:1,pattern:"^fnv1a-[0-9a-f]{8}$"},targetKey:{type:"string",minLength:1},docsCodePath:{type:"string",minLength:1}}}}}};function Wn(e){let t=typeof e.ruleId=="string"?e.ruleId:typeof e.code=="string"?e.code:void 0,n=typeof e.file=="string"?e.file:void 0,r=typeof e.fromLayer=="string"?e.fromLayer:void 0,o=typeof e.toLayer=="string"?e.toLayer:void 0,s=typeof e.target=="string"?e.target:void 0;return[t,n,r??"",o??"",s??""].join("|")}i(Wn,"adapterFindingTargetKey");function zn(e){let t=new Map;return e.map(n=>{let r=Wn(n),o=(t.get(r)??0)+1;return t.set(r,o),o===1?r:`${r}#${o}`})}i(zn,"adapterFindingOccurrenceTargetKeys");function Br(e){let t=2166136261;for(let n=0;n<e.length;n+=1)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return`fnv1a-${(t>>>0).toString(16).padStart(8,"0")}`}i(Br,"adapterFindingRefFromTargetKey");function Wr(e){return`${Vr}#${e}`}i(Wr,"adapterDocsCodePath");function O(e){return typeof e=="string"&&e.length>0?e:void 0}i(O,"text");function as(e,t){return Number.isInteger(e)&&Number(e)>0?Number(e):t}i(as,"positiveInteger");function Va(e,t,n){return ge({ruleId:e,target:O(t.target)??O(n.target)??void 0,fromLayer:O(t.fromLayer)??void 0,toLayer:O(t.toLayer)??void 0,typeOnly:t.typeOnly===!0,targetTypeOnlyExports:t.targetTypeOnlyExports===!0,namedBindingsTypeOnly:t.namedBindingsTypeOnly===!0,portProofEligible:t.portProofEligible===!0,peerIsolation:t.peerIsolation===!0,sourcePureTypeModule:t.sourcePureTypeModule===!0,edgeKind:O(t.edgeKind)??void 0,capability:O(t.capability)??O(n.capability)??void 0,arkruleId:O(t.arkruleId)??void 0,arkruleSource:O(t.arkruleSource)??void 0})}i(Va,"nextActionForDiagnostic");function qn(e,t="error",n){let r=O(e.ruleId)??O(e.code)??"ARK_UNKNOWN",o=e.severity==="warning"||e.failsStrict===!1||e.typeOnly===!0&&e.peerIsolation!==!0?"warning":t,s={...O(e.target)?{target:O(e.target)}:{},...O(e.fromLayer)?{fromLayer:O(e.fromLayer)}:{},...O(e.toLayer)?{toLayer:O(e.toLayer)}:{},...typeof e.typeOnly=="boolean"?{typeOnly:e.typeOnly}:{},...typeof e.targetTypeOnlyExports=="boolean"?{targetTypeOnlyExports:e.targetTypeOnlyExports}:{},...typeof e.sourcePureTypeModule=="boolean"?{sourcePureTypeModule:e.sourcePureTypeModule}:{},...typeof e.namedBindingsTypeOnly=="boolean"?{namedBindingsTypeOnly:e.namedBindingsTypeOnly}:{},...typeof e.portProofEligible=="boolean"?{portProofEligible:e.portProofEligible}:{},...typeof e.peerIsolation=="boolean"?{peerIsolation:e.peerIsolation}:{},...O(e.capability)?{capability:O(e.capability)}:{},...O(e.edgeKind)?{edgeKind:O(e.edgeKind)}:{},...O(e.arkruleId)?{arkruleId:O(e.arkruleId)}:{},...O(e.arkruleSource)?{arkruleSource:O(e.arkruleSource)}:{}},a=n??Wn(e),l=Br(a);return{ruleId:r,severity:o,message:O(e.message)??r,location:{file:O(e.file)??"<unknown>",line:as(e.line,1),column:as(e.column,1)},evidence:s,nextAction:O(e.nextAction)??Va(r,s,e),findingRef:l,targetKey:a,docsCodePath:Wr(r)}}i(qn,"toAdapterDiagnostic");function ls(e){let t=e.completeness??"complete",n=e.mode??"lexical-compatibility";if(t==="complete"&&(e.completenessReasons?.length??0)>0)throw new Error("completenessReasons must be empty when completeness is complete.");let r=t==="complete"?[]:e.completenessReasons&&e.completenessReasons.length>0?e.completenessReasons.map(y=>({code:O(y.code)??"ANALYSIS_EVIDENCE_INCOMPLETE",message:O(y.message)??`Analysis ${t}: required evidence is incomplete.`,...O(y.file)?{file:O(y.file)}:{}})):[{code:t==="unavailable"?"ANALYSIS_UNAVAILABLE":"ANALYSIS_EVIDENCE_INCOMPLETE",message:`Analysis ${t}: required evidence is incomplete.`}],o={...O(e.policyHash)?{policyHash:O(e.policyHash)}:{},...O(e.resolverIdentity)?{resolverIdentity:O(e.resolverIdentity)}:{},...O(e.factsHash)?{factsHash:O(e.factsHash)}:{},...O(e.candidateTreeHash)?{candidateTreeHash:O(e.candidateTreeHash)}:{}};if(n==="resolved-candidate-facts"&&t!=="unavailable"){for(let y of["policyHash","resolverIdentity","factsHash","candidateTreeHash"])if(!o[y])throw new Error(`${y} is required for resolved ${t} adapter evidence.`)}let s=e.violations??[],a=e.warnings??[],l=zn(s),c=zn(a),p=[...s.map((y,u)=>qn(y,"error",l[u])),...a.map((y,u)=>qn(y,"warning",c[u]))],f={schemaVersion:"1.5",completenessReasons:r,diagnostics:p};if(n==="resolved-candidate-facts"){if(t==="unavailable")return{...f,mode:n,valid:!1,completeness:t,...o};let y={policyHash:o.policyHash,resolverIdentity:o.resolverIdentity,factsHash:o.factsHash,candidateTreeHash:o.candidateTreeHash};return t==="complete"?{...f,mode:n,valid:e.valid,completeness:t,...y}:{...f,mode:n,valid:!1,completeness:t,...y}}return t==="complete"?{...f,mode:n,valid:e.valid,completeness:t,...o}:{...f,mode:n,valid:!1,completeness:t,...o}}i(ls,"createAdapterResult");var He=class{static{i(this,"IntentRegistry")}intents=new Map;dependencies=new Map;productions=new Map;define(t,n){if(this.intents.has(t))throw new Error(`Intent "${t}" is already registered. Intent names must be unique within a registry.`);let r=i(s=>({intent:t,payload:s,metadata:{occurredAt:new Date().toISOString(),source:"unknown"}}),"fn");Object.defineProperty(r,"name",{value:t,enumerable:!0,configurable:!1,writable:!1});let o=r;if(this.intents.set(t,o),n?.dependsOn)for(let s of n.dependsOn)this.declareDependency(t,s);if(n?.produces)for(let s of n.produces)this.declareProduction(t,s);return o}declareDependency(t,n){this.dependencies.has(t)||this.dependencies.set(t,new Set),this.dependencies.get(t).add(n)}declareProduction(t,n){this.productions.has(t)||this.productions.set(t,new Set),this.productions.get(t).add(n)}get(t){return this.intents.get(t)}list(){return Array.from(this.intents.values())}getDependencies(t){let n=this.dependencies.get(t);return n?Array.from(n):[]}getProductions(t){let n=this.productions.get(t);return n?Array.from(n):[]}getAllRelationships(){let t=[];for(let[n,r]of this.dependencies.entries())for(let o of r)t.push({from:n,to:o,kind:"dependsOn"});for(let[n,r]of this.productions.entries())for(let o of r)t.push({from:n,to:o,kind:"produces"});return t}has(t){return this.intents.has(t)}clear(){this.intents.clear(),this.dependencies.clear(),this.productions.clear()}};var cs=new He;function zr(e,t){return cs.define(e,t)}i(zr,"defineIntent");function Bt(){return new He}i(Bt,"createIntentRegistry");var qr=cs;var ds=["Domain.","Application.","Adapter.","Workflow.","Job.","Presentation.","Reporting.","Metadata.","Security.","Audit.","Observability.","Kernel."];function Wt(e){if(!e||typeof e!="string")return{valid:!1,reason:"Intent name must be a non-empty string"};if(!ds.some(n=>e.startsWith(n)))return{valid:!1,reason:`Intent "${e}" must start with one of: ${ds.join(", ")}`};let t=e.slice(e.indexOf(".")+1);return!t||!/^[A-Za-z][A-Za-z0-9_.]*$/.test(t)?{valid:!1,reason:`Intent "${e}" has an invalid segment after the layer prefix`}:{valid:!0}}i(Wt,"validateIntentName");var Re=class extends Error{static{i(this,"PolicyViolationError")}violations;constructor(t){let n=t.map(r=>`- ${r.policyName}: ${r.message}`).join(`
|
|
6
6
|
`);super(`Hard policy violation(s) detected:
|
|
7
|
-
${n}`),this.name="PolicyViolationError",this.violations=t}};var Se=class{static{s(this,"PolicyEngine")}policies=[];constructor(t=[]){for(let n of t)this.add(n)}add(t){if(this.policies.some(n=>n.name===t.name))throw new Error(`Policy "${t.name}" is already registered in this engine.`);this.policies.push(t)}getPolicies(){return[...this.policies]}evaluate(t){let n=[];for(let i of this.policies){let a=i.check(t);if(a!==!0){if(a===!1){n.push({policyName:i.name,severity:i.severity,message:`Policy "${i.name}" was violated.`});continue}if(Array.isArray(a))for(let l of a)n.push({policyName:i.name,severity:i.severity,message:l.message,details:l.details});else n.push({policyName:i.name,severity:i.severity,message:a.message,details:a.details})}}let r=n.filter(i=>i.severity==="hard"),o=n.filter(i=>i.severity==="soft");return{passed:n.length===0,violations:n,hardViolations:r,softViolations:o}}enforce(t){let n=this.evaluate(t);if(n.hardViolations.length>0)throw new he(n.hardViolations);return n}clear(){this.policies.length=0}};function Ue(e){let t=e.severity??"soft";return{name:e.name,severity:t,tags:e.tags,owner:e.owner,version:e.version,rationale:e.rationale,enforcementMode:e.enforcementMode,deprecated:e.deprecated,replacedBy:e.replacedBy,check:e.check}}s(Ue,"definePolicy");function Da(e){let t=e.indexOf(".");return t>=0?e.slice(0,t):e}s(Da,"defaultLayerOf");function ci(e,t){return t.resolveLayer?.(e)??Da(e)}s(ci,"resolveLayer");function La(e,t,n){return e===n.from&&t===n.to}s(La,"matchesRule");function Bt(e){let t=e.name??"Layer isolation",n=e.severity??"hard";return Ue({name:t,severity:n,tags:["layer"],check:s(r=>{let o=[...(r.edges??[]).filter(a=>a.kind==="declared"||a.kind==="produces").map(a=>({from:a.from,to:a.to})),...(r.relationships??[]).filter(a=>a.kind==="dependsOn").map(a=>({from:a.from,to:a.to}))],i=[];for(let a of o){let l=ci(a.from,e),c=ci(a.to,e);for(let p of e.rules)!p.allowed&&La(l,c,p)&&i.push({policyName:t,severity:n,message:p.message??`Layer violation: ${a.from} (${l}) must not relate to ${a.to} (${c})`})}return i.length>0?i:!0},"check")})}s(Bt,"defineLayerPolicy");function Wt(e){return e.tags?.includes("layer")??!1}s(Wt,"isLayerPolicy");var Yn={layerIsolation(){return Yn.cleanArchitectureMatrix()},cleanArchitectureMatrix(){return Bt({name:"Clean architecture matrix",severity:"hard",rules:[{from:"Domain",to:"Adapter",allowed:!1},{from:"Domain",to:"Application",allowed:!1},{from:"Adapter",to:"Application",allowed:!1},{from:"Adapter",to:"Domain",allowed:!1}]})}};function zt(e,t={}){return Bt({name:t.name??`${e.name} layer policy`,severity:t.severity??"hard",rules:e.rules,resolveLayer:e.resolveLayer})}s(zt,"defineArchitectureProfilePolicy");function qt(e){return t=>({event:t,relationships:e.intentRegistry?.getAllRelationships(),edges:e.dependencyGraph?.getEdges()})}s(qt,"buildPublishPolicyContext");function qr(e){return Ue(e)}s(qr,"definePublishPolicy");var Ge=class extends Error{static{s(this,"UnregisteredIntentError")}intentName;constructor(t){super(`Intent "${t}" is not registered. Register it with IntentRegistry.define() before publish/subscribe, including metadata.source producer intents in strict mode.`),this.name="UnregisteredIntentError",this.intentName=t}},Ve=class extends Error{static{s(this,"InvalidIntentNameError")}intentName;reason;constructor(t,n){super(`Invalid intent name "${t}": ${n}`),this.name="InvalidIntentNameError",this.intentName=t,this.reason=n}},je=class extends Error{static{s(this,"LayerPolicyContextError")}constructor(){super("Layer/architecture policies require intentRegistry, dependencyGraph, or a custom getPolicyContext. Without graph/registry context, layer policies cannot inspect relationships."),this.name="LayerPolicyContextError"}},Be=class extends Error{static{s(this,"EventContractViolationError")}intentName;issues;constructor(t,n){super(`Event contract violation for "${t}". Register a matching event contract/version or fix the payload before publishing.`),this.name="EventContractViolationError",this.intentName=t,this.issues=n}},we=class extends Error{static{s(this,"UnknownEventSourceError")}intentName;source;constructor(t,n){super(n?`Event "${t}" metadata.source "${n}" is not registered. Register the producer intent or publish from a known source.`:`Event "${t}" must include metadata.source. Strict Ark uses source to enforce observed layer flow.`),this.name="UnknownEventSourceError",this.intentName=t,this.source=n}},Re=class extends Error{static{s(this,"SourceMetadataOverrideError")}boundSource;attemptedSource;constructor(t,n){super(`Source-bound publisher for "${t}" cannot publish with metadata.source "${n}". Create a publisher for the intended source instead.`),this.name="SourceMetadataOverrideError",this.boundSource=t,this.attemptedSource=n}},We=class extends Error{static{s(this,"ObservedLayerFlowViolationError")}source;intentName;fromLayer;toLayer;constructor(t,n,r,o,i){super(i??`Observed layer violation: "${t}" (${r}) must not produce "${n}" (${o}). Route this through an allowed layer or adjust the architecture profile rule.`),this.name="ObservedLayerFlowViolationError",this.source=t,this.intentName=n,this.fromLayer=r,this.toLayer=o}};function Yt(e,t){if(!(!t.strictRegistry&&!t.validateIntentNaming)){if(t.validateIntentNaming){let n=jt(e);if(!n.valid)throw new Ve(e,n.reason)}if(t.strictRegistry&&t.intentRegistry&&!t.intentRegistry.has(e))throw new Ge(e)}}s(Yt,"assertIntentAllowed");function di(e,t){if(t.requireKnownSource){if(!e.metadata.source||e.metadata.source==="unknown")throw new we(e.intent);if(t.intentRegistry&&!t.intentRegistry.has(e.metadata.source))throw new we(e.intent,e.metadata.source)}}s(di,"assertSourceAllowed");function Xt(e,t){if(!t.eventContracts)return;let n=t.eventContracts.validate(e);if(!n.ok&&(t.strictEventContracts||n.contract))throw new Be(e.intent,n.issues)}s(Xt,"assertContractAllowed");function lt(e){if(typeof e!="object"||e===null||Array.isArray(e))return!1;let t=Object.getPrototypeOf(e);return t===Object.prototype||t===null}s(lt,"isPlainRecord");function ct(e){return Array.isArray(e)?e.map(ct):lt(e)?Object.fromEntries(Object.entries(e).map(([t,n])=>[t,ct(n)])):e}s(ct,"clonePatchValue");function Yr(e,t,n="payload"){let r={...e};for(let[o,i]of Object.entries(t)){let a=`${n}.${o}`;if(!(o in r)||r[o]===void 0){r[o]=ct(i);continue}if(lt(r[o])&<(i)){r[o]=Yr(r[o],i,a);continue}if(Array.isArray(r[o])&&Array.isArray(i)){r[o]=Xr(r[o],i,a);continue}throw new Error(`Interceptor patch cannot overwrite existing ${a}.`)}return r}s(Yr,"mergeRecordPatch");function Xr(e,t,n="payload"){let r=[...e];return t.forEach((o,i)=>{let a=`${n}[${i}]`;if(i>=r.length||r[i]===void 0){r[i]=ct(o);return}if(lt(r[i])&<(o)){r[i]=Yr(r[i],o,a);return}if(Array.isArray(r[i])&&Array.isArray(o)){r[i]=Xr(r[i],o,a);return}throw new Error(`Interceptor patch cannot overwrite existing ${a}.`)}),r}s(Xr,"mergeArrayPatch");function ui(e,t){if(Array.isArray(t)){if(e===void 0)return ct(t);if(!Array.isArray(e))throw new Error("Array interceptor patch requires an array payload.");return Xr(e,t)}if(e===void 0)return ct(t);if(!lt(e))throw new Error("Object interceptor patch requires an object payload.");return Yr(e,t)}s(ui,"applyPayloadPatch");async function pi(e,t){if(e.metadata.allowInterception===!1)return e;let n=[...t.interceptorsForIntent(e.intent)],r=e;for(let o of n){let i=[];try{if(await Promise.resolve(o.interceptor({event:r,intercept:s(c=>{i.push(c)},"intercept")})),i.length===0)continue;let a=new Date().toISOString(),l={...r,metadata:{...r.metadata,interceptions:[...r.metadata.interceptions??[],{interceptorId:o.interceptorId,timestamp:a}]}};for(let c of i)l={...l,payload:ui(l.payload,c),metadata:{...l.metadata}};Xt(l,{eventContracts:t.eventContracts,strictEventContracts:t.strictEventContracts}),r=l,o.lastInterceptedAt=a,t.appendTrace({type:"event.intercepted",timestamp:a,intent:r.intent,correlationId:r.metadata.correlationId,traceId:r.metadata.traceId,spanId:r.metadata.spanId,details:{registrationId:o.registrationId,interceptorId:o.interceptorId,patchesApplied:i.length}}),await t.recordAudit("event.intercepted",r,{registrationId:o.registrationId,interceptorId:o.interceptorId,patchesApplied:i.length})}catch(a){await Fa(o,r,a,t)}}return r}s(pi,"applyInterceptors");async function Fa(e,t,n,r){let o=n instanceof Error?n.message:String(n);r.appendTrace({type:"interceptor.error",timestamp:new Date().toISOString(),intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:{registrationId:e.registrationId,interceptorId:e.interceptorId,error:o}}),await r.recordAudit("interceptor.error",t,{registrationId:e.registrationId,interceptorId:e.interceptorId,error:o})}s(Fa,"recordInterceptorError");var fi=new Map;function gi(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}s(gi,"escapeLiteral");function Xn(e){let t="";for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"&&n+1<e.length){let o=e[n+1];if("*?{}[],".includes(o)||o==="\\"){t+="\\"+o,n+=1;continue}t+="/";continue}t+=r}return t}s(Xn,"normalizeGlobSeparators");function Ma(e){let t=0;for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"){n+=1;continue}if(r==="{")t+=1;else if(r==="}"&&(t-=1,t<0))return!1}return t===0}s(Ma,"bracesBalanced");function Ae(e){let t=fi.get(e);if(t)return t;let n=Xn(e),r=Ma(n),o="",i=0;for(let l=0;l<n.length;l+=1){let c=n[l];c==="\\"&&l+1<n.length?(o+=gi(n[l+1]),l+=1):c==="*"?n[l+1]==="*"?n[l+2]==="/"?(o+="(?:.*/)?",l+=2):(o+=".*",l+=1):o+="[^/]*":c==="?"?o+="[^/]":c==="{"&&r?(o+="(?:",i+=1):c==="}"&&r&&i>0?(o+=")",i-=1):c===","&&r&&i>0?o+="|":o+=gi(c)}let a=new RegExp(`^${o}$`);return fi.set(e,a),a}s(Ae,"globToRegExp");function $a(e){return Xn(String(e)).split("/").filter(Boolean).filter(n=>n!=="**"&&n!=="*"&&!n.includes("*")&&!n.includes("?")&&!n.includes("{")&&!n.includes("["))}s($a,"concreteGlobSegments");function Zr(e,t){let n=Xn(String(e)),r=$a(n),o=n.replace(/\*/g,"").length,i=r.length*1e4+o;if(t==null||t==="")return i;let a=String(t).split(/[/\\]/).filter(Boolean);if(r.length===0)return o;let l=0,c=-1;for(let p of r){let g=-1;for(let h=l;h<a.length;h+=1)if(a[h]===p){g=h;break}if(g<0)return i;c=g,l=g+1}return(c+1)*1e6+r.length*1e4+o}s(Zr,"patternSpecificity");function ce(e,t){let n=String(e).split(/[/\\]/).join("/"),r,o=-1;for(let i of t??[])if(!(i.exclude??[]).some(a=>Ae(a).test(n))){for(let a of i.patterns??[])if(Ae(a).test(n)){let l=Zr(a,n);l>o&&(o=l,r=i.name)}}return r}s(ce,"layerForRelativePath");function mi(e,t){if(!t?.length)return;let n=String(e).split(/[/\\]/).filter(Boolean),r=new Set(t.map(o=>String(o).toLowerCase()));for(let o=0;o<n.length-1;o+=1)if(r.has(n[o].toLowerCase()))return`${n[o].toLowerCase()}/${n[o+1].toLowerCase()}`}s(mi,"sliceIdForPath");function Ka(e){let t=new Set;for(let n of e??[]){let o=Xn(String(n)).split("/").filter(Boolean);for(let i=0;i<o.length;i+=1){let a=o[i];if((a==="**"||a==="*")&&i>0){let l=o[i-1];l&&!l.includes("*")&&!l.includes("{")&&!l.includes("}")&&t.add(l)}}}return[...t]}s(Ka,"inferSliceFoldersFromPatterns");function Ha(e,t,n){if(Array.isArray(e.sliceFolders)&&e.sliceFolders.length>0)return e.sliceFolders.filter(o=>typeof o=="string"&&o.length>0);let r=(n??[]).find(o=>o.name===t);return Ka(r?.patterns)}s(Ha,"resolveSliceFolders");function yi(e){return String(e).split(/[/\\]/).filter(t=>!!t&&t!==".").map(t=>t.toLowerCase())}s(yi,"normalizeSegments");function Ai(e){let t=e.length;for(;t>0&&e[t-1]==="/";)t-=1;return e.slice(0,t)}s(Ai,"trimTrailingSlashes");var Ua=["src","app"];function Ga(e){let t=Ai(e.replace(/^[./]+/,""));return t==="*"||t==="**"}s(Ga,"isBlanketRoot");function hi(e,t){if(!e||!t?.length)return!1;let n=String(e).split(/[/\\]/).join("/"),r=n.toLowerCase(),o=yi(n);for(let i of t){if(typeof i!="string"||i.length===0||Ga(i))continue;if(i.includes("*")){let c=Ai(i.toLowerCase());if(Ae(c).test(r)||Ae(`${c}/**`).test(r))return!0;continue}let a=yi(i);if(a.length===0)continue;let l=Ua.includes(o[0])&&a[0]!==o[0]?[0,1]:[0];for(let c of l){if(c+a.length>o.length)continue;let p=!0;for(let g=0;g<a.length;g+=1)if(o[c+g]!==a[g]){p=!1;break}if(p)return!0}}return!1}s(hi,"pathUnderSharedRoot");function Ri(e,t){let n=String(e).split(/[/\\]/).filter(Boolean).join("/").toLowerCase();if(!n)return!1;let r=t.toLowerCase();return n===r?!0:!n.includes("/")&&r.endsWith(`/${n}`)}s(Ri,"sliceMatchesDeclaration");function Va(e,t,n){return!e?.length||!t||!n?!1:e.some(r=>r&&typeof r.from=="string"&&typeof r.to=="string"&&Ri(r.from,t)&&Ri(r.to,n))}s(Va,"crossSliceEdgeAllowed");function ja(e){if(!e.fromPath)return{denied:!0,reason:"missing-path"};if(e.folderCount<=0)return{denied:!0,reason:"no-slice-folders"};let t=!!e.fromSlice||e.fromShared===!0;if(!e.toPath)return t?e.fromSlice?{denied:!0,reason:"missing-path"}:{denied:!1}:{denied:!0,reason:"unclassifiable-path"};let n=!!e.toSlice||e.toShared===!0;return!t||!n?{denied:!0,reason:"unclassifiable-path"}:!e.fromSlice||!e.toSlice?{denied:!1}:e.fromSlice===e.toSlice?{denied:!1}:e.crossSliceAllowed?{denied:!1}:{denied:!0,reason:"cross-slice"}}s(ja,"peerIsolationDecision");function dt(e,t){switch(e){case"cross-slice":return`cross-slice edge ${t.fromSlice??"?"} \u2192 ${t.toSlice??"?"}. Extract the shared code, use events/ports across slices, or declare the edge in the rule's allowedCrossSlice.`;case"unclassifiable-path":{let n=[t.fromSlice?void 0:t.fromPath,t.toSlice?void 0:t.toPath].filter(o=>!!o);return`unclassifiable path${n.length>0?` (${n.join(", ")})`:""} \u2014 ArkGate cannot place it in a slice, so it cannot prove this is not a cross-slice edge. Move it into a slice, or declare its root in the rule's sharedRoots.`}case"no-slice-folders":return"no slice folders \u2014 peerIsolation is on but no slice folder resolves from the rule or the layer patterns. Set sliceFolders on the rule.";default:return"no path evidence for this edge \u2014 peerIsolation needs the importer and importee paths."}}s(dt,"peerIsolationDenyExplanation");function ut(e,t,n,r){return ze(e,t,n,r)?.rule}s(ut,"findDeniedEdgeRule");function ze(e,t,n,r){for(let o of e??[])if(!(o.from!==t||o.to!==n)&&o.allowed===!1){if(o.peerIsolation){let i=r?.fromPath,a=r?.toPath,l=Ha(o,t,r?.layers),c=i?mi(i,l):void 0,p=a?mi(a,l):void 0,g=ja({fromPath:i,toPath:a,folderCount:l.length,fromSlice:c,toSlice:p,fromShared:!c&&hi(i,o.sharedRoots),toShared:!p&&hi(a,o.sharedRoots),crossSliceAllowed:Va(o.allowedCrossSlice,c,p)});if(g.denied)return{rule:o,peerIsolationReason:g.reason,fromSlice:c,toSlice:p};continue}if(t!==n)return{rule:o}}}s(ze,"findDeniedEdgeDecision");async function ki(e,t){if(t.mode==="off"||!t.architectureProfile)return;let n=e.metadata.source;if(!n||n==="unknown")return;let r=t.architectureProfile,o=r.resolveLayer(n),i=r.resolveLayer(e.intent);if(!o||!i)return;let a=ut(r.rules,o,i);if(!a)return;let l=t.mode,c=a.message??`Observed layer violation: "${n}" (${o}) must not produce "${e.intent}" (${i}).`,p={source:n,intent:e.intent,fromLayer:o,toLayer:i,severity:l,message:c,rule:a};if(t.appendTrace({type:"layer.observedViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:p}),await t.recordAudit("layer.observedViolation",e,p),l==="hard")throw new We(n,e.intent,o,i,c)}s(ki,"assertObservedLayerFlowAllowed");async function Ii(e,t){let n=t.getPolicyContext(e),r;try{r=t.policyEngine.enforce(n)}catch(o){throw o instanceof he&&(t.appendTrace({type:"policy.hardViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:{violations:o.violations}}),await t.recordAudit("policy.hardViolation",e,{violations:o.violations})),o}r.softViolations.length>0&&(t.appendTrace({type:"policy.softViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:{violations:r.softViolations}}),await t.recordAudit("policy.softViolation",e,{violations:r.softViolations}),t.onSoftViolation&&await t.safeHook(()=>t.onSoftViolation(r,e),"onSoftViolation",e))}s(Ii,"enforcePublishPolicy");function Ba(e,t){e.history.push(t),e.maxHistorySize!==void 0&&e.history.length>e.maxHistorySize&&e.history.splice(0,e.history.length-e.maxHistorySize)}s(Ba,"appendHistory");function Zt(e,t){e.trace.push(t),e.maxHistorySize!==void 0&&e.trace.length>e.maxHistorySize&&e.trace.splice(0,e.trace.length-e.maxHistorySize);for(let n of e.traceSinks)try{n(t)}catch{}}s(Zt,"appendTrace");async function Zn(e,t,n,r){if(e.auditTrail)try{await e.auditTrail.record({type:t,source:n.metadata.source,intent:n.intent,correlationId:n.metadata.correlationId,causationId:n.metadata.causationId,subject:n.intent,details:r})}catch(o){Zt(e,{type:"hook.error",timestamp:new Date().toISOString(),intent:n.intent,correlationId:n.metadata.correlationId,traceId:n.metadata.traceId,spanId:n.metadata.spanId,details:{hook:"auditTrail",error:o instanceof Error?o.message:String(o)}})}}s(Zn,"recordAudit");async function bi(e,t){let n={intent:t.intent,source:t.metadata.source,suggestion:"Publish through a registered intent creator so strict registry, contracts, and agent tooling share one source of truth."};Zt(e,{type:"event.rawPublish",timestamp:new Date().toISOString(),intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:n}),await Zn(e,"event.rawPublish",t,n)}s(bi,"recordRawPublishDiagnostic");async function Ei(e,t,n,r){let o={event:t,publishedAt:new Date().toISOString(),subscribersNotified:n};return Ba(e,o),await e.eventBuffer?.enqueue(t,r),Zt(e,{type:"event.published",timestamp:o.publishedAt,intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:{subscribersNotified:n}}),await Zn(e,"event.published",t,{subscribersNotified:n}),o}s(Ei,"recordSuccessfulPublish");function Jr(e,t,n){return{...e,...t,occurredAt:t.occurredAt||e.occurredAt||new Date().toISOString(),source:t.source||e.source||"unknown",kernelInstanceId:t.kernelInstanceId??e.kernelInstanceId??n,eventVersion:t.eventVersion??e.eventVersion,schemaVersion:t.schemaVersion??e.schemaVersion,allowInterception:t.allowInterception??e.allowInterception,interceptions:t.interceptions??e.interceptions,correlationId:t.correlationId??e.correlationId,causationId:t.causationId??e.causationId,traceId:t.traceId??e.traceId,spanId:t.spanId??e.spanId,parentSpanId:t.parentSpanId??e.parentSpanId}}s(Jr,"enrichMetadata");var vi=0;function Wa(){return vi+=1,`interceptor-${Date.now()}-${vi}`}s(Wa,"nextInterceptorRegistrationId");var pt=class{static{s(this,"EventBusImpl")}subscriptions=[];subscriptionsByIntent=new Map;interceptors=[];interceptorsByIntent=new Map;recording;onPublish;onSoftViolation;onHandlerError;eventContracts;strictEventContracts;requireKnownSource;architectureProfile;enforceObservedLayerFlowMode;rethrowHandlerErrors;policyEngine;getPolicyContext;intentRegistry;dependencyGraph;strictRegistry;validateIntentNaming;constructor(t={}){if(this.onPublish=t.onPublish,this.onSoftViolation=t.onSoftViolation,this.onHandlerError=t.onHandlerError,this.eventContracts=t.eventContracts,this.strictEventContracts=t.strictEventContracts??!1,this.requireKnownSource=t.requireKnownSource??!1,this.architectureProfile=t.architectureProfile,this.enforceObservedLayerFlowMode=t.enforceObservedLayerFlow??"off",this.rethrowHandlerErrors=t.rethrowHandlerErrors??!1,this.intentRegistry=t.intentRegistry,this.dependencyGraph=t.dependencyGraph,this.strictRegistry=t.strictRegistry??t.intentRegistry!==void 0,this.validateIntentNaming=t.validateIntentNaming??this.strictRegistry,this.recording={history:[],trace:[],maxHistorySize:t.maxHistorySize,traceSinks:[...t.traceSinks??[]],auditTrail:t.auditTrail,eventBuffer:t.eventBuffer??t.outbox,instanceId:t.instanceId},t.policyEngine?this.policyEngine=t.policyEngine:t.policies&&t.policies.length>0&&(this.policyEngine=new Se(t.policies)),(this.policyEngine?.getPolicies()??t.policies??[]).some(Wt)&&!t.intentRegistry&&!t.dependencyGraph&&!t.getPolicyContext)throw new je;t.getPolicyContext?this.getPolicyContext=t.getPolicyContext:t.intentRegistry||t.dependencyGraph?this.getPolicyContext=qt({intentRegistry:t.intentRegistry,dependencyGraph:t.dependencyGraph}):this.getPolicyContext=r=>({event:r})}async publish(t,n,r,o){await this.dispatch(t,n,r,o)}async dispatch(t,n,r,o={}){let i=o.notifySubscribers!==!1,a=o.awaitHandlers!==!1,l=o.runOnPublish!==!1,c,p=typeof t!="function";if(p){let u=t,f=r??n??{};c={...u,metadata:Jr(u.metadata,f,this.recording.instanceId)}}else{let u=t,f=n,m=r??{},y=u(f);c={...y,metadata:Jr(y.metadata,m,this.recording.instanceId)}}p&&this.strictRegistry&&await bi(this.recording,c),Yt(c.intent,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry}),di(c,{requireKnownSource:this.requireKnownSource,intentRegistry:this.intentRegistry}),Xt(c,{eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts}),c=await pi(c,{interceptorsForIntent:s(u=>this.interceptorsByIntent.get(u)??[],"interceptorsForIntent"),eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts,appendTrace:s(u=>this.appendTrace(u),"appendTrace"),recordAudit:s((u,f,m)=>this.recordAudit(u,f,m),"recordAudit")}),Xt(c,{eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts}),await ki(c,{mode:this.enforceObservedLayerFlowMode,architectureProfile:this.architectureProfile,appendTrace:s(u=>this.appendTrace(u),"appendTrace"),recordAudit:s((u,f,m)=>this.recordAudit(u,f,m),"recordAudit")}),this.dependencyGraph?.registerEventFlow(c.metadata.source,c.intent);let g=[...this.subscriptionsByIntent.get(c.intent)??[]];this.policyEngine&&await Ii(c,{policyEngine:this.policyEngine,getPolicyContext:this.getPolicyContext,appendTrace:s(u=>this.appendTrace(u),"appendTrace"),recordAudit:s((u,f,m)=>this.recordAudit(u,f,m),"recordAudit"),onSoftViolation:this.onSoftViolation,safeHook:s((u,f,m)=>this.safeHook(u,f,m),"safeHook")}),await Ei(this.recording,c,i?g.length:0,o.tx);let h=(async()=>{i&&await Promise.all(g.map(u=>this.invokeHandler(u,c))),l&&this.onPublish&&await this.safeHook(()=>this.onPublish(c),"onPublish",c)})();return a?await h:h.then(void 0,()=>{}),c}createPublisher(t){let n=typeof t=="string"?t:t.name;return Yt(n,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry}),{source:n,publish:s(async(r,o,i={},a)=>{if(i.source&&i.source!==n)throw new Re(n,i.source);await this.publish(r,o,{...i,source:n},a)},"publish")}}subscribe(t,n){let r=typeof t=="string"?t:t.name;Yt(r,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry});let o={intentName:r,handler:n};this.subscriptions.push(o);let i=this.subscriptionsByIntent.get(r)??[];return i.push(o),this.subscriptionsByIntent.set(r,i),()=>{let a=this.subscriptions.indexOf(o);a>=0&&this.subscriptions.splice(a,1);let l=this.subscriptionsByIntent.get(r);if(!l)return;let c=l.indexOf(o);c>=0&&l.splice(c,1),l.length===0&&this.subscriptionsByIntent.delete(r)}}registerInterceptor(t,n,r){let o=typeof t=="string"?t:t.name;Yt(o,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry});let i={registrationId:Wa(),interceptorId:r??o,intentName:o,interceptor:n,createdAt:new Date().toISOString()};this.interceptors.push(i);let a=this.interceptorsByIntent.get(o)??[];return a.push(i),this.interceptorsByIntent.set(o,a),i.registrationId}unregisterInterceptor(t){let n=this.interceptors.find(i=>i.registrationId===t);if(!n)return!1;let r=this.interceptors.indexOf(n);r>=0&&this.interceptors.splice(r,1);let o=this.interceptorsByIntent.get(n.intentName);if(o){let i=o.indexOf(n);i>=0&&o.splice(i,1),o.length===0&&this.interceptorsByIntent.delete(n.intentName)}return!0}listInterceptors(t){return this.interceptors.filter(n=>!t||n.intentName===t).map(n=>({registrationId:n.registrationId,interceptorId:n.interceptorId,intent:n.intentName,createdAt:n.createdAt,lastInterceptedAt:n.lastInterceptedAt}))}getHistory(){return[...this.recording.history]}clearHistory(){this.recording.history.length=0}getTrace(){return[...this.recording.trace]}clearTrace(){this.recording.trace.length=0}appendTrace(t){Zt(this.recording,t)}async recordAudit(t,n,r){await Zn(this.recording,t,n,r)}async invokeHandler(t,n){try{await Promise.resolve(t.handler(n))}catch(r){if(this.appendTrace({type:"handler.error",timestamp:new Date().toISOString(),intent:n.intent,correlationId:n.metadata.correlationId,traceId:n.metadata.traceId,spanId:n.metadata.spanId,details:{error:r instanceof Error?r.message:String(r)}}),await this.recordAudit("handler.error",n,{handlerIntent:t.intentName,error:r instanceof Error?r.message:String(r)}),this.onHandlerError&&await this.safeHook(()=>this.onHandlerError(r,n,t.intentName),"onHandlerError",n),this.rethrowHandlerErrors)throw r}}async safeHook(t,n,r){try{await Promise.resolve(t())}catch(o){this.appendTrace({type:"hook.error",timestamp:new Date().toISOString(),intent:r.intent,correlationId:r.metadata.correlationId,traceId:r.metadata.traceId,spanId:r.metadata.spanId,details:{hook:n,error:o instanceof Error?o.message:String(o)}}),await this.recordAudit("hook.error",r,{hook:n,error:o instanceof Error?o.message:String(o)})}}};function Qr(e){return new pt(e)}s(Qr,"createEventBus");function za(e){if(!(!e||e.length===0))return e.map(t=>typeof t=="object"&&t!==null&&"key"in t?String(t.key):String(t)).join(".")}s(za,"formatStandardSchemaPath");function qa(e){if(Array.isArray(e))return"array";if(e===null)return"object";let t=typeof e;return t==="string"||t==="number"||t==="boolean"||t==="object"?t:"unknown"}s(qa,"actualType");function Ya(e,t){return e?`${e}.${t}`:t}s(Ya,"formatPath");function Si(e,t,n,r,o){let i=qa(e);if(t.type!=="unknown"&&i!==t.type){o.push({intent:r.intent,version:r.version,field:n,message:`Expected ${t.type}, received ${i}.`});return}if(t.enum&&!t.enum.some(a=>Object.is(a,e))&&o.push({intent:r.intent,version:r.version,field:n,message:"Value is not allowed by event contract enum."}),t.type==="object"&&t.fields){if(e===null||typeof e!="object"||Array.isArray(e)){o.push({intent:r.intent,version:r.version,field:n,message:"Nested object field must be a non-array object."});return}wi(e,t.fields,r,o,n)}t.type==="array"&&t.items&&Array.isArray(e)&&e.forEach((a,l)=>{Si(a,t.items,`${n}[${l}]`,r,o)})}s(Si,"validateSchemaField");function wi(e,t,n,r,o){for(let[i,a]of Object.entries(t)){let l=Ya(o,i),c=e[i];if(c===void 0){a.required&&r.push({intent:n.intent,version:n.version,field:l,message:"Required field is missing."});continue}Si(c,a,l,n,r)}}s(wi,"validateObjectSchema");var ft=class{static{s(this,"EventContractRegistryImpl")}contracts=new Map;register(t){let n=this.key(t.intent,t.version);if(this.contracts.has(n))throw new Error(`Event contract "${n}" is already registered.`);this.contracts.set(n,{allowAdditionalFields:!0,...t})}get(t,n){return n?this.contracts.get(this.key(t,n)):this.list(t).at(-1)}list(t){return Array.from(this.contracts.values()).filter(n=>!t||n.intent===t)}validate(t){let n=t.metadata.eventVersion,r=this.get(t.intent,n),o=[];if(!r)return{ok:!1,issues:[{intent:t.intent,version:n,message:n?`No event contract registered for version "${n}".`:"No event contract registered for intent."}]};r.deprecated&&o.push({intent:t.intent,version:r.version,message:typeof r.deprecated=="string"?r.deprecated:"Event contract is deprecated."});let i=t.payload!=null&&typeof t.payload=="object"?t.payload:void 0;if(r.schema){if(!i)o.push({intent:t.intent,version:r.version,message:"Payload must be an object for schema validation."});else if(wi(i,r.schema,r,o),r.allowAdditionalFields===!1)for(let a of Object.keys(i))r.schema[a]||o.push({intent:t.intent,version:r.version,field:a,message:"Additional field is not allowed by event contract."})}if(r.standardSchema){let a=r.standardSchema["~standard"].validate(t.payload);if(a instanceof Promise)o.push({intent:t.intent,version:r.version,message:"Standard Schema validator returned a Promise; event contract validation is synchronous."});else if(a.issues)for(let l of a.issues)o.push({intent:t.intent,version:r.version,field:za(l.path),message:l.message})}return{ok:o.length===0,contract:r,issues:o}}clear(){this.contracts.clear()}key(t,n){return`${t}@${n}`}};function Jt(){return new ft}s(Jt,"createEventContractRegistry");var Ci=0;function Xa(){return Ci+=1,`outbox-${Date.now()}-${Ci}`}s(Xa,"nextOutboxId");function xi(e){return{...e,event:{...e.event,metadata:{...e.event.metadata}}}}s(xi,"cloneRecord");var Ce=class{static{s(this,"InMemoryEventBuffer")}records=new Map;async enqueue(t){let n=new Date().toISOString(),r={id:Xa(),event:t,status:"pending",attempts:0,createdAt:n,updatedAt:n};return this.records.set(r.id,r),xi(r)}async markDispatched(t){let n=this.records.get(t);n&&(n.status="dispatched",n.updatedAt=new Date().toISOString())}async markFailed(t,n){let r=this.records.get(t);r&&(r.status="failed",r.attempts+=1,r.error=n instanceof Error?n.message:String(n),r.updatedAt=new Date().toISOString())}async list(t){return Array.from(this.records.values()).filter(n=>!t||n.status===t).map(xi)}async clear(){this.records.clear()}},eo=Ce;function to(e){return`${e.from}->${e.to}`}s(to,"flowKey");function Oi(e){let t=new Set,n=[];for(let r of e){let o=to(r);t.has(o)||(t.add(o),n.push(r))}return n}s(Oi,"uniqueFlows");function Pi(e,t){let n=new Set(t.map(to));return e.filter(r=>!n.has(to(r)))}s(Pi,"difference");function Qt(e){let t=e.registry,n=e.eventBus,r=e.graph;return{report(){let o=t?t.getAllRelationships().filter(y=>y.kind==="produces").map(y=>({from:y.from,to:y.to})):[],i=o.length>0||!r?[]:r.getEdges().filter(y=>y.kind==="produces").map(y=>({from:y.from,to:y.to})),a=n?.getHistory().map(y=>({from:y.event.metadata.source,to:y.event.intent}))??[],l=a.length>0||!r?[]:r.getEdges().filter(y=>y.kind==="observed").map(y=>({from:y.from,to:y.to})),c=Oi([...o,...i]),p=Oi([...a,...l]),g=p.filter(y=>!y.from||y.from==="unknown"),h=t?Array.from(new Set(p.map(y=>y.from).filter(y=>y&&y!=="unknown"&&!t.has(y)))):[],u=t?Array.from(new Set(p.map(y=>y.to).filter(y=>!t.has(y)))):[],f=new Set(p.flatMap(y=>[y.from,y.to])),m=t?t.list().map(y=>y.name).filter(y=>!f.has(y)):[];return{generatedAt:new Date().toISOString(),declaredProductions:c,observedProductions:p,declaredButUnobserved:Pi(c,p),observedButUndeclared:Pi(p.filter(y=>y.from!=="unknown"),c),unknownSources:g,unregisteredObservedSources:h,unregisteredObservedIntents:u,registeredButNeverObserved:m}}}}s(Qt,"createObservabilityReporter");function no(e){return{events(t){return e.eventBus.getHistory().map(n=>n.event).filter(n=>!t||n.intent===t)},traces(t){return e.eventBus.getTrace().filter(n=>!t||n.type===t)},audit(t){return e.auditTrail.query(t)},outbox(t){return e.outbox.list(t)},observability(){return e.syncGraph(),e.observability.report()},async snapshot(){return{events:this.events(),traces:this.traces(),audit:await this.audit(),outbox:await this.outbox(),observability:this.observability()}},async clear(){e.eventBus.clearHistory(),e.eventBus.clearTrace(),await e.auditTrail.clear(),await e.outbox.clear()}}}s(no,"createArkTestHarness");var _i=0;function Za(){return _i+=1,`audit-${Date.now()}-${_i}`}s(Za,"createAuditId");function Ja(e,t){return!(t.type&&e.type!==t.type||t.intent&&e.intent!==t.intent||t.correlationId&&e.correlationId!==t.correlationId||t.subject&&e.subject!==t.subject||t.since&&e.timestamp<t.since||t.until&&e.timestamp>t.until)}s(Ja,"matchesQuery");var gt=class{constructor(t){this.maxRecords=t}maxRecords;static{s(this,"InMemoryAuditStore")}records=[];append(t){this.records.push(t),this.maxRecords!==void 0&&this.records.length>this.maxRecords&&this.records.splice(0,this.records.length-this.maxRecords)}query(t={}){let n=this.records.filter(r=>Ja(r,t));return t.limit===void 0?[...n]:n.slice(-t.limit)}clear(){this.records.length=0}},Jn=class{constructor(t){this.store=t}store;static{s(this,"AuditTrailImpl")}async record(t){let n={id:Za(),timestamp:t.timestamp??new Date().toISOString(),type:t.type,source:t.source,actor:t.actor,intent:t.intent,correlationId:t.correlationId,causationId:t.causationId,subject:t.subject,details:t.details};return await this.store.append(n),n}async query(t){return this.store.query(t)}async clear(){await this.store.clear()}};function en(e={}){return new Jn(e.store??new gt(e.maxRecords))}s(en,"createAuditTrail");var Qn=class{static{s(this,"DependencyGraphImpl")}nodes=new Map;edges=[];registerDependency(t,n,r="declared"){this.ensureNode(t),this.ensureNode(n),this.addEdge({from:t,to:n,kind:r})}registerEventFlow(t,n){this.ensureNode(t),this.ensureNode(n),this.addEdge({from:t,to:n,kind:"observed"})}getNodes(){return Array.from(this.nodes.values())}getEdges(){return[...this.edges]}toJSON(){return{nodes:this.getNodes(),edges:this.getEdges()}}toMermaid(){let t=`flowchart TD
|
|
7
|
+
${n}`),this.name="PolicyViolationError",this.violations=t}};var we=class{static{i(this,"PolicyEngine")}policies=[];constructor(t=[]){for(let n of t)this.add(n)}add(t){if(this.policies.some(n=>n.name===t.name))throw new Error(`Policy "${t.name}" is already registered in this engine.`);this.policies.push(t)}getPolicies(){return[...this.policies]}evaluate(t){let n=[];for(let s of this.policies){let a=s.check(t);if(a!==!0){if(a===!1){n.push({policyName:s.name,severity:s.severity,message:`Policy "${s.name}" was violated.`});continue}if(Array.isArray(a))for(let l of a)n.push({policyName:s.name,severity:s.severity,message:l.message,details:l.details});else n.push({policyName:s.name,severity:s.severity,message:a.message,details:a.details})}}let r=n.filter(s=>s.severity==="hard"),o=n.filter(s=>s.severity==="soft");return{passed:n.length===0,violations:n,hardViolations:r,softViolations:o}}enforce(t){let n=this.evaluate(t);if(n.hardViolations.length>0)throw new Re(n.hardViolations);return n}clear(){this.policies.length=0}};function Ue(e){let t=e.severity??"soft";return{name:e.name,severity:t,tags:e.tags,owner:e.owner,version:e.version,rationale:e.rationale,enforcementMode:e.enforcementMode,deprecated:e.deprecated,replacedBy:e.replacedBy,check:e.check}}i(Ue,"definePolicy");function ja(e){let t=e.indexOf(".");return t>=0?e.slice(0,t):e}i(ja,"defaultLayerOf");function us(e,t){return t.resolveLayer?.(e)??ja(e)}i(us,"resolveLayer");function Ba(e,t,n){return e===n.from&&t===n.to}i(Ba,"matchesRule");function zt(e){let t=e.name??"Layer isolation",n=e.severity??"hard";return Ue({name:t,severity:n,tags:["layer"],check:i(r=>{let o=[...(r.edges??[]).filter(a=>a.kind==="declared"||a.kind==="produces").map(a=>({from:a.from,to:a.to})),...(r.relationships??[]).filter(a=>a.kind==="dependsOn").map(a=>({from:a.from,to:a.to}))],s=[];for(let a of o){let l=us(a.from,e),c=us(a.to,e);for(let p of e.rules)!p.allowed&&Ba(l,c,p)&&s.push({policyName:t,severity:n,message:p.message??`Layer violation: ${a.from} (${l}) must not relate to ${a.to} (${c})`})}return s.length>0?s:!0},"check")})}i(zt,"defineLayerPolicy");function qt(e){return e.tags?.includes("layer")??!1}i(qt,"isLayerPolicy");var Yn={layerIsolation(){return Yn.cleanArchitectureMatrix()},cleanArchitectureMatrix(){return zt({name:"Clean architecture matrix",severity:"hard",rules:[{from:"Domain",to:"Adapter",allowed:!1},{from:"Domain",to:"Application",allowed:!1},{from:"Adapter",to:"Application",allowed:!1},{from:"Adapter",to:"Domain",allowed:!1}]})}};function Yt(e,t={}){return zt({name:t.name??`${e.name} layer policy`,severity:t.severity??"hard",rules:e.rules,resolveLayer:e.resolveLayer})}i(Yt,"defineArchitectureProfilePolicy");function Xt(e){return t=>({event:t,relationships:e.intentRegistry?.getAllRelationships(),edges:e.dependencyGraph?.getEdges()})}i(Xt,"buildPublishPolicyContext");function Yr(e){return Ue(e)}i(Yr,"definePublishPolicy");var Ge=class extends Error{static{i(this,"UnregisteredIntentError")}intentName;constructor(t){super(`Intent "${t}" is not registered. Register it with IntentRegistry.define() before publish/subscribe, including metadata.source producer intents in strict mode.`),this.name="UnregisteredIntentError",this.intentName=t}},Ve=class extends Error{static{i(this,"InvalidIntentNameError")}intentName;reason;constructor(t,n){super(`Invalid intent name "${t}": ${n}`),this.name="InvalidIntentNameError",this.intentName=t,this.reason=n}},je=class extends Error{static{i(this,"LayerPolicyContextError")}constructor(){super("Layer/architecture policies require intentRegistry, dependencyGraph, or a custom getPolicyContext. Without graph/registry context, layer policies cannot inspect relationships."),this.name="LayerPolicyContextError"}},Be=class extends Error{static{i(this,"EventContractViolationError")}intentName;issues;constructor(t,n){super(`Event contract violation for "${t}". Register a matching event contract/version or fix the payload before publishing.`),this.name="EventContractViolationError",this.intentName=t,this.issues=n}},Ce=class extends Error{static{i(this,"UnknownEventSourceError")}intentName;source;constructor(t,n){super(n?`Event "${t}" metadata.source "${n}" is not registered. Register the producer intent or publish from a known source.`:`Event "${t}" must include metadata.source. Strict Ark uses source to enforce observed layer flow.`),this.name="UnknownEventSourceError",this.intentName=t,this.source=n}},Ae=class extends Error{static{i(this,"SourceMetadataOverrideError")}boundSource;attemptedSource;constructor(t,n){super(`Source-bound publisher for "${t}" cannot publish with metadata.source "${n}". Create a publisher for the intended source instead.`),this.name="SourceMetadataOverrideError",this.boundSource=t,this.attemptedSource=n}},We=class extends Error{static{i(this,"ObservedLayerFlowViolationError")}source;intentName;fromLayer;toLayer;constructor(t,n,r,o,s){super(s??`Observed layer violation: "${t}" (${r}) must not produce "${n}" (${o}). Route this through an allowed layer or adjust the architecture profile rule.`),this.name="ObservedLayerFlowViolationError",this.source=t,this.intentName=n,this.fromLayer=r,this.toLayer=o}};function Zt(e,t){if(!(!t.strictRegistry&&!t.validateIntentNaming)){if(t.validateIntentNaming){let n=Wt(e);if(!n.valid)throw new Ve(e,n.reason)}if(t.strictRegistry&&t.intentRegistry&&!t.intentRegistry.has(e))throw new Ge(e)}}i(Zt,"assertIntentAllowed");function ps(e,t){if(t.requireKnownSource){if(!e.metadata.source||e.metadata.source==="unknown")throw new Ce(e.intent);if(t.intentRegistry&&!t.intentRegistry.has(e.metadata.source))throw new Ce(e.intent,e.metadata.source)}}i(ps,"assertSourceAllowed");function Jt(e,t){if(!t.eventContracts)return;let n=t.eventContracts.validate(e);if(!n.ok&&(t.strictEventContracts||n.contract))throw new Be(e.intent,n.issues)}i(Jt,"assertContractAllowed");function ct(e){if(typeof e!="object"||e===null||Array.isArray(e))return!1;let t=Object.getPrototypeOf(e);return t===Object.prototype||t===null}i(ct,"isPlainRecord");function dt(e){return Array.isArray(e)?e.map(dt):ct(e)?Object.fromEntries(Object.entries(e).map(([t,n])=>[t,dt(n)])):e}i(dt,"clonePatchValue");function Xr(e,t,n="payload"){let r={...e};for(let[o,s]of Object.entries(t)){let a=`${n}.${o}`;if(!(o in r)||r[o]===void 0){r[o]=dt(s);continue}if(ct(r[o])&&ct(s)){r[o]=Xr(r[o],s,a);continue}if(Array.isArray(r[o])&&Array.isArray(s)){r[o]=Zr(r[o],s,a);continue}throw new Error(`Interceptor patch cannot overwrite existing ${a}.`)}return r}i(Xr,"mergeRecordPatch");function Zr(e,t,n="payload"){let r=[...e];return t.forEach((o,s)=>{let a=`${n}[${s}]`;if(s>=r.length||r[s]===void 0){r[s]=dt(o);return}if(ct(r[s])&&ct(o)){r[s]=Xr(r[s],o,a);return}if(Array.isArray(r[s])&&Array.isArray(o)){r[s]=Zr(r[s],o,a);return}throw new Error(`Interceptor patch cannot overwrite existing ${a}.`)}),r}i(Zr,"mergeArrayPatch");function fs(e,t){if(Array.isArray(t)){if(e===void 0)return dt(t);if(!Array.isArray(e))throw new Error("Array interceptor patch requires an array payload.");return Zr(e,t)}if(e===void 0)return dt(t);if(!ct(e))throw new Error("Object interceptor patch requires an object payload.");return Xr(e,t)}i(fs,"applyPayloadPatch");async function gs(e,t){if(e.metadata.allowInterception===!1)return e;let n=[...t.interceptorsForIntent(e.intent)],r=e;for(let o of n){let s=[];try{if(await Promise.resolve(o.interceptor({event:r,intercept:i(c=>{s.push(c)},"intercept")})),s.length===0)continue;let a=new Date().toISOString(),l={...r,metadata:{...r.metadata,interceptions:[...r.metadata.interceptions??[],{interceptorId:o.interceptorId,timestamp:a}]}};for(let c of s)l={...l,payload:fs(l.payload,c),metadata:{...l.metadata}};Jt(l,{eventContracts:t.eventContracts,strictEventContracts:t.strictEventContracts}),r=l,o.lastInterceptedAt=a,t.appendTrace({type:"event.intercepted",timestamp:a,intent:r.intent,correlationId:r.metadata.correlationId,traceId:r.metadata.traceId,spanId:r.metadata.spanId,details:{registrationId:o.registrationId,interceptorId:o.interceptorId,patchesApplied:s.length}}),await t.recordAudit("event.intercepted",r,{registrationId:o.registrationId,interceptorId:o.interceptorId,patchesApplied:s.length})}catch(a){await Wa(o,r,a,t)}}return r}i(gs,"applyInterceptors");async function Wa(e,t,n,r){let o=n instanceof Error?n.message:String(n);r.appendTrace({type:"interceptor.error",timestamp:new Date().toISOString(),intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:{registrationId:e.registrationId,interceptorId:e.interceptorId,error:o}}),await r.recordAudit("interceptor.error",t,{registrationId:e.registrationId,interceptorId:e.interceptorId,error:o})}i(Wa,"recordInterceptorError");var ms=new Map;function ys(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}i(ys,"escapeLiteral");function Xn(e){let t="";for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"&&n+1<e.length){let o=e[n+1];if("*?{}[],".includes(o)||o==="\\"){t+="\\"+o,n+=1;continue}t+="/";continue}t+=r}return t}i(Xn,"normalizeGlobSeparators");function za(e){let t=0;for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"){n+=1;continue}if(r==="{")t+=1;else if(r==="}"&&(t-=1,t<0))return!1}return t===0}i(za,"bracesBalanced");function ke(e){let t=ms.get(e);if(t)return t;let n=Xn(e),r=za(n),o="",s=0;for(let l=0;l<n.length;l+=1){let c=n[l];c==="\\"&&l+1<n.length?(o+=ys(n[l+1]),l+=1):c==="*"?n[l+1]==="*"?n[l+2]==="/"?(o+="(?:.*/)?",l+=2):(o+=".*",l+=1):o+="[^/]*":c==="?"?o+="[^/]":c==="{"&&r?(o+="(?:",s+=1):c==="}"&&r&&s>0?(o+=")",s-=1):c===","&&r&&s>0?o+="|":o+=ys(c)}let a=new RegExp(`^${o}$`);return ms.set(e,a),a}i(ke,"globToRegExp");function qa(e){return Xn(String(e)).split("/").filter(Boolean).filter(n=>n!=="**"&&n!=="*"&&!n.includes("*")&&!n.includes("?")&&!n.includes("{")&&!n.includes("["))}i(qa,"concreteGlobSegments");function Jr(e,t){let n=Xn(String(e)),r=qa(n),o=n.replace(/\*/g,"").length,s=r.length*1e4+o;if(t==null||t==="")return s;let a=String(t).split(/[/\\]/).filter(Boolean);if(r.length===0)return o;let l=0,c=-1;for(let p of r){let f=-1;for(let y=l;y<a.length;y+=1)if(a[y]===p){f=y;break}if(f<0)return s;c=f,l=f+1}return(c+1)*1e6+r.length*1e4+o}i(Jr,"patternSpecificity");function de(e,t){let n=String(e).split(/[/\\]/).join("/"),r,o=-1;for(let s of t??[])if(!(s.exclude??[]).some(a=>ke(a).test(n))){for(let a of s.patterns??[])if(ke(a).test(n)){let l=Jr(a,n);l>o&&(o=l,r=s.name)}}return r}i(de,"layerForRelativePath");function hs(e,t){if(!t?.length)return;let n=String(e).split(/[/\\]/).filter(Boolean),r=new Set(t.map(o=>String(o).toLowerCase()));for(let o=0;o<n.length-1;o+=1)if(r.has(n[o].toLowerCase()))return`${n[o].toLowerCase()}/${n[o+1].toLowerCase()}`}i(hs,"sliceIdForPath");function Ya(e){let t=new Set;for(let n of e??[]){let o=Xn(String(n)).split("/").filter(Boolean);for(let s=0;s<o.length;s+=1){let a=o[s];if((a==="**"||a==="*")&&s>0){let l=o[s-1];l&&!l.includes("*")&&!l.includes("{")&&!l.includes("}")&&t.add(l)}}}return[...t]}i(Ya,"inferSliceFoldersFromPatterns");function Xa(e,t,n){if(Array.isArray(e.sliceFolders)&&e.sliceFolders.length>0)return e.sliceFolders.filter(o=>typeof o=="string"&&o.length>0);let r=(n??[]).find(o=>o.name===t);return Ya(r?.patterns)}i(Xa,"resolveSliceFolders");function Rs(e){return String(e).split(/[/\\]/).filter(t=>!!t&&t!==".").map(t=>t.toLowerCase())}i(Rs,"normalizeSegments");function Is(e){let t=e.length;for(;t>0&&e[t-1]==="/";)t-=1;return e.slice(0,t)}i(Is,"trimTrailingSlashes");var Za=["src","app"];function Ja(e){let t=Is(e.replace(/^[./]+/,""));return t==="*"||t==="**"}i(Ja,"isBlanketRoot");function As(e,t){if(!e||!t?.length)return!1;let n=String(e).split(/[/\\]/).join("/"),r=n.toLowerCase(),o=Rs(n);for(let s of t){if(typeof s!="string"||s.length===0||Ja(s))continue;if(s.includes("*")){let c=Is(s.toLowerCase());if(ke(c).test(r)||ke(`${c}/**`).test(r))return!0;continue}let a=Rs(s);if(a.length===0)continue;let l=Za.includes(o[0])&&a[0]!==o[0]?[0,1]:[0];for(let c of l){if(c+a.length>o.length)continue;let p=!0;for(let f=0;f<a.length;f+=1)if(o[c+f]!==a[f]){p=!1;break}if(p)return!0}}return!1}i(As,"pathUnderSharedRoot");function ks(e,t){let n=String(e).split(/[/\\]/).filter(Boolean).join("/").toLowerCase();if(!n)return!1;let r=t.toLowerCase();return n===r?!0:!n.includes("/")&&r.endsWith(`/${n}`)}i(ks,"sliceMatchesDeclaration");function Qa(e,t,n){return!e?.length||!t||!n?!1:e.some(r=>r&&typeof r.from=="string"&&typeof r.to=="string"&&ks(r.from,t)&&ks(r.to,n))}i(Qa,"crossSliceEdgeAllowed");function el(e){if(!e.fromPath)return{denied:!0,reason:"missing-path"};if(e.folderCount<=0)return{denied:!0,reason:"no-slice-folders"};let t=!!e.fromSlice||e.fromShared===!0;if(!e.toPath)return t?e.fromSlice?{denied:!0,reason:"missing-path"}:{denied:!1}:{denied:!0,reason:"unclassifiable-path"};let n=!!e.toSlice||e.toShared===!0;return!t||!n?{denied:!0,reason:"unclassifiable-path"}:!e.fromSlice||!e.toSlice?{denied:!1}:e.fromSlice===e.toSlice?{denied:!1}:e.crossSliceAllowed?{denied:!1}:{denied:!0,reason:"cross-slice"}}i(el,"peerIsolationDecision");function ut(e,t){switch(e){case"cross-slice":return`cross-slice edge ${t.fromSlice??"?"} \u2192 ${t.toSlice??"?"}. Extract the shared code, use events/ports across slices, or declare the edge in the rule's allowedCrossSlice.`;case"unclassifiable-path":{let n=[t.fromSlice?void 0:t.fromPath,t.toSlice?void 0:t.toPath].filter(o=>!!o);return`unclassifiable path${n.length>0?` (${n.join(", ")})`:""} \u2014 ArkGate cannot place it in a slice, so it cannot prove this is not a cross-slice edge. Move it into a slice, or declare its root in the rule's sharedRoots.`}case"no-slice-folders":return"no slice folders \u2014 peerIsolation is on but no slice folder resolves from the rule or the layer patterns. Set sliceFolders on the rule.";default:return"no path evidence for this edge \u2014 peerIsolation needs the importer and importee paths."}}i(ut,"peerIsolationDenyExplanation");function pt(e,t,n,r){return ze(e,t,n,r)?.rule}i(pt,"findDeniedEdgeRule");function ze(e,t,n,r){for(let o of e??[])if(!(o.from!==t||o.to!==n)&&o.allowed===!1){if(o.peerIsolation){let s=r?.fromPath,a=r?.toPath,l=Xa(o,t,r?.layers),c=s?hs(s,l):void 0,p=a?hs(a,l):void 0,f=el({fromPath:s,toPath:a,folderCount:l.length,fromSlice:c,toSlice:p,fromShared:!c&&As(s,o.sharedRoots),toShared:!p&&As(a,o.sharedRoots),crossSliceAllowed:Qa(o.allowedCrossSlice,c,p)});if(f.denied)return{rule:o,peerIsolationReason:f.reason,fromSlice:c,toSlice:p};continue}if(t!==n)return{rule:o}}}i(ze,"findDeniedEdgeDecision");async function bs(e,t){if(t.mode==="off"||!t.architectureProfile)return;let n=e.metadata.source;if(!n||n==="unknown")return;let r=t.architectureProfile,o=r.resolveLayer(n),s=r.resolveLayer(e.intent);if(!o||!s)return;let a=pt(r.rules,o,s);if(!a)return;let l=t.mode,c=a.message??`Observed layer violation: "${n}" (${o}) must not produce "${e.intent}" (${s}).`,p={source:n,intent:e.intent,fromLayer:o,toLayer:s,severity:l,message:c,rule:a};if(t.appendTrace({type:"layer.observedViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:p}),await t.recordAudit("layer.observedViolation",e,p),l==="hard")throw new We(n,e.intent,o,s,c)}i(bs,"assertObservedLayerFlowAllowed");async function Es(e,t){let n=t.getPolicyContext(e),r;try{r=t.policyEngine.enforce(n)}catch(o){throw o instanceof Re&&(t.appendTrace({type:"policy.hardViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:{violations:o.violations}}),await t.recordAudit("policy.hardViolation",e,{violations:o.violations})),o}r.softViolations.length>0&&(t.appendTrace({type:"policy.softViolation",timestamp:new Date().toISOString(),intent:e.intent,correlationId:e.metadata.correlationId,traceId:e.metadata.traceId,spanId:e.metadata.spanId,details:{violations:r.softViolations}}),await t.recordAudit("policy.softViolation",e,{violations:r.softViolations}),t.onSoftViolation&&await t.safeHook(()=>t.onSoftViolation(r,e),"onSoftViolation",e))}i(Es,"enforcePublishPolicy");function tl(e,t){e.history.push(t),e.maxHistorySize!==void 0&&e.history.length>e.maxHistorySize&&e.history.splice(0,e.history.length-e.maxHistorySize)}i(tl,"appendHistory");function Qt(e,t){e.trace.push(t),e.maxHistorySize!==void 0&&e.trace.length>e.maxHistorySize&&e.trace.splice(0,e.trace.length-e.maxHistorySize);for(let n of e.traceSinks)try{n(t)}catch{}}i(Qt,"appendTrace");async function Zn(e,t,n,r){if(e.auditTrail)try{await e.auditTrail.record({type:t,source:n.metadata.source,intent:n.intent,correlationId:n.metadata.correlationId,causationId:n.metadata.causationId,subject:n.intent,details:r})}catch(o){Qt(e,{type:"hook.error",timestamp:new Date().toISOString(),intent:n.intent,correlationId:n.metadata.correlationId,traceId:n.metadata.traceId,spanId:n.metadata.spanId,details:{hook:"auditTrail",error:o instanceof Error?o.message:String(o)}})}}i(Zn,"recordAudit");async function vs(e,t){let n={intent:t.intent,source:t.metadata.source,suggestion:"Publish through a registered intent creator so strict registry, contracts, and agent tooling share one source of truth."};Qt(e,{type:"event.rawPublish",timestamp:new Date().toISOString(),intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:n}),await Zn(e,"event.rawPublish",t,n)}i(vs,"recordRawPublishDiagnostic");async function Ss(e,t,n,r){let o={event:t,publishedAt:new Date().toISOString(),subscribersNotified:n};return tl(e,o),await e.eventBuffer?.enqueue(t,r),Qt(e,{type:"event.published",timestamp:o.publishedAt,intent:t.intent,correlationId:t.metadata.correlationId,traceId:t.metadata.traceId,spanId:t.metadata.spanId,details:{subscribersNotified:n}}),await Zn(e,"event.published",t,{subscribersNotified:n}),o}i(Ss,"recordSuccessfulPublish");function Qr(e,t,n){return{...e,...t,occurredAt:t.occurredAt||e.occurredAt||new Date().toISOString(),source:t.source||e.source||"unknown",kernelInstanceId:t.kernelInstanceId??e.kernelInstanceId??n,eventVersion:t.eventVersion??e.eventVersion,schemaVersion:t.schemaVersion??e.schemaVersion,allowInterception:t.allowInterception??e.allowInterception,interceptions:t.interceptions??e.interceptions,correlationId:t.correlationId??e.correlationId,causationId:t.causationId??e.causationId,traceId:t.traceId??e.traceId,spanId:t.spanId??e.spanId,parentSpanId:t.parentSpanId??e.parentSpanId}}i(Qr,"enrichMetadata");var ws=0;function nl(){return ws+=1,`interceptor-${Date.now()}-${ws}`}i(nl,"nextInterceptorRegistrationId");var ft=class{static{i(this,"EventBusImpl")}subscriptions=[];subscriptionsByIntent=new Map;interceptors=[];interceptorsByIntent=new Map;recording;onPublish;onSoftViolation;onHandlerError;eventContracts;strictEventContracts;requireKnownSource;architectureProfile;enforceObservedLayerFlowMode;rethrowHandlerErrors;policyEngine;getPolicyContext;intentRegistry;dependencyGraph;strictRegistry;validateIntentNaming;constructor(t={}){if(this.onPublish=t.onPublish,this.onSoftViolation=t.onSoftViolation,this.onHandlerError=t.onHandlerError,this.eventContracts=t.eventContracts,this.strictEventContracts=t.strictEventContracts??!1,this.requireKnownSource=t.requireKnownSource??!1,this.architectureProfile=t.architectureProfile,this.enforceObservedLayerFlowMode=t.enforceObservedLayerFlow??"off",this.rethrowHandlerErrors=t.rethrowHandlerErrors??!1,this.intentRegistry=t.intentRegistry,this.dependencyGraph=t.dependencyGraph,this.strictRegistry=t.strictRegistry??t.intentRegistry!==void 0,this.validateIntentNaming=t.validateIntentNaming??this.strictRegistry,this.recording={history:[],trace:[],maxHistorySize:t.maxHistorySize,traceSinks:[...t.traceSinks??[]],auditTrail:t.auditTrail,eventBuffer:t.eventBuffer??t.outbox,instanceId:t.instanceId},t.policyEngine?this.policyEngine=t.policyEngine:t.policies&&t.policies.length>0&&(this.policyEngine=new we(t.policies)),(this.policyEngine?.getPolicies()??t.policies??[]).some(qt)&&!t.intentRegistry&&!t.dependencyGraph&&!t.getPolicyContext)throw new je;t.getPolicyContext?this.getPolicyContext=t.getPolicyContext:t.intentRegistry||t.dependencyGraph?this.getPolicyContext=Xt({intentRegistry:t.intentRegistry,dependencyGraph:t.dependencyGraph}):this.getPolicyContext=r=>({event:r})}async publish(t,n,r,o){await this.dispatch(t,n,r,o)}async dispatch(t,n,r,o={}){let s=o.notifySubscribers!==!1,a=o.awaitHandlers!==!1,l=o.runOnPublish!==!1,c,p=typeof t!="function";if(p){let u=t,g=r??n??{};c={...u,metadata:Qr(u.metadata,g,this.recording.instanceId)}}else{let u=t,g=n,d=r??{},m=u(g);c={...m,metadata:Qr(m.metadata,d,this.recording.instanceId)}}p&&this.strictRegistry&&await vs(this.recording,c),Zt(c.intent,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry}),ps(c,{requireKnownSource:this.requireKnownSource,intentRegistry:this.intentRegistry}),Jt(c,{eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts}),c=await gs(c,{interceptorsForIntent:i(u=>this.interceptorsByIntent.get(u)??[],"interceptorsForIntent"),eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts,appendTrace:i(u=>this.appendTrace(u),"appendTrace"),recordAudit:i((u,g,d)=>this.recordAudit(u,g,d),"recordAudit")}),Jt(c,{eventContracts:this.eventContracts,strictEventContracts:this.strictEventContracts}),await bs(c,{mode:this.enforceObservedLayerFlowMode,architectureProfile:this.architectureProfile,appendTrace:i(u=>this.appendTrace(u),"appendTrace"),recordAudit:i((u,g,d)=>this.recordAudit(u,g,d),"recordAudit")}),this.dependencyGraph?.registerEventFlow(c.metadata.source,c.intent);let f=[...this.subscriptionsByIntent.get(c.intent)??[]];this.policyEngine&&await Es(c,{policyEngine:this.policyEngine,getPolicyContext:this.getPolicyContext,appendTrace:i(u=>this.appendTrace(u),"appendTrace"),recordAudit:i((u,g,d)=>this.recordAudit(u,g,d),"recordAudit"),onSoftViolation:this.onSoftViolation,safeHook:i((u,g,d)=>this.safeHook(u,g,d),"safeHook")}),await Ss(this.recording,c,s?f.length:0,o.tx);let y=(async()=>{s&&await Promise.all(f.map(u=>this.invokeHandler(u,c))),l&&this.onPublish&&await this.safeHook(()=>this.onPublish(c),"onPublish",c)})();return a?await y:y.then(void 0,()=>{}),c}createPublisher(t){let n=typeof t=="string"?t:t.name;return Zt(n,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry}),{source:n,publish:i(async(r,o,s={},a)=>{if(s.source&&s.source!==n)throw new Ae(n,s.source);await this.publish(r,o,{...s,source:n},a)},"publish")}}subscribe(t,n){let r=typeof t=="string"?t:t.name;Zt(r,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry});let o={intentName:r,handler:n};this.subscriptions.push(o);let s=this.subscriptionsByIntent.get(r)??[];return s.push(o),this.subscriptionsByIntent.set(r,s),()=>{let a=this.subscriptions.indexOf(o);a>=0&&this.subscriptions.splice(a,1);let l=this.subscriptionsByIntent.get(r);if(!l)return;let c=l.indexOf(o);c>=0&&l.splice(c,1),l.length===0&&this.subscriptionsByIntent.delete(r)}}registerInterceptor(t,n,r){let o=typeof t=="string"?t:t.name;Zt(o,{strictRegistry:this.strictRegistry,validateIntentNaming:this.validateIntentNaming,intentRegistry:this.intentRegistry});let s={registrationId:nl(),interceptorId:r??o,intentName:o,interceptor:n,createdAt:new Date().toISOString()};this.interceptors.push(s);let a=this.interceptorsByIntent.get(o)??[];return a.push(s),this.interceptorsByIntent.set(o,a),s.registrationId}unregisterInterceptor(t){let n=this.interceptors.find(s=>s.registrationId===t);if(!n)return!1;let r=this.interceptors.indexOf(n);r>=0&&this.interceptors.splice(r,1);let o=this.interceptorsByIntent.get(n.intentName);if(o){let s=o.indexOf(n);s>=0&&o.splice(s,1),o.length===0&&this.interceptorsByIntent.delete(n.intentName)}return!0}listInterceptors(t){return this.interceptors.filter(n=>!t||n.intentName===t).map(n=>({registrationId:n.registrationId,interceptorId:n.interceptorId,intent:n.intentName,createdAt:n.createdAt,lastInterceptedAt:n.lastInterceptedAt}))}getHistory(){return[...this.recording.history]}clearHistory(){this.recording.history.length=0}getTrace(){return[...this.recording.trace]}clearTrace(){this.recording.trace.length=0}appendTrace(t){Qt(this.recording,t)}async recordAudit(t,n,r){await Zn(this.recording,t,n,r)}async invokeHandler(t,n){try{await Promise.resolve(t.handler(n))}catch(r){if(this.appendTrace({type:"handler.error",timestamp:new Date().toISOString(),intent:n.intent,correlationId:n.metadata.correlationId,traceId:n.metadata.traceId,spanId:n.metadata.spanId,details:{error:r instanceof Error?r.message:String(r)}}),await this.recordAudit("handler.error",n,{handlerIntent:t.intentName,error:r instanceof Error?r.message:String(r)}),this.onHandlerError&&await this.safeHook(()=>this.onHandlerError(r,n,t.intentName),"onHandlerError",n),this.rethrowHandlerErrors)throw r}}async safeHook(t,n,r){try{await Promise.resolve(t())}catch(o){this.appendTrace({type:"hook.error",timestamp:new Date().toISOString(),intent:r.intent,correlationId:r.metadata.correlationId,traceId:r.metadata.traceId,spanId:r.metadata.spanId,details:{hook:n,error:o instanceof Error?o.message:String(o)}}),await this.recordAudit("hook.error",r,{hook:n,error:o instanceof Error?o.message:String(o)})}}};function eo(e){return new ft(e)}i(eo,"createEventBus");function rl(e){if(!(!e||e.length===0))return e.map(t=>typeof t=="object"&&t!==null&&"key"in t?String(t.key):String(t)).join(".")}i(rl,"formatStandardSchemaPath");function ol(e){if(Array.isArray(e))return"array";if(e===null)return"object";let t=typeof e;return t==="string"||t==="number"||t==="boolean"||t==="object"?t:"unknown"}i(ol,"actualType");function sl(e,t){return e?`${e}.${t}`:t}i(sl,"formatPath");function Cs(e,t,n,r,o){let s=ol(e);if(t.type!=="unknown"&&s!==t.type){o.push({intent:r.intent,version:r.version,field:n,message:`Expected ${t.type}, received ${s}.`});return}if(t.enum&&!t.enum.some(a=>Object.is(a,e))&&o.push({intent:r.intent,version:r.version,field:n,message:"Value is not allowed by event contract enum."}),t.type==="object"&&t.fields){if(e===null||typeof e!="object"||Array.isArray(e)){o.push({intent:r.intent,version:r.version,field:n,message:"Nested object field must be a non-array object."});return}xs(e,t.fields,r,o,n)}t.type==="array"&&t.items&&Array.isArray(e)&&e.forEach((a,l)=>{Cs(a,t.items,`${n}[${l}]`,r,o)})}i(Cs,"validateSchemaField");function xs(e,t,n,r,o){for(let[s,a]of Object.entries(t)){let l=sl(o,s),c=e[s];if(c===void 0){a.required&&r.push({intent:n.intent,version:n.version,field:l,message:"Required field is missing."});continue}Cs(c,a,l,n,r)}}i(xs,"validateObjectSchema");var gt=class{static{i(this,"EventContractRegistryImpl")}contracts=new Map;register(t){let n=this.key(t.intent,t.version);if(this.contracts.has(n))throw new Error(`Event contract "${n}" is already registered.`);this.contracts.set(n,{allowAdditionalFields:!0,...t})}get(t,n){return n?this.contracts.get(this.key(t,n)):this.list(t).at(-1)}list(t){return Array.from(this.contracts.values()).filter(n=>!t||n.intent===t)}validate(t){let n=t.metadata.eventVersion,r=this.get(t.intent,n),o=[];if(!r)return{ok:!1,issues:[{intent:t.intent,version:n,message:n?`No event contract registered for version "${n}".`:"No event contract registered for intent."}]};r.deprecated&&o.push({intent:t.intent,version:r.version,message:typeof r.deprecated=="string"?r.deprecated:"Event contract is deprecated."});let s=t.payload!=null&&typeof t.payload=="object"?t.payload:void 0;if(r.schema){if(!s)o.push({intent:t.intent,version:r.version,message:"Payload must be an object for schema validation."});else if(xs(s,r.schema,r,o),r.allowAdditionalFields===!1)for(let a of Object.keys(s))r.schema[a]||o.push({intent:t.intent,version:r.version,field:a,message:"Additional field is not allowed by event contract."})}if(r.standardSchema){let a=r.standardSchema["~standard"].validate(t.payload);if(a instanceof Promise)o.push({intent:t.intent,version:r.version,message:"Standard Schema validator returned a Promise; event contract validation is synchronous."});else if(a.issues)for(let l of a.issues)o.push({intent:t.intent,version:r.version,field:rl(l.path),message:l.message})}return{ok:o.length===0,contract:r,issues:o}}clear(){this.contracts.clear()}key(t,n){return`${t}@${n}`}};function en(){return new gt}i(en,"createEventContractRegistry");var Os=0;function il(){return Os+=1,`outbox-${Date.now()}-${Os}`}i(il,"nextOutboxId");function Ps(e){return{...e,event:{...e.event,metadata:{...e.event.metadata}}}}i(Ps,"cloneRecord");var xe=class{static{i(this,"InMemoryEventBuffer")}records=new Map;async enqueue(t){let n=new Date().toISOString(),r={id:il(),event:t,status:"pending",attempts:0,createdAt:n,updatedAt:n};return this.records.set(r.id,r),Ps(r)}async markDispatched(t){let n=this.records.get(t);n&&(n.status="dispatched",n.updatedAt=new Date().toISOString())}async markFailed(t,n){let r=this.records.get(t);r&&(r.status="failed",r.attempts+=1,r.error=n instanceof Error?n.message:String(n),r.updatedAt=new Date().toISOString())}async list(t){return Array.from(this.records.values()).filter(n=>!t||n.status===t).map(Ps)}async clear(){this.records.clear()}},to=xe;function no(e){return`${e.from}->${e.to}`}i(no,"flowKey");function _s(e){let t=new Set,n=[];for(let r of e){let o=no(r);t.has(o)||(t.add(o),n.push(r))}return n}i(_s,"uniqueFlows");function Ts(e,t){let n=new Set(t.map(no));return e.filter(r=>!n.has(no(r)))}i(Ts,"difference");function tn(e){let t=e.registry,n=e.eventBus,r=e.graph;return{report(){let o=t?t.getAllRelationships().filter(m=>m.kind==="produces").map(m=>({from:m.from,to:m.to})):[],s=o.length>0||!r?[]:r.getEdges().filter(m=>m.kind==="produces").map(m=>({from:m.from,to:m.to})),a=n?.getHistory().map(m=>({from:m.event.metadata.source,to:m.event.intent}))??[],l=a.length>0||!r?[]:r.getEdges().filter(m=>m.kind==="observed").map(m=>({from:m.from,to:m.to})),c=_s([...o,...s]),p=_s([...a,...l]),f=p.filter(m=>!m.from||m.from==="unknown"),y=t?Array.from(new Set(p.map(m=>m.from).filter(m=>m&&m!=="unknown"&&!t.has(m)))):[],u=t?Array.from(new Set(p.map(m=>m.to).filter(m=>!t.has(m)))):[],g=new Set(p.flatMap(m=>[m.from,m.to])),d=t?t.list().map(m=>m.name).filter(m=>!g.has(m)):[];return{generatedAt:new Date().toISOString(),declaredProductions:c,observedProductions:p,declaredButUnobserved:Ts(c,p),observedButUndeclared:Ts(p.filter(m=>m.from!=="unknown"),c),unknownSources:f,unregisteredObservedSources:y,unregisteredObservedIntents:u,registeredButNeverObserved:d}}}}i(tn,"createObservabilityReporter");function ro(e){return{events(t){return e.eventBus.getHistory().map(n=>n.event).filter(n=>!t||n.intent===t)},traces(t){return e.eventBus.getTrace().filter(n=>!t||n.type===t)},audit(t){return e.auditTrail.query(t)},outbox(t){return e.outbox.list(t)},observability(){return e.syncGraph(),e.observability.report()},async snapshot(){return{events:this.events(),traces:this.traces(),audit:await this.audit(),outbox:await this.outbox(),observability:this.observability()}},async clear(){e.eventBus.clearHistory(),e.eventBus.clearTrace(),await e.auditTrail.clear(),await e.outbox.clear()}}}i(ro,"createArkTestHarness");var Ns=0;function al(){return Ns+=1,`audit-${Date.now()}-${Ns}`}i(al,"createAuditId");function ll(e,t){return!(t.type&&e.type!==t.type||t.intent&&e.intent!==t.intent||t.correlationId&&e.correlationId!==t.correlationId||t.subject&&e.subject!==t.subject||t.since&&e.timestamp<t.since||t.until&&e.timestamp>t.until)}i(ll,"matchesQuery");var mt=class{constructor(t){this.maxRecords=t}maxRecords;static{i(this,"InMemoryAuditStore")}records=[];append(t){this.records.push(t),this.maxRecords!==void 0&&this.records.length>this.maxRecords&&this.records.splice(0,this.records.length-this.maxRecords)}query(t={}){let n=this.records.filter(r=>ll(r,t));return t.limit===void 0?[...n]:n.slice(-t.limit)}clear(){this.records.length=0}},Jn=class{constructor(t){this.store=t}store;static{i(this,"AuditTrailImpl")}async record(t){let n={id:al(),timestamp:t.timestamp??new Date().toISOString(),type:t.type,source:t.source,actor:t.actor,intent:t.intent,correlationId:t.correlationId,causationId:t.causationId,subject:t.subject,details:t.details};return await this.store.append(n),n}async query(t){return this.store.query(t)}async clear(){await this.store.clear()}};function nn(e={}){return new Jn(e.store??new mt(e.maxRecords))}i(nn,"createAuditTrail");var Qn=class{static{i(this,"DependencyGraphImpl")}nodes=new Map;edges=[];registerDependency(t,n,r="declared"){this.ensureNode(t),this.ensureNode(n),this.addEdge({from:t,to:n,kind:r})}registerEventFlow(t,n){this.ensureNode(t),this.ensureNode(n),this.addEdge({from:t,to:n,kind:"observed"})}getNodes(){return Array.from(this.nodes.values())}getEdges(){return[...this.edges]}toJSON(){return{nodes:this.getNodes(),edges:this.getEdges()}}toMermaid(){let t=`flowchart TD
|
|
8
8
|
`;for(let r of this.edges){let o=r.kind?`|${r.kind}|`:"";t+=` ${this.safeId(r.from)} -->${o} ${this.safeId(r.to)}
|
|
9
9
|
`}let n=new Set(this.edges.flatMap(r=>[r.from,r.to]));for(let r of this.nodes.keys())n.has(r)||(t+=` ${this.safeId(r)}
|
|
10
|
-
`);return t.trim()}toLayerMermaid(t){let n=new Map;for(let
|
|
11
|
-
`;for(let
|
|
10
|
+
`);return t.trim()}toLayerMermaid(t){let n=new Map;for(let s of this.nodes.keys()){let a=t.resolveLayer(s)??"Unclassified",l=n.get(a)??[];l.push(s),n.set(a,l)}let r=`flowchart TD
|
|
11
|
+
`;for(let s of t.layers){let a=n.get(s.name)??[];if(a.length!==0){r+=` subgraph ${this.safeId(s.name)}[${s.name}]
|
|
12
12
|
`;for(let l of a)r+=` ${this.safeId(l)}[${l}]
|
|
13
13
|
`;r+=` end
|
|
14
14
|
`}}let o=n.get("Unclassified")??[];if(o.length>0){r+=` subgraph Unclassified[Unclassified]
|
|
15
|
-
`;for(let
|
|
15
|
+
`;for(let s of o)r+=` ${this.safeId(s)}[${s}]
|
|
16
16
|
`;r+=` end
|
|
17
|
-
`}for(let
|
|
18
|
-
`}return r.trim()}detectViolations(t=[]){let n=[],r=this.findSimpleCycles();r.length>0&&n.push(`Cycle detected: ${r.map(o=>o.join("->")).join(", ")}`);for(let o of t)try{let i=o(this.edges);i&&i.length&&n.push(...i)}catch(i){n.push(`Rule error: ${i.message}`)}return n}ensureNode(t){this.nodes.has(t)||this.nodes.set(t,{id:t})}addEdge(t){this.edges.some(r=>r.from===t.from&&r.to===t.to&&r.kind===t.kind)||this.edges.push(t)}findSimpleCycles(){let t=new Map;for(let l of this.edges)t.has(l.from)||t.set(l.from,[]),t.get(l.from).push(l.to);let n=[],r=new Set,o=[],i=s(l=>{r.add(l),o.push(l);for(let c of t.get(l)||[])if(!r.has(c))i(c);else if(o.includes(c)){let p=o.indexOf(c),g=o.slice(p).concat(c);n.push(g)}o.pop()},"dfs");for(let l of t.keys())r.has(l)||i(l);let a=new Set(n.map(l=>l.join("->")));return Array.from(a).map(l=>l.split("->"))}safeId(t){return t.replace(/[^a-zA-Z0-9_]/g,"_")}};function tn(){return new Qn}s(tn,"createDependencyGraph");function nn(e,t,n={}){let r=n.requireRegisteredTargets??!1;for(let o of e.getAllRelationships())r&&!e.has(o.to)||(o.kind==="dependsOn"?t.registerDependency(o.from,o.to,"declared"):t.registerDependency(o.from,o.to,"produces"))}s(nn,"syncRegistryToGraph");var qe={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},Ti={type:"object",additionalProperties:!1,properties:{mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},compositionRoots:{...qe,default:[]},kernelRoots:{...qe},managedLayers:{...qe,default:[]},requireDeclarations:{type:"boolean",default:!0},ignoreDirectNewForErrors:{type:"boolean",default:!0}}},Ni={type:"object",additionalProperties:!1,properties:{mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},planeRoots:{...qe,default:[]},managedLayers:{...qe,default:[]},maxXiKeys:{type:"integer",minimum:1,default:7},xiKeys:{...qe,default:[]},appliesTo:{...qe,default:[]}}};function rn(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}s(rn,"isObject");function Di(e){let t=new Set;if(!Array.isArray(e.layers))return t;for(let n of e.layers)rn(n)&&typeof n.name=="string"&&n.name.length>0&&t.add(n.name);return t}s(Di,"declaredLayerNames");function Li(e){if(!rn(e))return e;let t={mode:e.mode===void 0?"advisory":e.mode,compositionRoots:e.compositionRoots===void 0?[]:e.compositionRoots,managedLayers:e.managedLayers===void 0?[]:e.managedLayers,requireDeclarations:e.requireDeclarations===void 0?!0:e.requireDeclarations};return e.kernelRoots!==void 0&&(t.kernelRoots=e.kernelRoots),e.ignoreDirectNewForErrors!==void 0&&(t.ignoreDirectNewForErrors=e.ignoreDirectNewForErrors),{...e,...t}}s(Li,"defaultedArkRun");function Fi(e){if(!rn(e))return e;let t=typeof e.maxXiKeys=="number"&&e.maxXiKeys>0?e.maxXiKeys:7;return{...e,mode:e.mode===void 0?"advisory":e.mode,planeRoots:e.planeRoots===void 0?[]:e.planeRoots,managedLayers:e.managedLayers===void 0?[]:e.managedLayers,maxXiKeys:t,xiKeys:e.xiKeys===void 0?[]:e.xiKeys}}s(Fi,"defaultedArkOrder");function Mi(e,t){let n=e.arkRun;if(n===void 0||!rn(n))return;let r=Di(e),o=n.managedLayers;if(Array.isArray(o)&&o.forEach((i,a)=>{typeof i=="string"&&i.length>0&&!r.has(i)&&t.push({path:`$.arkRun.managedLayers[${a}]`,message:`layer ${JSON.stringify(i)} is not declared in layers[]`})}),n.mode==="enforced"){let i=n.kernelRoots??n.compositionRoots;(!Array.isArray(i)||i.length===0)&&t.push({path:n.kernelRoots!==void 0?"$.arkRun.kernelRoots":"$.arkRun.compositionRoots",message:"ARKRUN_MISSING_ROOT: enforced mode requires at least one kernel root"}),(!Array.isArray(o)||o.length===0)&&t.push({path:"$.arkRun.managedLayers",message:"enforced mode requires at least one managed layer"})}}s(Mi,"validateArkRunExtra");function $i(e,t){let n=e.arkOrder;if(n===void 0||!rn(n))return;let r=Di(e),o=n.managedLayers;if(Array.isArray(o)&&o.forEach((i,a)=>{typeof i=="string"&&i.length>0&&!r.has(i)&&t.push({path:`$.arkOrder.managedLayers[${a}]`,message:`layer ${JSON.stringify(i)} is not declared in layers[]`})}),n.mode==="enforced"){let i=n.planeRoots;(!Array.isArray(i)||i.length===0)&&t.push({path:"$.arkOrder.planeRoots",message:"ARKORDER_MISSING_PLANE: enforced mode requires at least one plane root"}),(!Array.isArray(o)||o.length===0)&&t.push({path:"$.arkOrder.managedLayers",message:"enforced mode requires at least one managed layer"})}}s($i,"validateArkOrderExtra");var ae="1.3",tr="https://unpkg.com/arkgate@2/schemas/ark.config.schema.json",Ki=["DomainModel","ApplicationOrchestration","PersistenceAdapters","IntegrationAdapters","WorkflowSagaEngine","BackgroundJobsScheduling","PresentationAdapters","ReportingReadModels","ExtensibilityMetadata","SecurityAuditObservability","Kernel"],Qa=new Set(["PresentationAdapters->ApplicationOrchestration","ApplicationOrchestration->DomainModel","WorkflowSagaEngine->ApplicationOrchestration","WorkflowSagaEngine->DomainModel","BackgroundJobsScheduling->ApplicationOrchestration"]);function el(){let e=[];for(let t of Ki)for(let n of Ki)t===n||Qa.has(`${t}->${n}`)||e.push({from:t,to:n,allowed:!1});return e}s(el,"createDefaultRules");var nr=el(),ro=[{from:"unversioned",to:"1.0"},{from:"1.0",to:"1.1"},{from:"1.1",to:"1.2"},{from:"1.2",to:"1.3"}],se={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},Hi={$schema:"https://json-schema.org/draft/2020-12/schema",$id:tr,title:"ArkGate architecture contract",description:"Versioned contract consumed identically by ArkGate CLI, MCP, and ESLint surfaces.",type:"object",additionalProperties:!1,required:["$schema","schemaVersion","include","layers","rules"],properties:{$schema:{type:"string",minLength:1,default:tr,description:"Editor-facing URL or local path for this JSON Schema."},schemaVersion:{type:"string",const:ae,default:ae},name:{type:"string",minLength:1},include:{...se,minItems:1,default:["src"]},exclude:{...se,default:[]},excludeGenerated:{type:"boolean",default:!0},frameworkOverlay:{type:"string",minLength:1},layers:{type:"array",default:[],items:{$ref:"#/$defs/layer"}},rules:{type:"array",default:nr,items:{$ref:"#/$defs/rule"}},cyclePolicy:{type:"string",enum:["strict","soft","framework-soft","off"],default:"strict"},dynamicImportAllowlist:{...se,default:[]},safety:{$ref:"#/$defs/safety",default:{maxTsSuppressions:0,maxAnyCasts:0,allowInMemory:!1,allowDisabledPeerIsolation:!1}},coverage:{$ref:"#/$defs/coverage"},arkRules:{type:"object",additionalProperties:{type:"string",minLength:1},default:{}},arkRun:{$ref:"#/$defs/arkRun"},arkOrder:{$ref:"#/$defs/arkOrder"},stewards:{...se,default:[]}},$defs:{layer:{type:"object",additionalProperties:!1,required:["name","patterns"],properties:{name:{type:"string",minLength:1},patterns:{...se,minItems:1},exclude:se,intentPrefixes:se,description:{type:"string",minLength:1},forbiddenGlobals:se,capabilities:{type:"object",additionalProperties:!1,properties:{deny:{type:"array",uniqueItems:!0,items:{type:"string",enum:["network","filesystem","clock","randomness","environment","process","persistence"]}}}},pure:{type:"boolean"},mayImportInfrastructure:{type:"boolean"},optional:{type:"boolean"},reserved:{type:"boolean"},allowEmpty:{type:"boolean"}}},rule:{type:"object",additionalProperties:!1,required:["from","to","allowed"],properties:{from:{type:"string",minLength:1},to:{type:"string",minLength:1},allowed:{type:"boolean"},message:{type:"string",minLength:1},peerIsolation:{type:"boolean"},sliceFolders:{...se,minItems:1},sharedRoots:{...se,minItems:1},allowedCrossSlice:{type:"array",minItems:1,items:{type:"object",additionalProperties:!1,required:["from","to"],properties:{from:{type:"string",minLength:1},to:{type:"string",minLength:1}}}}}},safety:{type:"object",additionalProperties:!1,properties:{maxTsSuppressions:{type:"integer",minimum:0,default:0},maxAnyCasts:{type:"integer",minimum:0,default:0},allowInMemory:{type:"boolean",default:!1},allowDisabledPeerIsolation:{type:"boolean",default:!1}}},coverage:{type:"object",additionalProperties:!1,description:"Invariant coverage scan controls. testGlobs replaces the built-in test-name heuristic; maxFiles raises or lowers the evidence file budget and also bounds structural-hint preload for orchestration-only, thin-adapter, and writes-via-aggregate (default 400; there is no arkrules.hintBudget); coverageRoots declares where the project runs its tests, so a covering test found outside them is reported instead of silently certifying an invariant.",properties:{testGlobs:{...se,minItems:1},maxFiles:{type:"integer",minimum:1,description:"Evidence file budget (default 400) and structural-hint preload cap for orchestration-only, thin-adapter, and writes-via-aggregate. Raise this when hinted/governed counts show truncated sensors. There is no separate arkrules.hintBudget."},coverageRoots:{...se,minItems:1}}},arkRun:Ti,arkOrder:Ni}},ke=class extends Error{static{s(this,"ArkConfigValidationError")}issues;source;constructor(t,n){super(`Invalid ArkGate config (${t}):
|
|
17
|
+
`}for(let s of this.edges){let a=s.kind?`|${s.kind}|`:"";r+=` ${this.safeId(s.from)} -->${a} ${this.safeId(s.to)}
|
|
18
|
+
`}return r.trim()}detectViolations(t=[]){let n=[],r=this.findSimpleCycles();r.length>0&&n.push(`Cycle detected: ${r.map(o=>o.join("->")).join(", ")}`);for(let o of t)try{let s=o(this.edges);s&&s.length&&n.push(...s)}catch(s){n.push(`Rule error: ${s.message}`)}return n}ensureNode(t){this.nodes.has(t)||this.nodes.set(t,{id:t})}addEdge(t){this.edges.some(r=>r.from===t.from&&r.to===t.to&&r.kind===t.kind)||this.edges.push(t)}findSimpleCycles(){let t=new Map;for(let l of this.edges)t.has(l.from)||t.set(l.from,[]),t.get(l.from).push(l.to);let n=[],r=new Set,o=[],s=i(l=>{r.add(l),o.push(l);for(let c of t.get(l)||[])if(!r.has(c))s(c);else if(o.includes(c)){let p=o.indexOf(c),f=o.slice(p).concat(c);n.push(f)}o.pop()},"dfs");for(let l of t.keys())r.has(l)||s(l);let a=new Set(n.map(l=>l.join("->")));return Array.from(a).map(l=>l.split("->"))}safeId(t){return t.replace(/[^a-zA-Z0-9_]/g,"_")}};function rn(){return new Qn}i(rn,"createDependencyGraph");function on(e,t,n={}){let r=n.requireRegisteredTargets??!1;for(let o of e.getAllRelationships())r&&!e.has(o.to)||(o.kind==="dependsOn"?t.registerDependency(o.from,o.to,"declared"):t.registerDependency(o.from,o.to,"produces"))}i(on,"syncRegistryToGraph");var qe={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},Ds={type:"object",additionalProperties:!1,properties:{mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},compositionRoots:{...qe,default:[]},kernelRoots:{...qe},managedLayers:{...qe,default:[]},requireDeclarations:{type:"boolean",default:!0},ignoreDirectNewForErrors:{type:"boolean",default:!0}}},Ls={type:"object",additionalProperties:!1,properties:{mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},planeRoots:{...qe,default:[]},managedLayers:{...qe,default:[]},maxXiKeys:{type:"integer",minimum:1,default:7},xiKeys:{...qe,default:[]},appliesTo:{...qe,default:[]}}};function sn(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}i(sn,"isObject");function Fs(e){let t=new Set;if(!Array.isArray(e.layers))return t;for(let n of e.layers)sn(n)&&typeof n.name=="string"&&n.name.length>0&&t.add(n.name);return t}i(Fs,"declaredLayerNames");function $s(e){if(!sn(e))return e;let t={mode:e.mode===void 0?"advisory":e.mode,compositionRoots:e.compositionRoots===void 0?[]:e.compositionRoots,managedLayers:e.managedLayers===void 0?[]:e.managedLayers,requireDeclarations:e.requireDeclarations===void 0?!0:e.requireDeclarations};return e.kernelRoots!==void 0&&(t.kernelRoots=e.kernelRoots),e.ignoreDirectNewForErrors!==void 0&&(t.ignoreDirectNewForErrors=e.ignoreDirectNewForErrors),{...e,...t}}i($s,"defaultedArkRun");function Ms(e){if(!sn(e))return e;let t=typeof e.maxXiKeys=="number"&&e.maxXiKeys>0?e.maxXiKeys:7;return{...e,mode:e.mode===void 0?"advisory":e.mode,planeRoots:e.planeRoots===void 0?[]:e.planeRoots,managedLayers:e.managedLayers===void 0?[]:e.managedLayers,maxXiKeys:t,xiKeys:e.xiKeys===void 0?[]:e.xiKeys}}i(Ms,"defaultedArkOrder");function Ks(e,t){let n=e.arkRun;if(n===void 0||!sn(n))return;let r=Fs(e),o=n.managedLayers;if(Array.isArray(o)&&o.forEach((s,a)=>{typeof s=="string"&&s.length>0&&!r.has(s)&&t.push({path:`$.arkRun.managedLayers[${a}]`,message:`layer ${JSON.stringify(s)} is not declared in layers[]`})}),n.mode==="enforced"){let s=n.kernelRoots??n.compositionRoots;(!Array.isArray(s)||s.length===0)&&t.push({path:n.kernelRoots!==void 0?"$.arkRun.kernelRoots":"$.arkRun.compositionRoots",message:"ARKRUN_MISSING_ROOT: enforced mode requires at least one kernel root"}),(!Array.isArray(o)||o.length===0)&&t.push({path:"$.arkRun.managedLayers",message:"enforced mode requires at least one managed layer"})}}i(Ks,"validateArkRunExtra");function Hs(e,t){let n=e.arkOrder;if(n===void 0||!sn(n))return;let r=Fs(e),o=n.managedLayers;if(Array.isArray(o)&&o.forEach((s,a)=>{typeof s=="string"&&s.length>0&&!r.has(s)&&t.push({path:`$.arkOrder.managedLayers[${a}]`,message:`layer ${JSON.stringify(s)} is not declared in layers[]`})}),n.mode==="enforced"){let s=n.planeRoots;(!Array.isArray(s)||s.length===0)&&t.push({path:"$.arkOrder.planeRoots",message:"ARKORDER_MISSING_PLANE: enforced mode requires at least one plane root"}),(!Array.isArray(o)||o.length===0)&&t.push({path:"$.arkOrder.managedLayers",message:"enforced mode requires at least one managed layer"})}}i(Hs,"validateArkOrderExtra");function er(e){if(typeof e!="string")return null;let t=e.trim().replace(/^@/,"").toLowerCase();return t.length>0?t:null}i(er,"normalizeStewardId");function Us(e){let t=er(e);return!t||oo(t)||t.includes(" ")||t.includes("@")?!1:/^(?!-)[a-z0-9-]{1,39}(?<!-)$/.test(t)}i(Us,"isGitHubHandle");function cl(e){if(typeof e!="string")return!1;let t=e.trim().toLowerCase();return!t.includes("@")||t.includes(" ")||oo(t)?!1:/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(t)}i(cl,"isGitHubEmail");function dl(e){if(typeof e!="string")return null;let t=e.trim().match(/^(?:\d+\+)?([^@]+)@users\.noreply\.github\.com$/i);return t&&Us(t[1])?er(t[1]):null}i(dl,"githubHandleFromEmail");function Gs(e){let t=dl(e);if(t)return t;let n=er(e);return!n||oo(n)?null:Us(n)||cl(n)?n:null}i(Gs,"canonicalStewardId");var ul=/bot\b|\[bot\]|dependabot|renovate|github-actions|imgbot|codecov/i;function oo(e){let t=er(e);return!t||ul.test(t)}i(oo,"isAutomationAuthor");var ae="1.3",pl=["public","auth","admin","internal"];function fl(e){return e?.optional===!0||e?.reserved===!0||e?.allowEmpty===!0}i(fl,"isFutureHouseLayer");function gl(e){let t=e&&typeof e=="object"?e.owners:void 0;if(!Array.isArray(t)||t.length===0)return;let n=t.filter(r=>typeof r=="string"&&r.length>0);return n.length>0?n:void 0}i(gl,"layerOwnersList");function Bs(e){return e?.requireLayerOwners!==!0||!Array.isArray(e.layers)?[]:e.layers.filter(t=>!fl(t)&&!gl(t)).map(t=>t.name)}i(Bs,"layersMissingRequiredOwners");function Ws(e){return`Add a GitHub handle or email to ${e}'s owners in ark.config.json (/ark-adopt).`}i(Ws,"missingLayerOwnersNextAction");var nr="https://unpkg.com/arkgate@4/schemas/ark.config.schema.json",Vs=["DomainModel","ApplicationOrchestration","PersistenceAdapters","IntegrationAdapters","WorkflowSagaEngine","BackgroundJobsScheduling","PresentationAdapters","ReportingReadModels","ExtensibilityMetadata","SecurityAuditObservability","Kernel"],ml=new Set(["PresentationAdapters->ApplicationOrchestration","ApplicationOrchestration->DomainModel","WorkflowSagaEngine->ApplicationOrchestration","WorkflowSagaEngine->DomainModel","BackgroundJobsScheduling->ApplicationOrchestration"]);function yl(){let e=[];for(let t of Vs)for(let n of Vs)t===n||ml.has(`${t}->${n}`)||e.push({from:t,to:n,allowed:!1});return e}i(yl,"createDefaultRules");var rr=yl(),so=[{from:"unversioned",to:"1.0"},{from:"1.0",to:"1.1"},{from:"1.1",to:"1.2"},{from:"1.2",to:"1.3"}],ne={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},js={$schema:"https://json-schema.org/draft/2020-12/schema",$id:nr,title:"ArkGate architecture contract",description:"Versioned contract consumed identically by ArkGate CLI, MCP, and ESLint surfaces.",type:"object",additionalProperties:!1,required:["$schema","schemaVersion","include","layers","rules"],properties:{$schema:{type:"string",minLength:1,default:nr,description:"Editor-facing URL or local path for this JSON Schema."},schemaVersion:{type:"string",const:ae,default:ae},name:{type:"string",minLength:1},include:{...ne,minItems:1,default:["src"]},exclude:{...ne,default:[]},excludeGenerated:{type:"boolean",default:!0},frameworkOverlay:{type:"string",minLength:1},layers:{type:"array",default:[],items:{$ref:"#/$defs/layer"}},rules:{type:"array",default:rr,items:{$ref:"#/$defs/rule"}},cyclePolicy:{type:"string",enum:["strict","soft","framework-soft","off"],default:"strict"},dynamicImportAllowlist:{...ne,default:[]},safety:{$ref:"#/$defs/safety",default:{maxTsSuppressions:0,maxAnyCasts:0,allowInMemory:!1,allowDisabledPeerIsolation:!1}},coverage:{$ref:"#/$defs/coverage"},arkRules:{type:"object",additionalProperties:{type:"string",minLength:1},default:{}},arkRun:{$ref:"#/$defs/arkRun"},arkOrder:{$ref:"#/$defs/arkOrder"},stewards:{...ne,default:[]},requireLayerOwners:{type:"boolean"}},$defs:{layer:{type:"object",additionalProperties:!1,required:["name","patterns"],properties:{name:{type:"string",minLength:1},patterns:{...ne,minItems:1},exclude:ne,intentPrefixes:ne,description:{type:"string",minLength:1},trustBoundary:{type:"string",enum:[...pl]},owners:{...ne,minItems:1},forbiddenGlobals:ne,capabilities:{type:"object",additionalProperties:!1,properties:{deny:{type:"array",uniqueItems:!0,items:{type:"string",enum:["network","filesystem","clock","randomness","environment","process","persistence"]}}}},pure:{type:"boolean"},mayImportInfrastructure:{type:"boolean"},optional:{type:"boolean"},reserved:{type:"boolean"},allowEmpty:{type:"boolean"}}},rule:{type:"object",additionalProperties:!1,required:["from","to","allowed"],properties:{from:{type:"string",minLength:1},to:{type:"string",minLength:1},allowed:{type:"boolean"},message:{type:"string",minLength:1},peerIsolation:{type:"boolean"},sliceFolders:{...ne,minItems:1},sharedRoots:{...ne,minItems:1},allowedCrossSlice:{type:"array",minItems:1,items:{type:"object",additionalProperties:!1,required:["from","to"],properties:{from:{type:"string",minLength:1},to:{type:"string",minLength:1}}}}}},safety:{type:"object",additionalProperties:!1,properties:{maxTsSuppressions:{type:"integer",minimum:0,default:0},maxAnyCasts:{type:"integer",minimum:0,default:0},allowInMemory:{type:"boolean",default:!1},allowDisabledPeerIsolation:{type:"boolean",default:!1}}},coverage:{type:"object",additionalProperties:!1,description:"Invariant coverage scan controls. testGlobs replaces the built-in test-name heuristic; maxFiles raises or lowers the evidence file budget and also bounds structural-hint preload for orchestration-only, thin-adapter, and writes-via-aggregate (default 400; there is no arkrules.hintBudget); coverageRoots declares where the project runs its tests, so a covering test found outside them is reported instead of silently certifying an invariant.",properties:{testGlobs:{...ne,minItems:1},maxFiles:{type:"integer",minimum:1,description:"Evidence file budget (default 400) and structural-hint preload cap for orchestration-only, thin-adapter, and writes-via-aggregate. Raise this when hinted/governed counts show truncated sensors. There is no separate arkrules.hintBudget."},coverageRoots:{...ne,minItems:1}}},arkRun:Ds,arkOrder:Ls}},Ie=class extends Error{static{i(this,"ArkConfigValidationError")}issues;source;constructor(t,n){super(`Invalid ArkGate config (${t}):
|
|
19
19
|
${n.map(r=>`- ${r.path}: ${r.message}`).join(`
|
|
20
|
-
`)}`),this.name="ArkConfigValidationError",this.source=t,this.issues=n}};function Ui(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}s(Ui,"isObject");function er(e,t){return/^[A-Za-z_$][A-Za-z0-9_$]*$/.test(t)?`${e}.${t}`:`${e}[${JSON.stringify(t)}]`}s(er,"propertyPath");function mt(e){return e===null?"null":Array.isArray(e)?"array":typeof e}s(mt,"valueType");function tl(e,t){let n="#/$defs/";if(e.startsWith(n))return t.$defs[e.slice(n.length)]}s(tl,"resolveSchemaRef");function on(e,t,n,r,o){if(t.$ref){let i=tl(t.$ref,r);if(!i){o.push({path:n,message:`schema reference ${t.$ref} cannot be resolved`});return}on(e,i,n,r,o);return}if(t.const!==void 0&&!Object.is(e,t.const)){o.push({path:n,message:`must equal ${JSON.stringify(t.const)}`});return}if(t.enum&&!t.enum.some(i=>Object.is(i,e))){o.push({path:n,message:`must be one of ${t.enum.map(String).join(", ")}`});return}if(t.type==="object"){if(!Ui(e)){o.push({path:n,message:`must be an object; received ${mt(e)}`});return}let i=t.properties??{};for(let a of t.required??[])e[a]===void 0&&o.push({path:er(n,a),message:"is required"});if(t.additionalProperties===!1)for(let a of Object.keys(e))a in i||o.push({path:er(n,a),message:"unknown field"});else if(t.additionalProperties!==void 0&&t.additionalProperties!==!0&&typeof t.additionalProperties=="object"){let a=t.additionalProperties;for(let l of Object.keys(e))l in i||on(e[l],a,er(n,l),r,o)}for(let[a,l]of Object.entries(i))e[a]!==void 0&&on(e[a],l,er(n,a),r,o);return}if(t.type==="array"){if(!Array.isArray(e)){o.push({path:n,message:`must be an array; received ${mt(e)}`});return}if(t.minItems!==void 0&&e.length<t.minItems&&o.push({path:n,message:`must contain at least ${t.minItems} item(s)`}),t.uniqueItems){let i=e.map(a=>JSON.stringify(a));new Set(i).size!==i.length&&o.push({path:n,message:"must not contain duplicate items"})}t.items&&e.forEach((i,a)=>on(i,t.items,`${n}[${a}]`,r,o));return}if(t.type==="string"){if(typeof e!="string"){o.push({path:n,message:`must be a string; received ${mt(e)}`});return}t.minLength!==void 0&&e.length<t.minLength&&o.push({path:n,message:`must contain at least ${t.minLength} character(s)`});return}if(t.type==="boolean"){typeof e!="boolean"&&o.push({path:n,message:`must be a boolean; received ${mt(e)}`});return}if(t.type==="integer"){if(!Number.isInteger(e)){o.push({path:n,message:`must be an integer; received ${mt(e)}`});return}t.minimum!==void 0&&e<t.minimum&&o.push({path:n,message:`must be at least ${t.minimum}`})}}s(on,"validateNode");function nl(e){let t={...e,$schema:e.$schema===void 0?tr:e.$schema,schemaVersion:e.schemaVersion===void 0?ae:e.schemaVersion,include:e.include===void 0?["src"]:e.include,layers:e.layers===void 0?[]:e.layers,rules:e.rules===void 0?nr.map(n=>({...n})):e.rules};return e.arkRun!==void 0&&(t.arkRun=Li(e.arkRun)),e.arkOrder!==void 0&&(t.arkOrder=Fi(e.arkOrder)),t}s(nl,"defaultedConfig");function rl(e){return e===ae?null:e==="unversioned"?"unversioned":e==="1.0"||e==="1.1"||e==="1.2"?e:null}s(rl,"migratedFromOf");function ol(){let e=new Set([ae]);for(let t of ro)t.from!=="unversioned"&&e.add(t.from),e.add(t.to);return e}s(ol,"knownInputVersions");function il(e,t="ark.config.json"){if(!Ui(e))throw new ke(t,[{path:"$",message:`must be an object; received ${mt(e)}`}]);let n=ol(),r=e.schemaVersion===void 0?"unversioned":typeof e.schemaVersion=="string"?e.schemaVersion:null;if(r===null)throw new ke(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(e.schemaVersion)}; expected ${ae}`}]);if(r!=="unversioned"&&!n.has(r))throw new ke(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(r)}; expected ${ae}`}]);let o=r,i={...e},a=0;for(;o!==ae&&a<ro.length+1;){a+=1;let l=ro.find(c=>c.from===o);if(!l)throw new ke(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(o)}; expected ${ae}`}]);o=l.to,i.schemaVersion=o}if(o!==ae)throw new ke(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(r)}; expected ${ae}`}]);return{candidate:nl(i),migratedFrom:rl(r)}}s(il,"migrateArkConfig");function oo(e,t="ark.config.json"){let{candidate:n,migratedFrom:r}=il(e,t),o=[];if(on(n,Hi,"$",Hi,o),Mi(n,o),$i(n,o),o.length>0)throw new ke(t,o);return{config:n,migratedFrom:r}}s(oo,"loadArkConfigContract");function Gi(e,t="ark.config.json"){let n;try{n=JSON.parse(e)}catch(r){throw new ke(t,[{path:"$",message:`invalid JSON: ${r instanceof Error?r.message:String(r)}`}])}return oo(n,t)}s(Gi,"parseArkConfigJson");function Vi(e){let t={$schema:typeof e.$schema=="string"&&e.$schema.length>0?e.$schema:tr,schemaVersion:ae};for(let[n,r]of Object.entries(e))n!=="$schema"&&n!=="schemaVersion"&&(t[n]=r);return t}s(Vi,"withArkConfigMetadata");function sl(e){return e.endsWith(".")?e:`${e}.`}s(sl,"normalizePrefix");function al(e,t){let n=e.prefixes.length?Math.max(...e.prefixes.map(o=>o.length)):0;return(t.prefixes.length?Math.max(...t.prefixes.map(o=>o.length)):0)-n}s(al,"byLongestPrefix");function sn(e){let t=e.layers.map(o=>({...o,prefixes:o.prefixes.map(sl)})),n=[...t].sort(al),r=[...e.rules??[]];return{name:e.name,layers:t,rules:r,resolveLayer(o){return t.find(i=>i.match?.(o))?.name??n.find(i=>i.prefixes.some(a=>o.startsWith(a)))?.name}}}s(sn,"createArchitectureProfile");function an(e,t={}){return sn({name:t.name??e.name??"ark.config.json",layers:e.layers.map((n,r)=>({name:n.name,prefixes:n.intentPrefixes??[],description:n.description,order:r+1})),rules:e.rules??[]})}s(an,"createArchitectureProfileFromArkConfig");var ll=[{name:"DomainModel",prefixes:["Domain"],description:"Rich domain model, business rules, and domain events.",order:1},{name:"ApplicationOrchestration",prefixes:["Application"],description:"Use cases and command orchestration.",order:2},{name:"PersistenceAdapters",prefixes:["Adapter.Persistence","Adapter.Repository"],description:"Database, repository, and storage adapters.",order:3},{name:"IntegrationAdapters",prefixes:["Adapter.Integration","Adapter.External"],description:"External systems, APIs, and integration adapters.",order:4},{name:"WorkflowSagaEngine",prefixes:["Workflow"],description:"Sagas, workflows, and long-running processes.",order:5},{name:"BackgroundJobsScheduling",prefixes:["Job"],description:"Background jobs, scheduled work, and async processors.",order:6},{name:"PresentationAdapters",prefixes:["Presentation","Adapter.Presentation","Adapter.Api"],description:"API, UI, controller, and presentation adapters.",order:7},{name:"ReportingReadModels",prefixes:["Reporting"],description:"Read models, projections, and reporting surfaces.",order:8},{name:"ExtensibilityMetadata",prefixes:["Metadata"],description:"Metadata, extensions, and schema contracts.",order:9},{name:"SecurityAuditObservability",prefixes:["Security","Audit","Observability"],description:"Security, audit, and observability concerns.",order:10},{name:"Kernel",prefixes:["Kernel"],description:"Ark-owned governance and kernel signals.",order:11}],Ye=sn({name:"Ark 11-layer Hexagonal Event-Driven Profile",layers:ll,rules:nr.map(e=>({...e}))}),cl={DomainModel:["domain"],ApplicationOrchestration:["application","app"],PersistenceAdapters:["adapters/persistence","adapters/repository","repositories","infra/persistence"],IntegrationAdapters:["adapters/integration","adapters/external","integrations"],WorkflowSagaEngine:["workflows","sagas"],BackgroundJobsScheduling:["jobs","schedules"],PresentationAdapters:["presentation","adapters/presentation","adapters/api"],ReportingReadModels:["reporting","read-models","projections"],ExtensibilityMetadata:["metadata","extensions"],SecurityAuditObservability:["security","audit","observability"],Kernel:["kernel"]};function io(e={}){let t=e.rootDir??"src",n=e.optionalLayers??!0,r=t==="."?"":`${t}/`;return Vi({include:e.include??[t],layers:Ye.layers.map(o=>({name:o.name,patterns:(cl[o.name]??[o.name]).map(i=>`${r}${i}/**`),intentPrefixes:o.prefixes,optional:n})),rules:[...Ye.rules]})}s(io,"createElevenLayerArkConfig");var rr=class{static{s(this,"MetadataRegistryImpl")}entities=new Map;entity(t,n,r={}){if(this.entities.has(t)&&!r.allowOverwrite)throw new Error(`Entity metadata "${t}" is already registered.`);let o={name:t,fields:{},...n};return this.entities.set(t,o),o}getEntity(t){return this.entities.get(t)}listEntities(){return Array.from(this.entities.values())}findEntitiesByIntent(t){return this.listEntities().filter(n=>n.emits?.includes(t)||n.consumes?.includes(t))}validate(){let t=[];for(let n of this.entities.values()){n.name.trim()||t.push({entity:n.name,message:"Entity name is required."});for(let[r,o]of Object.entries(n.fields))r.trim()||t.push({entity:n.name,field:r,message:"Field name is required."}),(!o.type||typeof o.type!="string")&&t.push({entity:n.name,field:r,message:"Field type must be a non-empty string."}),o.relation&&!this.entities.has(o.relation.entity)&&t.push({entity:n.name,field:r,message:`Related entity "${o.relation.entity}" is not registered.`})}return{ok:t.length===0,issues:t}}toJSON(){return this.listEntities()}};function ln(){return new rr}s(ln,"createMetadataRegistry");function so(e,t={}){return{name:e,ownerLayer:t.ownerLayer,intent:t.intent,allowedAdapters:t.allowedAdapters?[...t.allowedAdapters]:void 0}}s(so,"definePort");function ao(e,t,n,r={}){let o=Array.isArray(n)?{...r,requiredKeys:n}:{...n??{}},i=o.requiredKeys;if(i&&i.length>0){let c=i.filter(p=>!ji(t,p));if(c.length>0)throw new Error(`Adapter for port "${e.name}" is missing required members: ${c.join(", ")}`)}let a={name:o.name,layer:o.layer,intent:o.intent,port:e,impl:t},l=or(a);if(!l.ok)throw new Error(l.issues.map(c=>c.message).join(`
|
|
21
|
-
`));return a}s(ao,"createAdapter");function lo(e,t=[]){let n=t.filter(r=>!ji(e,r));return n.length===0?{ok:!0}:{ok:!1,missing:n}}s(lo,"checkContract");function or(e){let t=e.port.allowedAdapters??[];return t.length===0?{ok:!0,issues:[]}:[e.name,e.intent].filter(o=>typeof o=="string"&&o.length>0).some(o=>t.includes(o))?{ok:!0,issues:[]}:{ok:!1,issues:[{ruleId:"ADAPTER_NOT_ALLOWED_FOR_PORT",port:e.port.name,adapter:e.name??e.intent,message:`Adapter "${e.name??e.intent??"unknown"}" is not allowed for port "${e.port.name}".`}]}}s(or,"checkAdapterGovernance");function ji(e,t){return e!=null&&(typeof e=="object"||typeof e=="function")&&t in e}s(ji,"hasMember");var uo=Object.freeze(["network","filesystem","clock","randomness","environment","process","persistence"]),fo=Object.freeze({fetch:"network",XMLHttpRequest:"network",Date:"clock","Date.now":"clock","Math.random":"randomness","process.env":"environment",process:"process"}),go=Object.freeze(Object.keys(fo).sort()),co=Object.freeze({fs:"filesystem","node:fs":"filesystem","fs/promises":"filesystem","node:fs/promises":"filesystem","fs-extra":"filesystem","graceful-fs":"filesystem",memfs:"filesystem",chokidar:"filesystem",http:"network",https:"network",http2:"network",net:"network",tls:"network",dgram:"network",dns:"network","node:http":"network","node:https":"network","node:http2":"network","node:net":"network","node:tls":"network","node:dgram":"network","node:dns":"network",axios:"network",undici:"network","node-fetch":"network",got:"network",ky:"network",superagent:"network",ws:"network",process:"process","node:process":"process",child_process:"process","node:child_process":"process","@prisma/client":"persistence",prisma:"persistence",pg:"persistence",mysql:"persistence",mysql2:"persistence",mongodb:"persistence",mongoose:"persistence",sqlite3:"persistence","better-sqlite3":"persistence",redis:"persistence",ioredis:"persistence",typeorm:"persistence",knex:"persistence","drizzle-orm":"persistence",sequelize:"persistence",kysely:"persistence","@supabase/supabase-js":"persistence"}),po=Object.freeze({process:Object.freeze(["process","node:process"])});function cn(e){if(!e||e.startsWith(".")||e.startsWith("/"))return null;let t=co[e];if(t)return t;let n=e.indexOf("/");if(n<0)return null;let r=e.slice(0,n),o=co[r];if(o)return o;let i=e.indexOf("/",n+1);return i<0?null:co[e.slice(0,i)]??null}s(cn,"capabilityForModuleSpecifier");function xe(e,t){for(let n of t)if(po[n]?.includes(e))return n;return null}s(xe,"forbiddenGlobalForModuleSpecifier");function ir(e){let t=e.split(".");for(let n=t.length;n>=1;n-=1){let r=t.slice(0,n).join("."),o=fo[r];if(o)return o}return null}s(ir,"capabilityForAmbientName");function yt(e){if(e?.pure===!0)return[...uo].sort();let n=(e?.capabilities?.deny??[]).filter(r=>uo.includes(r));return[...new Set(n)].sort()}s(yt,"effectiveCapabilityDeny");function dn(e,t){if(t.length===0)return!1;let n=new Set(t),r=e.split(".");for(let o=r.length;o>=1;o-=1)if(n.has(r.slice(0,o).join(".")))return!0;return!1}s(dn,"ambientCoveredByForbiddenGlobals");function sr(e){let t=new Set,n=new Set,r=Object.keys(fo);for(let o of e?.forbiddenGlobals??[]){let i=r.filter(a=>a===o||a.startsWith(`${o}.`));if(i.length===0)n.add(o);else for(let a of i)t.add(`ambient:${a}`);for(let a of po[o]??[])t.add(`import-exact:${a}`)}for(let o of yt(e)){if(t.add(`import:${o}`),o==="process")for(let i of po.process)t.add(`import-exact:${i}`);for(let i of r)ir(i)===o&&t.add(`ambient:${i}`)}return{atoms:[...t].sort(),rawGlobals:[...n].sort()}}s(sr,"loweredLayerCoverage");function ht(e,t){return t&&e.isStringLiteralLike(t)?t.text:void 0}s(ht,"literalText");function zi(e,t){return e.getLineAndCharacterOfPosition(t.getStart(e)).line+1}s(zi,"lineOf");function Bi(e,t){if(e.isImportDeclaration(t)){let r=t.importClause;if(!r)return!1;if(r.isTypeOnly)return!0;let o=r.namedBindings;return!!(o&&e.isNamedImports(o)&&o.elements.length>0&&o.elements.every(i=>i.isTypeOnly))}if(t.isTypeOnly)return!0;let n=t.exportClause;return!!(n&&e.isNamedExports(n)&&n.elements.length>0&&n.elements.every(r=>r.isTypeOnly))}s(Bi,"isTypeOnlyReference");function qi(e,t){let n={noLib:!0,noResolve:!0,target:e.ScriptTarget.Latest},r=e.createCompilerHost(n,!0);return r.getSourceFile=o=>o===t.fileName?t:void 0,r.fileExists=o=>o===t.fileName,r.readFile=o=>o===t.fileName?t.text:void 0,e.createProgram([t.fileName],n,r).getTypeChecker()}s(qi,"singleFileChecker");function mo(e,t){try{return e.getSymbolAtLocation(t)}catch{return}}s(mo,"symbolAt");function yo(e,t,n,r){let o=r.parent&&e.isShorthandPropertyAssignment(r.parent)&&r.parent.name===r,i;try{i=o?t.getShorthandAssignmentValueSymbol(r.parent):mo(t,r)}catch{i=void 0}return!!i?.declarations?.some(a=>a.getSourceFile().fileName===n.fileName)}s(yo,"localDeclaration");function Xe(e,t){let n,r=[],o=s((a,l,c,p=!1)=>r.push({specifier:c,kind:l,line:zi(t,a),typeOnly:p,unresolved:c===void 0,node:a}),"add"),i=s(a=>{if(e.isImportDeclaration(a))o(a,"import",ht(e,a.moduleSpecifier),Bi(e,a));else if(e.isExportDeclaration(a)&&a.moduleSpecifier)o(a,"export",ht(e,a.moduleSpecifier),Bi(e,a));else if(e.isImportEqualsDeclaration(a)&&e.isExternalModuleReference(a.moduleReference))o(a,"require",ht(e,a.moduleReference.expression),a.isTypeOnly===!0);else if(e.isCallExpression(a)){let l=a.expression.kind===e.SyntaxKind.ImportKeyword,p=e.isIdentifier(a.expression)&&a.expression.text==="require"&&!yo(e,n??(n=qi(e,t)),t,a.expression);(l||p)&&o(a,p?"require":"dynamic-import",ht(e,a.arguments[0]))}e.forEachChild(a,i)},"visit");return i(t),r}s(Xe,"extractSemanticDependencies");function dl(e,t){let n=[],r=t;for(;e.isPropertyAccessExpression(r)||e.isElementAccessExpression(r);){if(e.isPropertyAccessExpression(r))n.unshift(r.name.text);else{let o=ht(e,r.argumentExpression);if(o===void 0)return;n.unshift(o)}r=r.expression}if(e.isIdentifier(r))return n.unshift(r.text),{root:r,segments:n}}s(dl,"staticAccessPath");function ul(e,t){let n=t.parent;return e.isPropertyAccessExpression(n)||e.isElementAccessExpression(n)?!1:e.isExpressionNode(t)&&!e.isInTypeQuery(t)||e.isShorthandPropertyAssignment(n)&&n.name===t}s(ul,"runtimeIdentifierReference");function Wi(e,t){let n=t[0]==="globalThis"?t.slice(1):t;for(let r=n.length;r>=1;r-=1){let o=n.slice(0,r).join(".");if(e.has(o))return o}}s(Wi,"bestForbiddenMatch");function Ze(e,t,n){if(n.length===0)return[];let r=new Set(n),o=qi(e,t),i=new Map,a=new Set;for(let u of t.statements)if(e.isVariableStatement(u))for(let f of u.declarationList.declarations)e.isIdentifier(f.name)&&a.add(f.name.text);let l=s(u=>{let f=dl(e,u);if(!f)return;let m=mo(o,f.root),y=m?i.get(m):void 0;return y?[...y,...f.segments.slice(1)]:yo(e,o,t,f.root)||a.has(f.root.text)?void 0:f.segments},"resolvePath");for(let u of t.statements)if(e.isVariableStatement(u))for(let f of u.declarationList.declarations){if(!f.initializer||!e.isIdentifier(f.name))continue;let m=l(f.initializer),y=mo(o,f.name);!m||!y||i.set(y,m)}let c=[],p=new Set,g=s((u,f)=>{let m=zi(t,f),y=`${u}:${f.getStart(t)}`;p.has(y)||(p.add(y),c.push({name:u,line:m,node:f}))},"flag"),h=s(u=>{let f=u.parent&&(e.isPropertyAccessExpression(u.parent)||e.isElementAccessExpression(u.parent))&&u.parent.expression===u;if((e.isPropertyAccessExpression(u)||e.isElementAccessExpression(u))&&!f){let m=l(u),y=m?Wi(r,m):void 0;y&&g(y,u)}else e.isIdentifier(u)&&r.has(u.text)&&ul(e,u)&&!yo(e,o,t,u)&&g(u.text,u);if(e.isVariableDeclaration(u)&&e.isObjectBindingPattern(u.name)&&u.initializer){let m=l(u.initializer);if(m)for(let y of u.name.elements){if(!e.isIdentifier(y.name))continue;let v=y.propertyName?ht(e,y.propertyName)??y.propertyName.text:y.name.text,E=Wi(r,[...m,v]);E&&g(E,u.initializer)}}e.forEachChild(u,h)},"visit");return h(t),c}s(Ze,"collectForbiddenCapabilityUses");function ho(e,t,n){let r=[];for(let o of n?.dependencies??Xe(e,t)){if(o.typeOnly||!o.specifier)continue;let i=cn(o.specifier);i&&r.push({capability:i,symbol:o.specifier,line:o.line,source:"import-based"})}for(let o of n?.ambientUses??Ze(e,t,go)){let i=ir(o.name);i&&r.push({capability:i,symbol:o.name,line:o.line,source:"ambient-global"})}return r.sort((o,i)=>o.line-i.line||o.capability.localeCompare(i.capability)||o.symbol.localeCompare(i.symbol))}s(ho,"collectCapabilityUses");var Ro={RAW_EVENT_PUBLISH:"Publish through a registered intent creator; raw event objects or intent strings bypass Ark contracts and tooling.",PUBLISH_MISSING_SOURCE:"Strict Ark publish calls must include metadata.source."},Ao=Object.freeze([{layer:"DomainModel",prefixes:["Domain."]},{layer:"ApplicationOrchestration",prefixes:["Application."]},{layer:"PersistenceAdapters",prefixes:["Adapter.Persistence.","Adapter.Repository."]},{layer:"IntegrationAdapters",prefixes:["Adapter.Integration.","Adapter.External."]},{layer:"WorkflowSagaEngine",prefixes:["Workflow."]},{layer:"BackgroundJobsScheduling",prefixes:["Job."]},{layer:"PresentationAdapters",prefixes:["Presentation.","Adapter.Presentation.","Adapter.Api."]},{layer:"ReportingReadModels",prefixes:["Reporting."]},{layer:"ExtensibilityMetadata",prefixes:["Metadata."]},{layer:"SecurityAuditObservability",prefixes:["Security.","Audit.","Observability."]},{layer:"Kernel",prefixes:["Kernel."]}]);function ko(e,t){return t.flatMap((r,o)=>(r.prefixes??r.intentPrefixes??[]).map(i=>({layer:r.name,layerIndex:o,prefix:i.endsWith(".")?i:`${i}.`}))).filter(({prefix:r})=>e.startsWith(r)).sort((r,o)=>o.prefix.length-r.prefix.length||r.layerIndex-o.layerIndex)[0]?.layer}s(ko,"resolveIntentLayer");function Je(e){return/^(Domain|Application|Adapter|Workflow|Job|Presentation|Reporting|Metadata|Security|Audit|Observability|Kernel)\.[A-Za-z0-9_.]+$/.test(e)}s(Je,"looksLikeArkIntent");function un(e){if(!e.publishCall)return[];let t=[];return(e.rawIntentName!==void 0&&Je(e.rawIntentName)||e.objectHasIntent)&&t.push({ruleId:"RAW_EVENT_PUBLISH",message:Ro.RAW_EVENT_PUBLISH}),e.arkPublishCandidate&&!e.hasSource&&t.push({ruleId:"PUBLISH_MISSING_SOURCE",message:Ro.PUBLISH_MISSING_SOURCE}),t}s(un,"classifyPublishFacts");function j(e,t,n){return{ruleId:e,code:e,message:t,...n}}s(j,"violation");function Rt(e,t){return e.slice(0,t).split(`
|
|
22
|
-
`).length}s(Rt,"lineOf");var pl=new Set(["publish","subscribe","defineIntent","registerHandler"]);function fl(e,t){return e.index+e[0].indexOf(t)}s(fl,"captureIndex");function gl(e){let t=[],n=new Set,r=s((l,c)=>{!l||n.has(c)||(n.add(c),t.push({value:l,index:c}))},"push"),o=s(l=>{l.lastIndex=0;let c;for(;(c=l.exec(e))!==null;){let p=c[1];p&&r(p,fl(c,p))}},"pushFrom");o(/\b(?:publish|subscribe|defineIntent|registerHandler)\s{0,8}(?:<[^>]{0,120}>)?\s{0,8}\(\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),o(/\b(?:intent|onEvent)\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g);let i=/\breactsTo\s{0,8}:\s{0,8}\[([^\]]{0,2000})\]/g,a;for(;(a=i.exec(e))!==null;){let l=a[1]??"",c=a.index+a[0].indexOf(l),p=/['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g,g;for(;(g=p.exec(l))!==null;){let h=g[1];h&&r(h,c+g.index+g[0].indexOf(h))}}return o(/\bmetadata\s{0,8}:\s{0,8}\{[^}]{0,400}\bsource\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),o(/\bpublish\s{0,8}(?:<[^>]{0,120}>)?\s{0,8}\([^;]{0,400}?\bsource\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),t.sort((l,c)=>l.index-c.index)}s(gl,"extractQuotedStrings");function ml(e){let t=[],n=[{kind:"import",re:/\bimport\s+(?:type\s+)?(?:[^'"]*?\s+from\s*)?['"]([^'"]+)['"]/g},{kind:"export",re:/\bexport\s+(?:type\s+)?[^'"]*?\s+from\s*['"]([^'"]+)['"]/g},{kind:"dynamic-import",re:/\bimport\s*\(\s*['"]([^'"]+)['"]\s*\)/g},{kind:"require",re:/\brequire\s*\(\s*['"]([^'"]+)['"]\s*\)/g}];for(let r of n){let o;for(;(o=r.re.exec(e))!==null;){let i=o.index+o[0].indexOf(o[1]),a=o[0],l=r.kind==="import"&&/\bimport\s+type\b/.test(a)||r.kind==="export"&&/\bexport\s+type\b/.test(a);t.push({value:o[1],index:i,kind:r.kind,typeOnly:l})}}return t.sort((r,o)=>r.index-o.index)}s(ml,"extractModuleSpecifiers");function yl(e,t){return!!(t&&(e.isParenthesizedExpression(t)||e.isAsExpression(t)||typeof e.isTypeAssertionExpression=="function"&&e.isTypeAssertionExpression(t)||typeof e.isSatisfiesExpression=="function"&&e.isSatisfiesExpression(t)))}s(yl,"isSyntaxWrapper");function Io(e,t){let n=t;for(;n?.parent&&yl(e,n.parent);)n=n.parent;return n}s(Io,"unwrapWrappers");function bo(e,t){if(!t||!e.isCallExpression(t))return;let n=t.expression;if(e.isIdentifier(n))return n.text;if(e.isPropertyAccessExpression(n))return n.name.text}s(bo,"callCalleeName");function hl(e,t){let n=t.parent;if(!n||!e.isObjectLiteralExpression(n))return!1;let r=Io(e,n),o=r.parent;if(!o)return!1;if(e.isCallExpression(o)&&bo(e,o)==="publish"){let i=o.arguments;return i[1]===r||i[2]===r}if(e.isPropertyAssignment(o)&&Eo(e,o.name)==="metadata"){let i=o.parent;if(!i)return!1;let l=Io(e,i).parent;return!!(l&&e.isCallExpression(l)&&bo(e,l)==="publish")}return!1}s(hl,"isPublishMetadataSource");function Yi(e,t){let n=Io(e,t),r=n.parent;if(!r)return!1;if(e.isCallExpression(r)){let o=bo(e,r);if(o&&pl.has(o)&&r.arguments.some(i=>i===n))return!0}if(e.isArrayLiteralExpression(r))return Yi(e,r);if(e.isPropertyAssignment(r)){let o=Eo(e,r.name);if(o==="intent"||o==="onEvent"||o==="reactsTo"||o==="source"&&hl(e,r))return!0}return!1}s(Yi,"isDeclaredIntentSite");function Rl(e,t){let n=e.createSourceFile("generated.ts",t,e.ScriptTarget.Latest,!0),r=[],o=s(i=>{e.isStringLiteralLike(i)&&Yi(e,i)&&r.push({value:i.text,index:i.getStart(n)}),e.forEachChild(i,o)},"visit");return o(n),r}s(Rl,"extractQuotedStringsAst");function Al(e){let t=e.toLowerCase().split(/[^a-z0-9]+/).filter(Boolean);return["adapter","adapters","infra","infrastructure","persistence","repository","repositories","integration","database","db"].some(n=>t.includes(n))}s(Al,"hasInfrastructureToken");function kl(e){let t=e.toLowerCase();return["sequelize","prisma","typeorm","mongoose","knex"].some(n=>t===n||t.startsWith(`${n}/`))}s(kl,"isKnownInfrastructurePackage");function Il(e){let t=e.toLowerCase();return["adapter","infra","persistence","repository","repositories","integration","database"].some(n=>t.includes(n))}s(Il,"layerHasInfrastructureRole");function fn(e,t){return t&&e.isStringLiteralLike(t)?t.text:void 0}s(fn,"tsStringLiteralText");function Eo(e,t){if(t&&(e.isIdentifier(t)||e.isStringLiteralLike(t)))return t.text}s(Eo,"tsPropertyName");function Xi(e,t,n){if(!(!t||!e.isObjectLiteralExpression(t)))return t.properties.find(r=>!e.isPropertyAssignment(r)&&!e.isShorthandPropertyAssignment(r)?!1:Eo(e,r.name)===n)}s(Xi,"tsObjectProperty");function gn(e,t,n){return Xi(e,t,n)!==void 0}s(gn,"tsObjectHasProperty");function pn(e,t,n){let r=Xi(e,t,n);return r&&e.isPropertyAssignment(r)?r.initializer:void 0}s(pn,"tsObjectPropertyValue");function bl(e,t){let n=pn(e,t,"metadata");return gn(e,n,"source")}s(bl,"tsObjectHasMetadataSource");function Zi(e,t){return t?e.isIdentifier(t)?/^[A-Z]/.test(t.text):e.isPropertyAccessExpression(t)?Zi(e,t.name):!1:!1}s(Zi,"tsLooksLikeIntentCreatorExpression");function El(e,t){if(!e.isCallExpression(t))return!1;let n=t.expression;return e.isPropertyAccessExpression(n)?n.name.text==="publish":e.isIdentifier(n)&&n.text==="publish"}s(El,"tsIsPublishCall");function vl(e,t){if(!e.isCallExpression(t))return!1;let n=t.arguments[0],r=fn(e,n);return r!==void 0&&Je(r)||gn(e,n,"intent")||Zi(e,n)}s(vl,"tsIsArkPublishCandidate");function Sl(e,t){if(!e.isCallExpression(t))return!1;let[n,r,o]=t.arguments;return bl(e,n)||gn(e,r,"source")||gn(e,o,"source")}s(Sl,"tsPublishHasSource");function wl(e,t){if(!e.isCallExpression(t))return;let[n,r,o]=t.arguments,i=pn(e,n,"metadata");return fn(e,pn(e,i,"source"))??fn(e,pn(e,r,"source"))??fn(e,pn(e,o,"source"))}s(wl,"tsPublishSourceLiteral");function Cl(e,t,n,r){let o=e.createSourceFile("generated.ts",t,e.ScriptTarget.Latest,!0),i=n,a=i?.filePath,l=i?.layer,c=[],p=s(h=>o.getLineAndCharacterOfPosition(h.getStart(o)).line+1,"lineForNode"),g=s(h=>{if(El(e,h)){let u=h.arguments[0],f=fn(e,u);for(let y of un({publishCall:!0,rawIntentName:f,objectHasIntent:gn(e,u,"intent"),arkPublishCandidate:vl(e,h),hasSource:Sl(e,h)}))c.push(j(y.ruleId,y.message,{line:p(h),filePath:a}));let m=wl(e,h);if(r&&l&&m&&Je(m)){let y=r.resolveLayer(m);y&&y!==l&&c.push(j("PUBLISH_SOURCE_LAYER_MISMATCH",`Publish source "${m}" resolves to ${y}, but the target file is classified as ${l}.`,{line:p(h),filePath:a,target:m,fromLayer:l,toLayer:y}))}}e.forEachChild(h,g)},"visit");return g(o),c}s(Cl,"analyzePublishAst");function vo(e={}){let t=new Set((e.intents||[]).map(i=>typeof i=="string"?i:i.name)),n=e.forbiddenPatterns||[],r=new Set(e.infrastructureLayers??[]),o=e.enforceIntentAllowlist??t.size>0;return{validate(i,a){let l=[],c=a,p=c?.filePath,g=c?.layer,h=e.typescript,u=h?h.createSourceFile(p??"generated.ts",i,h.ScriptTarget.Latest,!0):void 0,f=u?Xe(e.typescript,u):void 0,m=f?f.filter(A=>A.specifier!==void 0).map(A=>({value:A.specifier,index:A.node.getStart(u),kind:A.kind,typeOnly:A.typeOnly})):ml(i),y=e.typescript?Rl(e.typescript,i):gl(i);if(e.typescript&&!e.allowNonLiteralDynamicImport?.(p))for(let A of f?.filter(({unresolved:b})=>b)??[]){let b=A.kind==="require";l.push(j(b?"DYNAMIC_REQUIRE_NOT_ALLOWLISTED":"DYNAMIC_IMPORT_NOT_ALLOWLISTED",`Non-literal ${b?"require call":"dynamic import"} cannot be resolved statically; add the reviewed file to dynamicImportAllowlist.`,{line:A.line,filePath:p}))}let v=g!==void 0&&(r.has(g)||Il(g)),E=g!==void 0?` If "${g}" is an infrastructure layer, mark it in ark.config.json with "mayImportInfrastructure": true (or name it with an infra token like Adapters/Persistence/Repository).`:"";for(let A of n)if(A instanceof RegExp){A.lastIndex=0;let b=A.exec(i);A.lastIndex=0,b&&l.push(j("FORBIDDEN_PATTERN",`Forbidden pattern matched: ${A}`,{line:b.index===void 0?void 0:Rt(i,b.index),filePath:p,suggestion:"Remove infrastructure imports from domain/application layers."+E}))}else i.includes(A)&&l.push(j("FORBIDDEN_SUBSTRING",`Forbidden substring: ${A}`,{line:Rt(i,i.indexOf(A)),filePath:p}));for(let A of m){let b=e.resolveImportTarget?.(A.value,p)??(e.resolveImportLayer?{layer:e.resolveImportLayer(A.value,p)}:void 0),w=typeof p=="string"?e.resolveImportTarget?.(p)??(e.resolveImportLayer?{layer:g,relPath:void 0}:void 0):void 0,N=b?.layer;if(N&&g){let I=ut(e.architectureProfile?.rules,g,N,{fromPath:w?.relPath,toPath:b?.relPath,layers:e.architectureLayers});if(I){if(A.typeOnly&&!I.peerIsolation)continue;let T=!!I.peerIsolation;l.push(j("LAYER_IMPORT_VIOLATION",I.message??(T?`Layer "${g}" must not import across slices into "${N}".`:`Layer "${g}" must not import "${N}".`),{line:Rt(i,A.index),source:A.value,target:A.value,filePath:p,fromLayer:g,toLayer:N,suggestion:T?"Extract shared code to a shared layer, or coordinate slices via events/ports \u2014 do not import across feature/context slices.":"Depend on a port/interface owned by an inner layer instead, or move this code to a layer allowed to make this import.",details:{importKind:A.kind,peerIsolation:T,...A.typeOnly?{typeOnly:!0}:{}}}));continue}continue}v||A.typeOnly||!Al(A.value)&&!kl(A.value)||l.push(j("FORBIDDEN_IMPORT",`Forbidden ${A.kind} target: "${A.value}".`,{line:Rt(i,A.index),source:A.value,target:A.value,filePath:p,suggestion:"Route infrastructure access through an allowed adapter or port boundary."+E,details:{importKind:A.kind}}))}if(e.policies)for(let A of e.policies){let b=A.check({source:i,context:a});if(b!==!0)if(Array.isArray(b))for(let w of b)l.push(j("POLICY_VIOLATION",w.message,{filePath:p,suggestion:`Fix violation of policy "${A.name}".`}));else b===!1?l.push(j("POLICY_VIOLATION",`Policy ${A.name} failed on generated code`)):l.push(j("POLICY_VIOLATION",b.message))}if(o&&t.size>0)for(let A of y)Je(A.value)&&!t.has(A.value)&&l.push(j("UNKNOWN_INTENT",`Unknown intent reference: "${A.value}"`,{line:Rt(i,A.index),filePath:p,target:A.value,suggestion:`Register intent "${A.value}" via defineIntent() or remove the reference.`}));if(e.architectureProfile&&g)for(let A of y){if(!Je(A.value))continue;let b=e.architectureProfile.resolveLayer(A.value);if(!b)continue;let w=ze(e.architectureProfile.rules,g,b,{fromPath:typeof p=="string"?p:void 0,layers:e.architectureLayers});if(w){let N=w.rule.peerIsolation?dt(w.peerIsolationReason??"cross-slice",{fromPath:typeof p=="string"?p:void 0,fromSlice:w.fromSlice,toSlice:w.toSlice}):void 0,I=`Layer "${g}" must not reference "${b}" through "${A.value}".`,T=N&&w.peerIsolationReason!=="cross-slice"?`${I} ${N}`:w.rule.message?N?`${w.rule.message} (${N})`:w.rule.message:I;l.push(j("LAYER_REFERENCE_VIOLATION",T,{line:Rt(i,A.index),filePath:p,target:A.value,fromLayer:g,toLayer:b,suggestion:"Route the dependency through an allowed intent, port, or event.",details:{rule:w.rule,peerIsolationReason:w.peerIsolationReason}}))}}if(e.extensions)for(let A of e.extensions)try{let b=A.analyze(i,a);l.push(...b)}catch(b){l.push(j("EXTENSION_ERROR",`Extension "${A.name}" failed: ${b instanceof Error?b.message:String(b)}`))}if(e.typescript&&u&&g&&e.forbiddenGlobals?.[g]?.length)try{let A=e.forbiddenGlobals[g];l.push(...Ze(e.typescript,u,A).map(b=>j("FORBIDDEN_GLOBAL",`${g} must not use the ambient global "${b.name}".`,{line:b.line,filePath:p,target:b.name,fromLayer:g,suggestion:"Inject the capability through a port (e.g. a Clock, IdGenerator, or HttpPort) instead of reaching for the ambient global."})));for(let b of f??[]){if(b.typeOnly||!b.specifier)continue;let w=xe(b.specifier,A);w&&l.push(j("FORBIDDEN_GLOBAL",`${g} must not use module "${b.specifier}" because it is the import form of forbidden global "${w}".`,{line:b.line,filePath:p,source:b.specifier,target:b.specifier,fromLayer:g,details:{importKind:b.kind,forbiddenGlobal:w},suggestion:"Inject the capability through a port instead of importing the ambient global module form."}))}}catch(A){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${A instanceof Error?A.message:String(A)}`))}if(e.typescript&&u&&g&&e.capabilityWalls?.[g]?.length)try{let A=new Set(e.capabilityWalls[g]),b=e.forbiddenGlobals?.[g]??[];for(let w of ho(e.typescript,u))A.has(w.capability)&&(w.source==="ambient-global"&&dn(w.symbol,b)||w.source==="import-based"&&xe(w.symbol,b)||l.push(j("CAPABILITY_VIOLATION",w.source==="import-based"?`${g} denies the ${w.capability} capability; found import of "${w.symbol}".`:`${g} denies the ${w.capability} capability; found ambient "${w.symbol}".`,{line:w.line,filePath:p,target:w.symbol,capability:w.capability,fromLayer:g,suggestion:"Define a small port (ClockPort, HttpPort, StoragePort) and bind the implementation in an adapter layer."})))}catch(A){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${A instanceof Error?A.message:String(A)}`))}if(e.typescript)try{l.push(...Cl(e.typescript,i,a,e.architectureProfile))}catch(A){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${A instanceof Error?A.message:String(A)}`))}return{mode:"lexical-compatibility",completeness:"partial",completenessReasons:["LEXICAL_EVIDENCE_INCOMPLETE"],valid:!1,lexicalValid:l.length===0,violations:l}}}}s(vo,"createAICodeGate");function W(e){let t=2166136261;for(let n=0;n<e.length;n+=1)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return`fnv1a-${(t>>>0).toString(16).padStart(8,"0")}`}s(W,"deterministicHash");function F(e){if(e===null||typeof e!="object")return JSON.stringify(e);if(Array.isArray(e))return`[${e.map(F).join(",")}]`;let t=e;return`{${Object.keys(t).sort().map(n=>`${JSON.stringify(n)}:${F(t[n])}`).join(",")}}`}s(F,"stableSerialize");var Oe="1.2";var Ji=["network","filesystem","clock","randomness","environment","process","persistence"];function B(e,t){let n=F(e),r=F(t);return n<r?-1:n>r?1:0}s(B,"compareCanonical");function z(e){return[...new Set(e)].sort((t,n)=>t<n?-1:t>n?1:0)}s(z,"sortedUnique");function kt(e){let t={schemaVersion:"1.2",include:z(e.include??[]),exclude:z(e.exclude??[]),excludeGenerated:e.excludeGenerated!==!1,dynamicImportAllowlist:z(e.dynamicImportAllowlist??[]),layers:e.layers.map(n=>({name:n.name,patterns:z(n.patterns??[]),exclude:z(n.exclude??[]),forbiddenGlobals:z(n.forbiddenGlobals??[]),intentPrefixes:z(n.intentPrefixes??[]),capabilityDeny:z(n.capabilities?.deny??[]),pure:n.pure===!0})).sort(B),safety:{maxTsSuppressions:e.safety?.maxTsSuppressions??0,maxAnyCasts:e.safety?.maxAnyCasts??0,allowInMemory:e.safety?.allowInMemory===!0,allowDisabledPeerIsolation:e.safety?.allowDisabledPeerIsolation===!0},...e.arkRun?{arkRun:{mode:e.arkRun.mode,compositionRoots:z(e.arkRun.compositionRoots),managedLayers:z(e.arkRun.managedLayers),requireDeclarations:e.arkRun.requireDeclarations===!0}}:{}};return W(F(t))}s(kt,"resolvedFactsEvidenceRequirementsHash");function xl(e){let t=e.completenessReasons.map(I=>({code:I.code,message:I.message,...I.file?{file:I.file}:{}})).sort(B),n=e.files.map(I=>({...I,typeOnlyExportNames:z(I.typeOnlyExportNames)})).sort((I,T)=>I.path<T.path?-1:I.path>T.path?1:0),r=e.dependencies.map(I=>({...I,...I.namedBindings?{namedBindings:z(I.namedBindings)}:{}})).sort(B),o=e.capabilityUses.map(I=>({...I})).sort(B),i=e.ambientUses.map(I=>({...I})).sort(B),a=e.publishCalls.map(I=>({...I})).sort(B),l=e.intentReferences.map(I=>({...I})).sort(B),c=e.safetyUses.map(I=>({...I})).sort(B),p=(e.classShapes??[]).map(I=>({...I,mutatingMethods:[...I.mutatingMethods??[]].map(T=>({...T}))})).sort(B),g=(e.arkRunKernelCalls??[]).map(I=>({...I})).sort(B),h=(e.arkRunManagedNews??[]).map(I=>({...I})).sort(B),u=(e.arkRunCompositionRootHits??[]).map(I=>({...I})).sort(B),f=(e.arkRunDeclarations??[]).map(I=>({...I,uses:z(I.uses),reactsTo:z(I.reactsTo),raises:z(I.raises),sends:z(I.sends)})).sort(B),m=(e.arkOrderPlaneCalls??[]).map(I=>({...I})).sort(B),y=(e.arkOrderGenericUpdates??[]).map(I=>({...I})).sort(B),v=(e.arkOrderRootHits??[]).map(I=>({...I})).sort(B),E=(e.arkOrderXiFieldWrites??[]).map(I=>({...I})).sort(B),A=(e.arkOrderIngestWritesXi??[]).map(I=>({...I})).sort(B),b=(e.arkOrderReleaseKeyCounts??[]).map(I=>({...I})).sort(B),w=e.files.map(({path:I,contentHash:T})=>({path:I,contentHash:T})).sort((I,T)=>I.path<T.path?-1:I.path>T.path?1:0),N=W(F(w));return{schemaVersion:"1.2",completeness:e.completeness,completenessReasons:t,resolverIdentity:e.resolverIdentity,compilerIdentity:e.compilerIdentity,compilerOptionsHash:e.compilerOptionsHash,tsconfigHash:e.tsconfigHash,candidateTreeHash:N,evidenceRequirementsHash:e.evidenceRequirementsHash,...e.projectPackageName?{projectPackageName:e.projectPackageName}:{},files:n,dependencies:r,capabilityUses:o,ambientUses:i,publishCalls:a,intentReferences:l,safetyUses:c,classShapes:p,arkRunKernelCalls:g,arkRunManagedNews:h,arkRunCompositionRootHits:u,arkRunDeclarations:f,arkOrderPlaneCalls:m,arkOrderGenericUpdates:y,arkOrderRootHits:v,arkOrderXiFieldWrites:E,arkOrderIngestWritesXi:A,arkOrderReleaseKeyCounts:b}}s(xl,"canonicalResolvedFactsInput");function Qi(e){let t=xl(e);return{...t,factsHash:W(F(t))}}s(Qi,"createCanonicalResolvedCandidateFacts");function ar(e){return Qi(ts(M(e,"$"),!1))}s(ar,"createResolvedCandidateFacts");function M(e,t){if(!e||typeof e!="object"||Array.isArray(e))throw new Error(`${t} must be an object.`);return e}s(M,"asRecord");function K(e,t,n){let r=new Set(t),o=Object.keys(e).find(i=>!r.has(i));if(o)throw new Error(`${n}.${o} is not part of schema ${"1.2"}.`)}s(K,"assertOnlyKeys");function L(e,t,n){let r=e[t];if(typeof r!="string"||r.length===0)throw new Error(`${n}.${t} must be a non-empty string.`);return r}s(L,"requiredText");function Ie(e,t,n){if(e[t]!==void 0)return L(e,t,n)}s(Ie,"optionalText");function H(e,t,n){let r=L(e,t,n),o=r.replace(/\\/g,"/");if(!o||o.startsWith("/")||/^[A-Za-z]:\//.test(o)||/[\u0000-\u001f\u007f]/.test(o))throw new Error(`${n}.${t} must be a canonical project-relative path.`);let i=[];for(let l of o.split("/"))if(!(!l||l==="."))if(l===".."){if(i.length===0)throw new Error(`${n}.${t} must be a canonical project-relative path.`);i.pop()}else i.push(l);let a=i.join("/");if(!a||a!==r)throw new Error(`${n}.${t} must be a canonical project-relative path.`);return a}s(H,"requiredProjectPath");function U(e,t,n){if(typeof e[t]!="boolean")throw new Error(`${n}.${t} must be a boolean.`);return e[t]}s(U,"requiredBoolean");function es(e,t,n){let r=e[t];if(!Number.isInteger(r)||Number(r)<0)throw new Error(`${n}.${t} must be a non-negative integer.`);return Number(r)}s(es,"requiredInteger");function Y(e,t,n){let r=es(e,t,n);if(r===0)throw new Error(`${n}.${t} must be a positive integer.`);return r}s(Y,"requiredPositiveInteger");function G(e,t,n){let r=e[t];if(!Array.isArray(r))throw new Error(`${n}.${t} must be an array.`);return r}s(G,"requiredArray");function be(e,t,n,r){let o=e[t];if(typeof o!="string"||!n.includes(o))throw new Error(`${r}.${t} must be one of ${n.join(", ")}.`);return o}s(be,"enumValue");function At(e,t){if(!Array.isArray(e)||e.some(n=>typeof n!="string"||!n))throw new Error(`${t} must be an array of non-empty strings.`);return[...e]}s(At,"parseStringArray");function Ol(e,t,n){let r=new Set;for(let o of e){let i=t(o);if(r.has(i))throw new Error(`${n} must not contain duplicate facts (${i}).`);r.add(i)}}s(Ol,"assertUnique");function ts(e,t){K(e,["schemaVersion","completeness","completenessReasons","resolverIdentity","compilerIdentity","compilerOptionsHash","tsconfigHash","evidenceRequirementsHash","projectPackageName","files","dependencies","capabilityUses","ambientUses","publishCalls","intentReferences","safetyUses","classShapes","arkRunKernelCalls","arkRunManagedNews","arkRunCompositionRootHits","arkRunDeclarations","arkOrderPlaneCalls","arkOrderGenericUpdates","arkOrderRootHits","arkOrderXiFieldWrites","arkOrderIngestWritesXi","arkOrderReleaseKeyCounts",...t?["candidateTreeHash","factsHash"]:[]],"$");let n=be(e,"schemaVersion",["1.0","1.1","1.2"],"$"),r=be(e,"completeness",["complete","partial","unavailable"],"$"),o=G(e,"completenessReasons","$").map((S,C)=>{let R=`$.completenessReasons[${C}]`,d=M(S,R);K(d,["code","message","file"],R);let _=d.file===void 0?void 0:H(d,"file",R);return{code:L(d,"code",R),message:L(d,"message",R),..._?{file:_}:{}}});if(r==="complete"&&o.length>0)throw new Error("$.completenessReasons must be empty when completeness is complete.");if(r!=="complete"&&o.length===0)throw new Error("$.completenessReasons must explain partial or unavailable facts.");let i=G(e,"files","$").map((S,C)=>{let R=`$.files[${C}]`,d=M(S,R);return K(d,["path","contentHash","parseStatus","parseDiagnosticCount","exportsOnlyTypes","typeOnlyExportNames","hasTopLevelSideEffects"],R),{path:H(d,"path",R),contentHash:L(d,"contentHash",R),parseStatus:be(d,"parseStatus",["parsed","invalid"],R),parseDiagnosticCount:es(d,"parseDiagnosticCount",R),exportsOnlyTypes:U(d,"exportsOnlyTypes",R),typeOnlyExportNames:At(d.typeOnlyExportNames,`${R}.typeOnlyExportNames`),hasTopLevelSideEffects:U(d,"hasTopLevelSideEffects",R)}}),a=G(e,"dependencies","$").map((S,C)=>{let R=`$.dependencies[${C}]`,d=M(S,R);K(d,["from","specifier","kind","typeOnly","line","resolution","target","namedBindings","targetTypeOnlyExports","sourcePureTypeModule","namedBindingsTypeOnly","portProofEligible"],R);let _=Ie(d,"specifier",R),$=Ie(d,"target",R),ie=be(d,"resolution",["resolved-project","resolved-external","unresolved","dynamic"],R);if(ie==="resolved-project"&&!$)throw new Error(`${R}.target is required for resolved-project dependencies.`);if(ie!=="resolved-project"&&$)throw new Error(`${R}.target is only allowed for resolved-project dependencies.`);if(ie!=="dynamic"&&!_)throw new Error(`${R}.specifier is required unless resolution is dynamic.`);return{from:H(d,"from",R),..._?{specifier:_}:{},kind:be(d,"kind",["import","export","dynamic-import","require"],R),typeOnly:U(d,"typeOnly",R),line:Y(d,"line",R),resolution:ie,...$?{target:H(d,"target",R)}:{},...d.namedBindings!==void 0?{namedBindings:At(d.namedBindings,`${R}.namedBindings`)}:{},...d.targetTypeOnlyExports!==void 0?{targetTypeOnlyExports:U(d,"targetTypeOnlyExports",R)}:{},...d.sourcePureTypeModule!==void 0?{sourcePureTypeModule:U(d,"sourcePureTypeModule",R)}:{},...d.namedBindingsTypeOnly!==void 0?{namedBindingsTypeOnly:U(d,"namedBindingsTypeOnly",R)}:{},...d.portProofEligible!==void 0?{portProofEligible:U(d,"portProofEligible",R)}:{}}}),l=G(e,"capabilityUses","$").map((S,C)=>{let R=`$.capabilityUses[${C}]`,d=M(S,R);return K(d,["file","line","symbol","capability","source"],R),{file:H(d,"file",R),line:Y(d,"line",R),symbol:L(d,"symbol",R),capability:be(d,"capability",Ji,R),source:be(d,"source",["ambient-global","import-based"],R)}}),c=G(e,"ambientUses","$").map((S,C)=>{let R=`$.ambientUses[${C}]`,d=M(S,R);return K(d,["file","line","symbol"],R),{file:H(d,"file",R),line:Y(d,"line",R),symbol:L(d,"symbol",R)}}),p=G(e,"publishCalls","$").map((S,C)=>{let R=`$.publishCalls[${C}]`,d=M(S,R);K(d,["file","line","rawIntentName","objectHasIntent","arkPublishCandidate","hasSource","sourceIntent"],R);let _=Ie(d,"rawIntentName",R),$=Ie(d,"sourceIntent",R);return{file:H(d,"file",R),line:Y(d,"line",R),..._?{rawIntentName:_}:{},objectHasIntent:U(d,"objectHasIntent",R),arkPublishCandidate:U(d,"arkPublishCandidate",R),hasSource:U(d,"hasSource",R),...$?{sourceIntent:$}:{}}}),g=G(e,"intentReferences","$").map((S,C)=>{let R=`$.intentReferences[${C}]`,d=M(S,R);return K(d,["file","line","intent"],R),{file:H(d,"file",R),line:Y(d,"line",R),intent:L(d,"intent",R)}}),h=G(e,"safetyUses","$").map((S,C)=>{let R=`$.safetyUses[${C}]`,d=M(S,R);K(d,["file","line","kind","symbol"],R);let _=Ie(d,"symbol",R),$=be(d,"kind",["ts-suppression","any-cast","dynamic-import","dynamic-require","in-memory-store"],R);if($==="in-memory-store"&&!_)throw new Error(`${R}.symbol is required for in-memory-store facts.`);if($!=="in-memory-store"&&_)throw new Error(`${R}.symbol is only allowed for in-memory-store facts.`);return{file:H(d,"file",R),line:Y(d,"line",R),kind:$,..._?{symbol:_}:{}}});Ol(i,S=>S.path,"$.files");let u=new Set(i.map(S=>S.path));for(let S of i){if(S.parseStatus==="parsed"&&S.parseDiagnosticCount!==0)throw new Error(`$.files[${S.path}].parseDiagnosticCount must be 0 when parseStatus is parsed.`);if(S.parseStatus==="invalid"&&S.parseDiagnosticCount===0)throw new Error(`$.files[${S.path}].parseDiagnosticCount must be positive when parseStatus is invalid.`)}if(r==="complete"&&i.some(S=>S.parseStatus==="invalid"))throw new Error("$.completeness cannot be complete when a candidate file failed to parse.");for(let S of a)if(!u.has(S.from))throw new Error(`$.dependencies references missing source file ${S.from}.`);let m=(e.arkRunKernelCalls===void 0?[]:G(e,"arkRunKernelCalls","$")).map((S,C)=>{let R=`$.arkRunKernelCalls[${C}]`,d=M(S,R);K(d,["file","line","kind","callee","viaImport","receiver","nameLiteral"],R);let _=Ie(d,"receiver",R),$=Ie(d,"nameLiteral",R);return{file:H(d,"file",R),line:Y(d,"line",R),kind:be(d,"kind",["factory","publisher","publish","raise","send","subscribe","register-handler","resolve","resolve-singleton"],R),callee:L(d,"callee",R),viaImport:U(d,"viaImport",R),..._?{receiver:_}:{},...$?{nameLiteral:$}:{}}}),v=(e.arkRunManagedNews===void 0?[]:G(e,"arkRunManagedNews","$")).map((S,C)=>{let R=`$.arkRunManagedNews[${C}]`,d=M(S,R);K(d,["file","line","typeName","importedFrom"],R);let _=Ie(d,"importedFrom",R);return{file:H(d,"file",R),line:Y(d,"line",R),typeName:L(d,"typeName",R),..._?{importedFrom:_}:{}}}),A=(e.arkRunCompositionRootHits===void 0?[]:G(e,"arkRunCompositionRootHits","$")).map((S,C)=>{let R=`$.arkRunCompositionRootHits[${C}]`,d=M(S,R);return K(d,["file","matchedRoot","hasKernelFactory"],R),{file:H(d,"file",R),matchedRoot:L(d,"matchedRoot",R),hasKernelFactory:U(d,"hasKernelFactory",R)}}),b=e.arkRunDeclarations===void 0?[]:G(e,"arkRunDeclarations","$"),N=(e.arkOrderPlaneCalls===void 0?[]:G(e,"arkOrderPlaneCalls","$")).map((S,C)=>{let R=`$.arkOrderPlaneCalls[${C}]`,d=M(S,R);return K(d,["file","line","callee"],R),{file:H(d,"file",R),line:Y(d,"line",R),callee:L(d,"callee",R)}}),T=(e.arkOrderGenericUpdates===void 0?[]:G(e,"arkOrderGenericUpdates","$")).map((S,C)=>{let R=`$.arkOrderGenericUpdates[${C}]`,d=M(S,R);return K(d,["file","line","method"],R),{file:H(d,"file",R),line:Y(d,"line",R),method:L(d,"method",R)}}),ye=(e.arkOrderRootHits===void 0?[]:G(e,"arkOrderRootHits","$")).map((S,C)=>{let R=`$.arkOrderRootHits[${C}]`,d=M(S,R);return K(d,["file","matchedRoot","hasPlaneFactory"],R),{file:H(d,"file",R),matchedRoot:L(d,"matchedRoot",R),hasPlaneFactory:U(d,"hasPlaneFactory",R)}}),D=(e.arkOrderXiFieldWrites===void 0?[]:G(e,"arkOrderXiFieldWrites","$")).map((S,C)=>{let R=`$.arkOrderXiFieldWrites[${C}]`,d=M(S,R);return K(d,["file","line","key"],R),{file:H(d,"file",R),line:Y(d,"line",R),key:L(d,"key",R)}}),Z=(e.arkOrderIngestWritesXi===void 0?[]:G(e,"arkOrderIngestWritesXi","$")).map((S,C)=>{let R=`$.arkOrderIngestWritesXi[${C}]`,d=M(S,R);return K(d,["file","line"],R),{file:H(d,"file",R),line:Y(d,"line",R)}}),$t=(e.arkOrderReleaseKeyCounts===void 0?[]:G(e,"arkOrderReleaseKeyCounts","$")).map((S,C)=>{let R=`$.arkOrderReleaseKeyCounts[${C}]`,d=M(S,R);return K(d,["file","line","keyCount"],R),{file:H(d,"file",R),line:Y(d,"line",R),keyCount:Y(d,"keyCount",R)}}),Kt=b.map((S,C)=>{let R=`$.arkRunDeclarations[${C}]`,d=M(S,R);return K(d,["file","line","uses","reactsTo","raises","sends"],R),{file:H(d,"file",R),line:Y(d,"line",R),uses:At(d.uses,`${R}.uses`),reactsTo:At(d.reactsTo,`${R}.reactsTo`),raises:At(d.raises,`${R}.raises`),sends:At(d.sends,`${R}.sends`)}});for(let[S,C]of[["$.capabilityUses",l],["$.ambientUses",c],["$.publishCalls",p],["$.intentReferences",g],["$.safetyUses",h],["$.arkRunKernelCalls",m],["$.arkRunManagedNews",v],["$.arkRunCompositionRootHits",A],["$.arkRunDeclarations",Kt],["$.arkOrderPlaneCalls",N],["$.arkOrderGenericUpdates",T],["$.arkOrderRootHits",ye],["$.arkOrderXiFieldWrites",D],["$.arkOrderIngestWritesXi",Z],["$.arkOrderReleaseKeyCounts",$t]])for(let R of C)if(!u.has(R.file))throw new Error(`${S} references missing file ${R.file}.`);let Ke=Ie(e,"projectPackageName","$"),Hr=(e.classShapes===void 0?[]:G(e,"classShapes","$")).map((S,C)=>{let R=`$.classShapes[${C}]`,d=M(S,R);K(d,["file","className","exported","hasPublicMutableFields","hasPublicSetters","hasPublicConstructor","hasStaticFactory","mutatingMethods","dataOnly"],R);let _=G(d,"mutatingMethods",R).map(($,ie)=>{let jn=`${R}.mutatingMethods[${ie}]`,Ur=M($,jn);return K(Ur,["name","referencesGuardOrPublish"],jn),{name:L(Ur,"name",jn),referencesGuardOrPublish:U(Ur,"referencesGuardOrPublish",jn)}});return{file:H(d,"file",R),className:L(d,"className",R),exported:U(d,"exported",R),hasPublicMutableFields:U(d,"hasPublicMutableFields",R),hasPublicSetters:U(d,"hasPublicSetters",R),hasPublicConstructor:U(d,"hasPublicConstructor",R),hasStaticFactory:U(d,"hasStaticFactory",R),mutatingMethods:_,...d.dataOnly===void 0?{}:{dataOnly:U(d,"dataOnly",R)}}});return{schemaVersion:n,completeness:r,completenessReasons:o,resolverIdentity:L(e,"resolverIdentity","$"),compilerIdentity:L(e,"compilerIdentity","$"),compilerOptionsHash:L(e,"compilerOptionsHash","$"),tsconfigHash:L(e,"tsconfigHash","$"),evidenceRequirementsHash:L(e,"evidenceRequirementsHash","$"),...Ke?{projectPackageName:Ke}:{},files:i,dependencies:a,capabilityUses:l,ambientUses:c,publishCalls:p,intentReferences:g,safetyUses:h,classShapes:Hr,arkRunKernelCalls:m,arkRunManagedNews:v,arkRunCompositionRootHits:A,arkRunDeclarations:Kt,arkOrderPlaneCalls:N,arkOrderGenericUpdates:T,arkOrderRootHits:ye,arkOrderXiFieldWrites:D,arkOrderIngestWritesXi:Z,arkOrderReleaseKeyCounts:$t}}s(ts,"parseResolvedFactsInput");function Ee(e){let t=M(e,"$"),n=L(t,"factsHash","$"),r=L(t,"candidateTreeHash","$"),o=Qi(ts(t,!0));if(o.factsHash!==n)throw new Error(`$.factsHash does not match the canonical payload (${o.factsHash}).`);if(r!==o.candidateTreeHash)throw new Error(`$.candidateTreeHash does not match the canonical file tree (${o.candidateTreeHash}).`);return o}s(Ee,"loadResolvedCandidateFacts");var Pl=["network","filesystem","clock","randomness","environment","process","persistence"],O={type:"string",minLength:1},J={type:"integer",minimum:1},V={type:"string",minLength:1,pattern:"^(?!/)(?![A-Za-z]:/)(?!.*\\\\)(?!.*//)(?!.*(?:^|/)\\.{1,2}(?:/|$))(?!.*[\\u0000-\\u001f\\u007f])(?!.*\\/$).+$"},lr={$schema:"https://json-schema.org/draft/2020-12/schema",$id:"https://unpkg.com/arkgate@3/schemas/ark.resolved-candidate-facts.schema.json",title:"ArkGate resolved candidate facts",type:"object",additionalProperties:!1,required:["schemaVersion","completeness","completenessReasons","resolverIdentity","compilerIdentity","compilerOptionsHash","tsconfigHash","candidateTreeHash","evidenceRequirementsHash","files","dependencies","capabilityUses","ambientUses","publishCalls","intentReferences","safetyUses","factsHash"],properties:{schemaVersion:{enum:["1.0","1.1","1.2"]},completeness:{enum:["complete","partial","unavailable"]},completenessReasons:{type:"array",items:{type:"object",additionalProperties:!1,required:["code","message"],properties:{code:O,message:O,file:V}}},resolverIdentity:O,compilerIdentity:O,compilerOptionsHash:O,tsconfigHash:O,candidateTreeHash:O,evidenceRequirementsHash:O,projectPackageName:O,files:{type:"array",uniqueItems:!0,items:{type:"object",additionalProperties:!1,required:["path","contentHash","parseStatus","parseDiagnosticCount","exportsOnlyTypes","typeOnlyExportNames","hasTopLevelSideEffects"],properties:{path:V,contentHash:O,parseStatus:{enum:["parsed","invalid"]},parseDiagnosticCount:{type:"integer",minimum:0},exportsOnlyTypes:{type:"boolean"},typeOnlyExportNames:{type:"array",items:O},hasTopLevelSideEffects:{type:"boolean"}},allOf:[{if:{properties:{parseStatus:{const:"parsed"}}},then:{properties:{parseDiagnosticCount:{const:0}}}},{if:{properties:{parseStatus:{const:"invalid"}}},then:{properties:{parseDiagnosticCount:{minimum:1}}}}]}},dependencies:{type:"array",items:{type:"object",additionalProperties:!1,required:["from","kind","typeOnly","line","resolution"],properties:{from:V,specifier:O,kind:{enum:["import","export","dynamic-import","require"]},typeOnly:{type:"boolean"},line:J,resolution:{enum:["resolved-project","resolved-external","unresolved","dynamic"]},target:V,namedBindings:{type:"array",items:O},targetTypeOnlyExports:{type:"boolean"},sourcePureTypeModule:{type:"boolean"},namedBindingsTypeOnly:{type:"boolean"},portProofEligible:{type:"boolean"}},allOf:[{if:{properties:{resolution:{const:"resolved-project"}}},then:{required:["target"]},else:{not:{required:["target"]}}},{if:{properties:{resolution:{const:"dynamic"}}},else:{required:["specifier"]}}]}},capabilityUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","symbol","capability","source"],properties:{file:V,line:J,symbol:O,capability:{enum:Pl},source:{enum:["ambient-global","import-based"]}}}},ambientUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","symbol"],properties:{file:V,line:J,symbol:O}}},publishCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","objectHasIntent","arkPublishCandidate","hasSource"],properties:{file:V,line:J,rawIntentName:O,objectHasIntent:{type:"boolean"},arkPublishCandidate:{type:"boolean"},hasSource:{type:"boolean"},sourceIntent:O}}},intentReferences:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","intent"],properties:{file:V,line:J,intent:O}}},safetyUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","kind"],properties:{file:V,line:J,kind:{enum:["ts-suppression","any-cast","dynamic-import","dynamic-require","in-memory-store"]},symbol:O},allOf:[{if:{properties:{kind:{const:"in-memory-store"}}},then:{required:["symbol"]},else:{not:{required:["symbol"]}}}]}},classShapes:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","className","exported","hasPublicMutableFields","hasPublicSetters","hasPublicConstructor","hasStaticFactory","mutatingMethods"],properties:{file:V,className:O,exported:{type:"boolean"},hasPublicMutableFields:{type:"boolean"},hasPublicSetters:{type:"boolean"},hasPublicConstructor:{type:"boolean"},hasStaticFactory:{type:"boolean"},dataOnly:{type:"boolean"},mutatingMethods:{type:"array",items:{type:"object",additionalProperties:!1,required:["name","referencesGuardOrPublish"],properties:{name:O,referencesGuardOrPublish:{type:"boolean"}}}}}}},arkRunKernelCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","kind","callee","viaImport"],properties:{file:V,line:J,kind:{enum:["factory","publisher","publish","raise","send","subscribe","register-handler","resolve","resolve-singleton"]},callee:O,viaImport:{type:"boolean"},receiver:O,nameLiteral:O}}},arkRunManagedNews:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","typeName"],properties:{file:V,line:J,typeName:O,importedFrom:O}}},arkRunCompositionRootHits:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","matchedRoot","hasKernelFactory"],properties:{file:V,matchedRoot:O,hasKernelFactory:{type:"boolean"}}}},arkRunDeclarations:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","uses","reactsTo","raises","sends"],properties:{file:V,line:J,uses:{type:"array",items:O},reactsTo:{type:"array",items:O},raises:{type:"array",items:O},sends:{type:"array",items:O}}}},arkOrderPlaneCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","callee"],properties:{file:V,line:J,callee:O}}},arkOrderGenericUpdates:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","method"],properties:{file:V,line:J,method:O}}},arkOrderRootHits:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","matchedRoot","hasPlaneFactory"],properties:{file:V,matchedRoot:O,hasPlaneFactory:{type:"boolean"}}}},arkOrderXiFieldWrites:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","key"],properties:{file:V,line:J,key:O}}},arkOrderIngestWritesXi:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line"],properties:{file:V,line:J}}},arkOrderReleaseKeyCounts:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","keyCount"],properties:{file:V,line:J,keyCount:{type:"integer",minimum:1}}}},factsHash:O},allOf:[{if:{properties:{completeness:{const:"complete"}}},then:{properties:{completenessReasons:{maxItems:0},files:{items:{properties:{parseStatus:{const:"parsed"}}}}}}},{if:{properties:{completeness:{enum:["partial","unavailable"]}}},then:{properties:{completenessReasons:{minItems:1}}}}]};var cr="1.0";function ne(e){return`${e.from}->${e.to}`}s(ne,"dependencyKey");function mn(e,t,n,r="dependency"){return{id:`${e}:${r}:${ne(t)}`,classification:e,subject:"dependency",from:t.from,to:t.to,message:n,...e==="missing"?{nextAction:`Add the planned dependency ${ne(t)} to the candidate, then preflight again.`}:e==="contradictory"?{nextAction:`Replace the reverse dependency with ${ne(t)}, then preflight again.`}:e==="unplanned"?{nextAction:r==="dependency-removed"?`Restore the removed dependency ${ne(t)} in the candidate, then preflight again.`:`Remove the unplanned dependency ${ne(t)} from the candidate, then preflight again.`}:{}}}s(mn,"dependencyFinding");function Qe(e){let t=[],n=new Map(e.changeMap.map.files.map(u=>[u.path,u])),r=new Map(e.changes.map(u=>[u.path,u])),o=new Map(e.changeMap.map.dependencies.map(u=>[ne(u),u])),i=new Map(e.baseDependencies.map(u=>[ne(u),u])),a=new Map(e.candidateDependencies.map(u=>[ne(u),u]));for(let u of[...n.values()].sort((f,m)=>f.path.localeCompare(m.path))){let f=r.get(u.path);f?f.operation!==u.operation?t.push({id:`contradictory:file:${u.path}`,classification:"contradictory",subject:"file",path:u.path,expectedOperation:u.operation,actualOperation:f.operation,message:`${u.path} was planned as ${u.operation} but the actual operation is ${f.operation}.`,nextAction:`Change ${u.path} to the planned ${u.operation} operation, then preflight again.`}):t.push({id:`satisfied:file:${u.path}`,classification:"satisfied",subject:"file",path:u.path,expectedOperation:u.operation,actualOperation:f.operation,message:`${u.path} matches the planned ${u.operation} operation.`}):t.push({id:`missing:file:${u.path}`,classification:"missing",subject:"file",path:u.path,expectedOperation:u.operation,message:`${u.path} was planned as ${u.operation} but is absent from the actual change.`,nextAction:`${u.operation[0].toUpperCase()}${u.operation.slice(1)} ${u.path} in the complete change set, then preflight again.`})}for(let u of[...r.values()].sort((f,m)=>f.path.localeCompare(m.path)))n.has(u.path)||t.push({id:`unplanned:file:${u.path}`,classification:"unplanned",subject:"file",path:u.path,actualOperation:u.operation,message:`${u.path} has an unplanned ${u.operation} operation.`,nextAction:`Remove ${u.path} from the change set, then preflight again.`});let l=new Set;for(let u of[...o.values()].sort((f,m)=>ne(f).localeCompare(ne(m)))){if(a.has(ne(u))){t.push(mn("satisfied",u,`${u.from} -> ${u.to} exists in the candidate architecture.`));continue}let f={from:u.to,to:u.from};a.has(ne(f))?(l.add(ne(f)),t.push(mn("contradictory",u,`${u.from} -> ${u.to} was planned, but the candidate contains the reverse edge.`))):t.push(mn("missing",u,`${u.from} -> ${u.to} is absent from the candidate architecture.`))}let c=new Set([...n.keys(),...r.keys()]);for(let[u,f]of[...a].sort(([m],[y])=>m.localeCompare(y)))i.has(u)||o.has(u)||l.has(u)||!c.has(f.from)&&!c.has(f.to)||t.push({...mn("unplanned",f,`${f.from} -> ${f.to} was added without a matching planned dependency.`,"dependency-added"),actualOperation:"added"});let p=new Set(e.changeMap.map.files.filter(u=>u.operation==="delete").map(u=>u.path));for(let[u,f]of[...i].sort(([m],[y])=>m.localeCompare(y)))a.has(u)||p.has(f.from)||p.has(f.to)||!c.has(f.from)&&!c.has(f.to)||t.push({...mn("unplanned",f,`${f.from} -> ${f.to} was removed without a planned file deletion.`,"dependency-removed"),actualOperation:"removed"});let g={satisfied:0,missing:1,contradictory:2,unplanned:3};t.sort((u,f)=>g[u.classification]-g[f.classification]||(u.subject===f.subject?0:u.subject==="file"?-1:1)||u.id.localeCompare(f.id));let h={satisfied:t.filter(u=>u.classification==="satisfied").length,missing:t.filter(u=>u.classification==="missing").length,contradictory:t.filter(u=>u.classification==="contradictory").length,unplanned:t.filter(u=>u.classification==="unplanned").length};return{schemaVersion:"1.0",readOnly:!0,changeMapHash:e.changeMap.hash,structurallyConverged:h.missing===0&&h.contradictory===0&&h.unplanned===0,behavioralCompletion:"not-evaluated",summary:h,findings:t}}s(Qe,"analyzeArchitectureConvergence");var ns="https://unpkg.com/arkgate/schemas/ark.arkrules.schema.json",_l=["aggregate-private-state","always-valid-factory","domain-event-on-mutation","orchestration-only","thin-adapter","writes-via-aggregate","no-anemic-model","invariant-coverage"];var rs={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},Jf={$schema:"https://json-schema.org/draft/2020-12/schema",$id:ns,title:"ArkGate ArkRules (intra-layer contract)",description:"Per-layer structure sensors and invariant catalog consumed by the ArkGate Effective Contract.",type:"object",additionalProperties:!1,required:["schemaVersion","layer"],properties:{$schema:{type:"string",minLength:1,default:ns},schemaVersion:{type:"string",const:"1.0",default:"1.0"},layer:{type:"string",minLength:1},structure:{type:"array",default:[],items:{$ref:"#/$defs/structureEntry"}},invariants:{type:"array",default:[],items:{$ref:"#/$defs/invariantEntry"}}},$defs:{structureEntry:{type:"object",additionalProperties:!1,required:["id","sensor"],properties:{id:{type:"string",minLength:1},sensor:{type:"string",enum:[..._l]},mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},appliesTo:rs,description:{type:"string",minLength:1}}},invariantEntry:{type:"object",additionalProperties:!1,required:["id","description"],properties:{id:{type:"string",minLength:1},description:{type:"string",minLength:1},aggregate:{type:"string",minLength:1},coverage:{type:"object",additionalProperties:!1,properties:{test:{type:"boolean"},symbol:{type:"string",minLength:1}}},mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},appliesTo:rs}}}};function yn(){return{schemaVersion:"1.0",byLayer:{},structure:[],invariants:[]}}s(yn,"emptyEffectiveArkRules");function So(e){return{...e,layers:e.layers.map(t=>{let{description:n,...r}=t;return r})}}s(So,"omitLayerDescriptions");function os(e){let{stewards:t,...n}=So(e.config);return{config:n,arkRules:{schemaVersion:e.arkRules.schemaVersion,structure:e.arkRules.structure.map(r=>({id:r.id,sensor:r.sensor,mode:r.mode,appliesTo:r.appliesTo??null,description:r.description??null,provenance:r.provenance})),invariants:e.arkRules.invariants.map(r=>({id:r.id,description:r.description,aggregate:r.aggregate??null,coverage:r.coverage??null,mode:r.mode,appliesTo:r.appliesTo??null,provenance:r.provenance}))}}}s(os,"effectiveContractPolicyPayload");function is(e,t=!1){if(!e)return"";let n=e.discarded,r=[];if(n.budget>0&&!t&&r.push(`${n.budget} past the ${e.maxFiles}-file budget`),n.noInvariantMention>0&&r.push(`${n.noInvariantMention} naming no catalogued invariant`),n.oversize>0&&r.push(`${n.oversize} over the per-file byte cap`),n.unreadable>0&&r.push(`${n.unreadable} unreadable (files or directories)`),n.depthLimited>0&&r.push(`${n.depthLimited} directories past the walk depth limit`),n.outOfRoot>0&&r.push(`${n.outOfRoot} symlinked outside the project root`),r.length===0)return"";let o=t?"":` (loaded ${e.filesLoaded} files, kept ${e.testFilesRetained} tests)`;return` Scan discarded ${r.join(", ")}${o}.`}s(is,"formatCoverageDiscards");function Tl(e,t){let n=e.replace(/\\/g,"/").replace(/^\.\//,"");return t.some(r=>{let o=r.replace(/\\/g,"/").replace(/^\.\//,"").replace(/\/+$/,"");return o===""||o==="."?!0:n===o||n.startsWith(`${o}/`)})}s(Tl,"isUnderCoverageRoot");function Nl(e,t){let n=t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return new RegExp(`(?:describe|it|test|context)\\s*\\(\\s*['"\`][^'"\`]*${n}[^'"\`]*['"\`]`,"i").test(e)||e.includes(t)}s(Nl,"titleMatchesInvariant");function Dl(e,t){if(!t)return!1;let n=t.split("."),r=n[n.length-1],o=n.length>1?n[0]:null;for(let i of Object.values(e))if(!(o&&!i.includes(o))&&(new RegExp(`(?:function\\s+|\\b)${r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}\\s*[(<]`).test(i)||i.includes(t)))return!0;return!1}s(Dl,"symbolPresent");function ss(e){let t=e.arkRules.invariants??[];if(t.length===0)return{coverage:[],violations:[],partial:!1};let n=e.testFiles??[],r=e.testGlobsMissing===!0||n.length===0,o=e.coverageBudgetExhausted===!0,i=e.coverageStats,a=is(i),l=is(i,!0),c=i?`coverage file budget exhausted: ${i.filesLoaded} files loaded at the ${i.maxFiles}-file cap, ${i.testFilesRetained} tests retained, ${i.discarded.budget} files discarded at the cap; raise "coverage.maxFiles" in ark.config.json (the cap bounds files RETAINED as evidence${typeof i.filesRead=="number"?`; ${i.filesRead} were read`:""})`:"coverage file budget exhausted",p=(e.coverageRoots??[]).filter(m=>typeof m=="string"&&m.length>0),g=p.length>0,h=p.join(", "),u=[],f=[];for(let m of t){let y=[],v=m.coverage?.test!==!1,E=m.coverage?.symbol,A,b;if(!r&&v){let T;for(let te of n){let ye=e.fileContents[te];if(!(!ye||!Nl(ye,m.id))){if(!g||Tl(te,p)){A=te,b=g?!1:void 0;break}T??=te}}A===void 0&&T!==void 0&&(A=T,b=!0),A!==void 0&&y.push("test-title")}E&&Dl(e.fileContents,E)&&y.push("symbol");let N=(m.coverage?.test===!0||!!E||m.coverage===void 0)&&y.length>0||m.coverage?.test===!1&&!E?!0:y.length>0,I=r&&v&&y.length===0;if(u.push({invariantId:m.id,layer:m.provenance.layer,sourceFile:m.provenance.sourceFile,mode:m.mode,covered:N&&!I,evidence:y,partial:I,description:m.description,...A!==void 0?{testEvidenceFile:A}:{},...b!==void 0?{outsideDeclaredRoots:b}:{}}),b===!0&&A!==void 0&&f.push({ruleId:"INVARIANT_COVERAGE_OUTSIDE_ROOTS",message:`Invariant ${m.id} is covered only by ${A}, which is outside the declared coverage roots (${h}). ArkGate matches declared text and never executes tests, so it cannot tell whether that file is run: move the test under a declared root, or add its root to "coverage.coverageRoots" in ark.config.json.`,file:A,line:1,arkruleId:m.id,arkruleSource:m.provenance.sourceFile,fromLayer:m.provenance.layer,severity:"warning",failsStrict:!1}),!N||I){let T=m.mode==="enforced"&&!I,te=r||n.length===0?"never-had-tests":"tests-disappeared";f.push({ruleId:"INVARIANT_UNCOVERED",message:(I?o?`Invariant ${m.id} coverage cannot be proven (${c}); reporting partial, not covered.`:`Invariant ${m.id} coverage cannot be proven (test globs missing or empty); reporting partial, not covered (never-had-tests).`:te==="tests-disappeared"?`Invariant ${m.id}: no scanned test names it in a describe/it title and no declared symbol was found (tests-disappeared \u2014 a suite exists). ArkGate matches declared text; it never executes tests.`:`Invariant ${m.id}: no scanned test names it in a describe/it title and no declared symbol was found (never-had-tests \u2014 the scan found no tests at all). ArkGate matches declared text; it never executes tests.`)+(I&&o?l:a),file:m.provenance.sourceFile,line:1,arkruleId:m.id,arkruleSource:m.provenance.sourceFile,fromLayer:m.provenance.layer,severity:T?"error":"warning",failsStrict:T,kind:te})}}return{coverage:u,violations:f,partial:u.some(m=>m.partial)}}s(ss,"evaluateInvariantCoverage");function as(e){return e?e.partial?{ok:!1,reason:"Coverage is partial (missing test globs); cannot promote until evidence is complete."}:e.covered?e.outsideDeclaredRoots===!0?{ok:!1,reason:`Invariant ${e.invariantId} is covered only by ${e.testEvidenceFile??"a test"}, outside the declared coverage roots; ArkGate cannot tell whether that test runs, so it will not promote on it.`}:{ok:!0,reason:`Invariant ${e.invariantId} has coverage evidence.`}:{ok:!1,reason:`Invariant ${e.invariantId} is uncovered; add a test title or symbol before promoting to enforced.`}:{ok:!1,reason:"No coverage evidence supplied for this invariant; evaluate coverage before promoting to enforced."}}s(as,"canPromoteInvariant");var ur="1.0";function P(e,t){e.push({id:`${t.classification}:${t.path}:${t.kind}`,path:t.path,classification:t.classification,message:t.message,...t.classification==="weakening"||t.classification==="judgment-required"?{nextAction:`Restore the previous protection at ${t.path}, then run ArkGate again.`}:{},...t.before===void 0?{}:{before:t.before},...t.after===void 0?{}:{after:t.after}})}s(P,"addFinding");function q(e){return[...new Set(e??[])].sort()}s(q,"sortedUnique");function de(e,t,n,r,o){let i=q(n),a=q(r),l=new Set(i),c=new Set(a),p=a.filter(h=>!l.has(h)),g=i.filter(h=>!c.has(h));p.length===0&&g.length===0||(p.length>0&&P(e,{kind:"added",path:t,classification:o.added,message:o.addedMessage,before:i,after:a}),g.length>0&&P(e,{kind:"removed",path:t,classification:o.removed,message:o.removedMessage,before:i,after:a}))}s(de,"compareStringSets");function hn(e,t,n,r,o,i,a){if(n===r)return;P(e,{kind:r?"enabled":"disabled",path:t,classification:r?o:o==="strengthening"?"weakening":"strengthening",message:r?i:a,before:n,after:r})}s(hn,"compareBoolean");function dr(e,t){let n=new Map,r=new Set;for(let o of e){let i=t(o);n.has(i)?r.add(i):n.set(i,o)}return{values:n,duplicates:[...r].sort()}}s(dr,"keyed");function Ll(e,t,n){let r=dr(t,i=>i.name),o=dr(n,i=>i.name);(r.duplicates.length>0||o.duplicates.length>0)&&P(e,{kind:"duplicate-layer",path:"$.layers",classification:"judgment-required",message:"Duplicate layer names make policy ownership ambiguous.",before:r.duplicates,after:o.duplicates});for(let i of[...new Set([...r.values.keys(),...o.values.keys()])].sort()){let a=r.values.get(i),l=o.values.get(i),c=`$.layers[${i}]`;if(!a&&l){P(e,{kind:"layer-added",path:c,classification:"judgment-required",message:"A layer was added; verify overlap, ownership, and rule coverage.",after:l});continue}if(a&&!l){P(e,{kind:"layer-removed",path:c,classification:"weakening",message:"Removing a layer can leave its source paths ungoverned.",before:a});continue}if(!a||!l)continue;de(e,`${c}.patterns`,a.patterns,l.patterns,{added:"strengthening",removed:"weakening",addedMessage:"Additional paths are governed by this layer.",removedMessage:"Paths were removed from this layer and may become ungoverned."}),de(e,`${c}.exclude`,a.exclude,l.exclude,{added:"weakening",removed:"strengthening",addedMessage:"Additional paths are excluded from this layer.",removedMessage:"Fewer paths are excluded from this layer."});let p=sr(a),g=sr(l);de(e,`${c}.forbiddenGlobals`,p.rawGlobals,g.rawGlobals,{added:"strengthening",removed:"weakening",addedMessage:"Additional forbidden globals are enforced in this layer.",removedMessage:"A forbidden-global protection was removed from this layer."}),de(e,`${c}.capabilities`,p.atoms,g.atoms,{added:"strengthening",removed:"weakening",addedMessage:"Additional ambient/import protection is enforced in this layer (coverage atoms).",removedMessage:"An ambient/import protection was lost from this layer (coverage atoms)."}),q(a.intentPrefixes).join("\0")!==q(l.intentPrefixes).join("\0")&&P(e,{kind:"intent-prefixes-changed",path:`${c}.intentPrefixes`,classification:"judgment-required",message:"Intent ownership changed and must be reviewed against publishers and consumers.",before:q(a.intentPrefixes),after:q(l.intentPrefixes)}),hn(e,`${c}.mayImportInfrastructure`,a.mayImportInfrastructure===!0,l.mayImportInfrastructure===!0,"weakening","The layer may now import infrastructure directly.","Direct infrastructure imports are no longer allowed for this layer."),hn(e,`${c}.optional`,a.optional===!0,l.optional===!0,"weakening","The layer is now optional and can be absent without a strict warning.","The layer is now required when its contract is active.")}}s(Ll,"compareLayers");function Fl(e,t,n){let r=s(a=>`${a.from}->${a.to}`,"keyOf"),o=dr(t,r),i=dr(n,r);(o.duplicates.length>0||i.duplicates.length>0)&&P(e,{kind:"duplicate-rule",path:"$.rules",classification:"judgment-required",message:"Duplicate rule edges make the effective verdict order-dependent.",before:o.duplicates,after:i.duplicates});for(let a of[...new Set([...o.values.keys(),...i.values.keys()])].sort()){let l=o.values.get(a),c=i.values.get(a),p=`$.rules[${a}]`;if(!l&&c){c.allowed===!1&&P(e,{kind:"deny-added",path:p,classification:"strengthening",message:"A denied dependency edge was added.",after:c});continue}if(l&&!c){l.allowed===!1&&P(e,{kind:"deny-removed",path:p,classification:"weakening",message:"A denied dependency edge was removed.",before:l});continue}if(!l||!c)continue;l.allowed!==c.allowed&&P(e,{kind:c.allowed?"deny-disabled":"deny-enabled",path:`${p}.allowed`,classification:c.allowed?"weakening":"strengthening",message:c.allowed?"A previously denied dependency edge is now allowed.":"A dependency edge is now denied.",before:l.allowed,after:c.allowed});let g=l.peerIsolation===!0,h=c.peerIsolation===!0;if(g!==h){let u=l.from===l.to&&c.from===c.to;P(e,{kind:h?"peer-isolation-enabled":"peer-isolation-disabled",path:`${p}.peerIsolation`,classification:u?h?"strengthening":"weakening":"judgment-required",message:u?h?"Cross-slice dependencies inside this layer are now denied.":"Cross-slice dependencies inside this layer are no longer denied.":"Changing peer isolation on a cross-layer edge changes the denial scope.",before:g,after:h})}q(l.sliceFolders).join("\0")!==q(c.sliceFolders).join("\0")&&P(e,{kind:"slice-folders-changed",path:`${p}.sliceFolders`,classification:"judgment-required",message:"Slice ownership folders changed and can reclassify existing dependencies.",before:q(l.sliceFolders),after:q(c.sliceFolders)}),!(!g&&!h)&&(cs(e,`${p}.sharedRoots`,"shared-roots",q(l.sharedRoots),q(c.sharedRoots),"Roots declared shared are exempt from the peerIsolation unclassifiable denial.","Roots are no longer declared shared and fall back to the peerIsolation denial."),cs(e,`${p}.allowedCrossSlice`,"cross-slice-allowance",q((l.allowedCrossSlice??[]).map(ls)),q((c.allowedCrossSlice??[]).map(ls)),"Directed cross-slice edges are now allowed by declaration.","Directed cross-slice edges are no longer declared and deny again."))}}s(Fl,"compareRules");function ls(e){return JSON.stringify([e.from,e.to])}s(ls,"crossSliceKey");function cs(e,t,n,r,o,i,a){if(JSON.stringify(r)===JSON.stringify(o))return;let l=o.filter(g=>!r.includes(g)),c=r.filter(g=>!o.includes(g)),p=l.length>0&&c.length>0;P(e,{kind:p?`${n}-changed`:l.length>0?`${n}-added`:`${n}-removed`,path:t,classification:p?"judgment-required":l.length>0?"weakening":"strengthening",message:p?`${i} Entries were added and removed in the same change.`:l.length>0?i:a,before:r,after:o})}s(cs,"compareDeclaredExceptions");function Ml(e,t,n){let r=t.safety??{},o=n.safety??{};for(let i of["maxTsSuppressions","maxAnyCasts"]){let a=r[i]??0,l=o[i]??0;a!==l&&P(e,{kind:l>a?"threshold-raised":"threshold-lowered",path:`$.safety.${i}`,classification:l>a?"weakening":"strengthening",message:l>a?"The safety threshold allows more violations.":"The safety threshold allows fewer violations.",before:a,after:l})}for(let i of["allowInMemory","allowDisabledPeerIsolation"])hn(e,`$.safety.${i}`,r[i]===!0,o[i]===!0,"weakening","A safety exception was enabled.","A safety exception was disabled.")}s(Ml,"compareSafety");function wo(e){return e.mode==="enforced"?"enforced":"advisory"}s(wo,"arkRunMode");function Co(e){return e.mode==="enforced"?"enforced":"advisory"}s(Co,"arkOrderMode");function $l(e,t,n){let r=t.arkOrder,o=n.arkOrder,i="$.arkOrder";if(!r&&!o)return;if(!r&&o){P(e,{kind:"arkorder-added",path:i,classification:"strengthening",message:`ArkOrder extra was added (${Co(o)}).`,after:o});return}if(r&&!o){P(e,{kind:"arkorder-removed",path:i,classification:"weakening",message:"ArkOrder extra was removed.",before:r});return}if(!r||!o)return;let a=Co(r),l=Co(o);if(a!==l){let c=a==="advisory"&&l==="enforced";P(e,{kind:c?"arkorder-promoted":"arkorder-demoted",path:`${i}.mode`,classification:c?"strengthening":"weakening",message:c?"ArkOrder extra was promoted to enforced.":"ArkOrder extra was demoted to advisory.",before:a,after:l})}de(e,`${i}.planeRoots`,r.planeRoots,o.planeRoots,{added:"strengthening",removed:"weakening",addedMessage:"Additional ArkOrder plane roots are governed.",removedMessage:"ArkOrder plane roots were removed and may skip the plane."}),de(e,`${i}.managedLayers`,r.managedLayers,o.managedLayers,{added:"strengthening",removed:"weakening",addedMessage:"Additional layers are managed by ArkOrder.",removedMessage:"Layers were removed from ArkOrder management."})}s($l,"compareArkOrder");function Kl(e,t,n){let r=t.arkRun,o=n.arkRun,i="$.arkRun";if(!r&&!o)return;if(!r&&o){P(e,{kind:"arkrun-added",path:i,classification:"strengthening",message:`ArkRun extra was added (${wo(o)}).`,after:o});return}if(r&&!o){P(e,{kind:"arkrun-removed",path:i,classification:"weakening",message:"ArkRun extra was removed.",before:r});return}if(!r||!o)return;let a=wo(r),l=wo(o);if(a!==l){let c=a==="advisory"&&l==="enforced";P(e,{kind:c?"arkrun-promoted":"arkrun-demoted",path:`${i}.mode`,classification:c?"strengthening":"weakening",message:c?"ArkRun extra was promoted to enforced.":"ArkRun extra was demoted to advisory.",before:a,after:l})}de(e,`${i}.compositionRoots`,r.compositionRoots,o.compositionRoots,{added:"strengthening",removed:"weakening",addedMessage:"Additional ArkRun composition roots are governed.",removedMessage:"ArkRun composition roots were removed and may skip the kernel."}),de(e,`${i}.managedLayers`,r.managedLayers,o.managedLayers,{added:"strengthening",removed:"weakening",addedMessage:"Additional layers are managed by ArkRun.",removedMessage:"Layers were removed from ArkRun management."}),hn(e,`${i}.requireDeclarations`,r.requireDeclarations!==!1,o.requireDeclarations!==!1,"strengthening","ArkRun now requires interaction declarations.","ArkRun no longer requires interaction declarations.")}s(Kl,"compareArkRun");function Hl(e){return e.some(t=>t.classification==="weakening")?"weakening":e.some(t=>t.classification==="judgment-required")?"judgment-required":e.some(t=>t.classification==="strengthening")?"strengthening":"neutral"}s(Hl,"overallClassification");function ds(e,t){return`${e}::${t}`}s(ds,"ruleKey");function us(e){let t=new Map,n=new Map;if(!e)return{structure:t,invariants:n};for(let r of e.structure)t.set(ds(r.provenance.layer,r.id),r);for(let r of e.invariants)n.set(ds(r.provenance.layer,r.id),r);return{structure:t,invariants:n}}s(us,"indexEffectiveRules");function Ul(e,t,n,r,o,i){let a=new Map((i??[]).map(u=>[u.invariantId,u])),l=t.arkRules??{},c=n.arkRules??{},p=[...new Set([...Object.keys(l),...Object.keys(c)])].sort();for(let u of p){let f=l[u],m=c[u],y=`$.arkRules[${u}]`;if(f===void 0&&m!==void 0){P(e,{kind:"arkrules-ref-added",path:y,classification:"strengthening",message:`ArkRules reference for layer ${u} was added.`,after:m});continue}if(f!==void 0&&m===void 0){P(e,{kind:"arkrules-ref-removed",path:y,classification:"weakening",message:`ArkRules reference for layer ${u} was removed.`,before:f});continue}f!==m&&P(e,{kind:"arkrules-ref-path-changed",path:y,classification:"judgment-required",message:`ArkRules file path for layer ${u} changed; verify the effective rules still match intent.`,before:f,after:m})}let g=us(r),h=us(o);for(let u of[...new Set([...g.structure.keys(),...h.structure.keys()])].sort()){let f=g.structure.get(u),m=h.structure.get(u),y=`$.arkRules.structure[${u}]`;if(!f&&m){P(e,{kind:"arkrule-structure-added",path:y,classification:"strengthening",message:`Structure ArkRule ${m.id} was added (${m.mode}).`,after:m});continue}if(f&&!m){P(e,{kind:"arkrule-structure-removed",path:y,classification:"weakening",message:`Structure ArkRule ${f.id} was removed.`,before:f});continue}if(!(!f||!m)){if(f.mode!==m.mode){let v=f.mode==="advisory"&&m.mode==="enforced";P(e,{kind:v?"arkrule-promoted":"arkrule-demoted",path:`${y}.mode`,classification:v?"strengthening":"weakening",message:v?`Structure ArkRule ${m.id} was promoted to enforced.`:`Structure ArkRule ${m.id} was demoted to advisory.`,before:f.mode,after:m.mode})}f.sensor!==m.sensor&&P(e,{kind:"arkrule-sensor-changed",path:`${y}.sensor`,classification:"judgment-required",message:`Structure ArkRule ${m.id} changed sensor identity.`,before:f.sensor,after:m.sensor})}}for(let u of[...new Set([...g.invariants.keys(),...h.invariants.keys()])].sort()){let f=g.invariants.get(u),m=h.invariants.get(u),y=`$.arkRules.invariants[${u}]`;if(!f&&m){P(e,{kind:"arkrule-invariant-added",path:y,classification:"strengthening",message:`Invariant ${m.id} was added (${m.mode}).`,after:m});continue}if(f&&!m){P(e,{kind:"arkrule-invariant-removed",path:y,classification:"weakening",message:`Invariant ${f.id} was removed.`,before:f});continue}if(!(!f||!m)&&f.mode!==m.mode)if(f.mode==="advisory"&&m.mode==="enforced"){let E=a?.get(m.id),A=as(E);A.ok?P(e,{kind:"arkrule-invariant-promoted",path:`${y}.mode`,classification:"strengthening",message:`Invariant ${m.id} was promoted to enforced (coverage evidence present).`,before:f.mode,after:m.mode}):P(e,{kind:"arkrule-invariant-promote-refused",path:`${y}.mode`,classification:"judgment-required",message:`Invariant ${m.id} cannot be promoted to enforced: ${A.reason}`,before:f.mode,after:m.mode})}else P(e,{kind:"arkrule-invariant-demoted",path:`${y}.mode`,classification:"weakening",message:`Invariant ${m.id} was demoted to advisory.`,before:f.mode,after:m.mode})}}s(Ul,"compareArkRules");function pr(e,t,n){let r=[];de(r,"$.include",e.include,t.include,{added:"strengthening",removed:"weakening",addedMessage:"Additional project roots are governed.",removedMessage:"Project roots were removed from governance."}),de(r,"$.exclude",e.exclude,t.exclude,{added:"weakening",removed:"strengthening",addedMessage:"Additional project paths are excluded from governance.",removedMessage:"Fewer project paths are excluded from governance."}),de(r,"$.dynamicImportAllowlist",e.dynamicImportAllowlist,t.dynamicImportAllowlist,{added:"weakening",removed:"strengthening",addedMessage:"Additional files may use non-literal dynamic imports.",removedMessage:"Fewer files may use non-literal dynamic imports."}),hn(r,"$.excludeGenerated",e.excludeGenerated!==!1,t.excludeGenerated!==!1,"weakening","Generated source is now excluded from governance.","Generated source is now governed.");let o={off:0,soft:1,"framework-soft":1,strict:2},i=e.cyclePolicy??"strict",a=t.cyclePolicy??"strict";if(i!==a){let l=o[a]===o[i]?"judgment-required":o[a]>o[i]?"strengthening":"weakening";P(r,{kind:"cycle-policy-changed",path:"$.cyclePolicy",classification:l,message:"The cycle enforcement level changed.",before:i,after:a})}return(e.frameworkOverlay??null)!==(t.frameworkOverlay??null)&&P(r,{kind:"framework-overlay-changed",path:"$.frameworkOverlay",classification:"judgment-required",message:"The framework overlay changed and may alter effective layer matching.",before:e.frameworkOverlay??null,after:t.frameworkOverlay??null}),Ll(r,e.layers,t.layers),Fl(r,e.rules,t.rules),Ml(r,e,t),Ul(r,e,t,n?.baseArkRules,n?.candidateArkRules,n?.candidateInvariantCoverage),Kl(r,e,t),$l(r,e,t),r.sort((l,c)=>l.path.localeCompare(c.path)||l.id.localeCompare(c.id)),{schemaVersion:ur,classification:Hl(r),findings:r}}s(pr,"classifyArkPolicyDelta");function fr(e,t){if(!e||e.schemaVersion!==ur||typeof e.basePolicyHash!="string"||typeof e.candidatePolicyHash!="string"||typeof e.reason!="string"||!Array.isArray(e.findingIds)||e.findingIds.some(o=>typeof o!="string")||e.reason.trim().length===0||e.basePolicyHash!==t.basePolicyHash||e.candidatePolicyHash!==t.candidatePolicyHash)return!1;let n=q(e.findingIds),r=q(t.findingIds);return n.length===r.length&&n.every((o,i)=>o===r[i])}s(fr,"policyDeltaAcknowledgementMatches");function et(e){let t=[];for(let n of e.replace(/\\/g,"/").split("/"))!n||n==="."||(n===".."&&t.length>0&&t.at(-1)!==".."?t.pop():t.push(n));return t.join("/")}s(et,"normalizePath");function ps(e){return e!==void 0&&/[A-Za-z_$]/.test(e)}s(ps,"isIdentifierStart");function gr(e){return e!==void 0&&/[A-Za-z0-9_$]/.test(e)}s(gr,"isIdentifierCharacter");function re(e,t){for(;t<e.length&&/\s/.test(e[t]);)t+=1;return t}s(re,"skipWhitespace");function Rn(e,t){let n=e[t];if(n!=="'"&&n!=='"')return;let r=t,o="";for(t+=1;t<e.length;t+=1){let i=e[t];if(i===n)return{value:o,offset:r,excerpt:e.slice(r,t+1)};i==="\\"&&t+1<e.length?(o+=e[t+1],t+=1):o+=i}}s(Rn,"readString");function le(e,t,n){return e.startsWith(t,n)&&!gr(e[n-1])&&!gr(e[n+t.length])}s(le,"isWordAt");function fs(e,t){let n=re(e,t);if(e[n]!=="{")return!1;n+=1;let r=!1;for(;n<e.length;){if(n=re(e,n),e[n]==="}")return r;if(e[n]===","){n+=1;continue}if(!le(e,"type",n))return!1;let o=re(e,n+4);if(o>=e.length||e[o]===","||e[o]==="}"||le(e,"as",o)||!ps(e[o]))return!1;for(n=o;n<e.length&&gr(e[n]);)n+=1;if(n=re(e,n),le(e,"as",n)){if(n=re(e,n+2),!ps(e[n]))return!1;for(;n<e.length&&gr(e[n]);)n+=1}r=!0}return!1}s(fs,"bracedNamedBindingsAreTypeOnly");function Gl(e,t){if(t=re(e,t+6),e[t]==="(")return Rn(e,re(e,t+1));let n=!1;if(le(e,"type",t)){let o=re(e,t+4);e[o]!==","&&!le(e,"from",o)&&(n=!0)}else fs(e,t)&&(n=!0);let r=gs(e,t,!0);return r&&n?{...r,typeOnly:!0}:r}s(Gl,"specifierAfterImport");function Vl(e,t){t=t+6;let n=re(e,t),r=!1;if(le(e,"type",n)){let i=re(e,n+4);(e[i]==="{"||e[i]==="*")&&(r=!0)}else fs(e,n)&&(r=!0);let o=gs(e,t,!1);return o&&r?{...o,typeOnly:!0}:o}s(Vl,"specifierAfterExport");function gs(e,t,n){for(;t<e.length;t+=1){if(e[t]===";")return;if(le(e,"from",t))return Rn(e,re(e,t+4));if(n&&(e[t]==="'"||e[t]==='"'))return Rn(e,t);if(t>0&&(le(e,"import",t)||le(e,"export",t)))return}}s(gs,"specifierInStaticStatement");function jl(e,t){for(t+=1;t<e.length;t+=1){let n=e[t];if(n==="\\")t+=1;else if(n==="`")return t}return e.length}s(jl,"skipTemplateLiteral");function Bl(e,t){let n=t-1;for(;n>=0&&/\s/.test(e[n]);)n-=1;if(e[n]===".")return;let r=re(e,t+7);if(e[r]!=="(")return;r=re(e,r+1);let o=Rn(e,r);return o?{...o,requireCall:!0}:void 0}s(Bl,"specifierAfterRequire");function Wl(e){let t=[];for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="/"&&e[n+1]==="/"){if(n=e.indexOf(`
|
|
23
|
-
`,n+2),n<0)break;continue}if(r==="/"&&e[n+1]==="*"){let
|
|
24
|
-
`).length;r.push({file:e.path,symbol:
|
|
25
|
-
`).length,l={kind:"import",file:e.path,line:a,excerpt:o.excerpt},c=zl(e.path,i,t);n.push({from:e.path,specifier:i,to:c?.path??null,resolution:c?"resolved":"unresolved",fromLayer:e.layer,toLayer:c?.layer??null,evidence:l})}return{edges:n,capabilityUses:r}}s(ms,"moduleFactsFor");function zl(e,t,n){let r=e.split("/");r.pop();for(let i of t.split("/"))i==="."||i===""||(i===".."?r.pop():r.push(i));let o=r.join("/");for(let i of[o,`${o}.ts`,`${o}.tsx`,`${o}.mts`,`${o}.cts`,`${o}/index.ts`,`${o}/index.tsx`]){let a=n.get(i);if(a)return a}}s(zl,"resolveSpecifier");function ys(e,t){let n=[];for(let r of e){if(!r.to||!r.fromLayer||!r.toLayer)continue;let o=ut(t.rules,r.fromLayer,r.toLayer,{fromPath:r.from,toPath:r.to,layers:t.layers});o&&n.push({ruleId:`layer-dependency:${o.from}->${o.to}`,message:o.message??`${o.from} must not depend on ${o.to}.`,edge:r,evidence:r.evidence})}return n}s(ys,"violationsFor");var ql={code:"LEXICAL_EVIDENCE_INCOMPLETE",message:"Lexical compatibility mode cannot prove parse status, TypeScript/package/symlink resolution, or symbol-aware source-policy and safety evidence. Use the resolved candidate facts APIs for an authoritative verdict."};function Yl(e,t){return e.arkRules!==void 0&&Object.keys(e.arkRules).length>0||t.structure.length>0||t.invariants.length>0}s(Yl,"hasActiveArkRules");function Xl(e,t){return Yl(e,t)?W(F(os({config:e,arkRules:t,warnings:[]}))):W(F(So(e)))}s(Xl,"policyHashFor");function An(e,t,n){let r=typeof e=="string"?Gi(e,t):oo(e,t),o=n?.arkRules??yn();return{...r,arkRules:o,policyHash:Xl(r.config,o)}}s(An,"loadContract");function xo(e){let t=An(e.baseConfig,e.baseSource??"base ark.config.json",{arkRules:e.baseArkRules}),n=An(e.candidateConfig,e.candidateSource??"candidate ark.config.json",{arkRules:e.candidateArkRules}),r=pr(t.config,n.config,{baseArkRules:t.arkRules,candidateArkRules:n.arkRules,candidateInvariantCoverage:e.candidateInvariantCoverage}),o=r.findings.filter(l=>l.classification==="weakening"||l.classification==="judgment-required").map(l=>l.id).sort(),i=o.length>0,a=i&&fr(e.acknowledgement,{basePolicyHash:t.policyHash,candidatePolicyHash:n.policyHash,findingIds:o});return{schemaVersion:r.schemaVersion,basePolicyHash:t.policyHash,candidatePolicyHash:n.policyHash,classification:r.classification,findings:r.findings,blockingFindingIds:o,requiresAcknowledgement:i,acknowledged:a,valid:!i||a}}s(xo,"analyzePolicyDelta");function It(e){let t=e.files.map(h=>{let u=et(h.path);return{path:u,content:h.content,contentHash:W(h.content),layer:ce(u,e.contract.config.layers)??null}}).sort((h,u)=>h.path.localeCompare(u.path)),n=new Map(t.map(h=>[h.path,h])),r=[],o=[];for(let h of t){let u=ms(h,n);r.push(...u.edges),o.push(...u.capabilityUses)}let i=ys(r,e.contract.config),a=new Map(e.contract.config.layers.map(h=>[h.name,h])),l=new Map(e.contract.config.layers.map(h=>[h.name,new Set(yt(h))]));for(let h of o){let u=n.get(h.file)?.layer;if(!u)continue;let f=a.get(u),m=xe(h.symbol,f?.forbiddenGlobals??[]);if(m){i.push({ruleId:"FORBIDDEN_GLOBAL",message:`${u} must not use module "${h.symbol}" because it is the import form of forbidden global "${m}".`,symbol:h.symbol,evidence:h.evidence});continue}l.get(u)?.has(h.capability)&&i.push({ruleId:"CAPABILITY_VIOLATION",message:`${u} denies the ${h.capability} capability; found import of "${h.symbol}".`,capability:h.capability,symbol:h.symbol,evidence:h.evidence})}let c=t.length===0?"complete":"partial",p=c==="complete"?[]:[{...ql}],g={schemaVersion:cr,policyHash:e.contract.policyHash,compilerOptionsHash:W(F(e.compilerOptions??{})),files:t,layers:e.contract.config.layers.map(h=>h.name),edges:r,capabilityUses:o,violations:i};return{mode:"lexical-compatibility",completeness:c,completenessReasons:p,valid:c==="complete"&&i.length===0,ir:g}}s(It,"analyzeProject");function kn(e){let t=new Map(e.files.map(n=>[et(n.path),n]));for(let n of e.changes){let r=et(n.path);"delete"in n&&n.delete?t.delete(r):"content"in n&&t.set(r,{path:r,content:n.content})}return It({contract:e.contract,files:[...t.values()],compilerOptions:e.compilerOptions})}s(kn,"analyzeChange");function Oo(e){let t=`${e.evidence.file}:${e.evidence.line}`;if(!e.edge)return`${e.ruleId} at ${t}: ${e.message}`;let n=e.edge.to??e.edge.specifier;return`${e.ruleId} at ${t}: ${e.edge.from} imports ${n}. ${e.message}`}s(Oo,"explainViolation");function mr(e){let t=0,n=new Map,r=new Map,o=new Set,i=[],a=[],l=s(c=>{n.set(c,t),r.set(c,t),t+=1,i.push(c),o.add(c);for(let h of[...e.get(c)??[]].sort())e.has(h)&&(n.has(h)?o.has(h)&&r.set(c,Math.min(r.get(c)??0,n.get(h)??0)):(l(h),r.set(c,Math.min(r.get(c)??0,r.get(h)??0))));if(r.get(c)!==n.get(c))return;let p=[],g;do{if(g=i.pop(),g===void 0)break;o.delete(g),p.push(g)}while(g!==c);p.length>1&&a.push(p.sort())},"connect");for(let c of[...e.keys()].sort())n.has(c)||l(c);return a.sort((c,p)=>c[0]<p[0]?-1:c[0]>p[0]?1:0).map(c=>({ruleId:"CIRCULAR_DEPENDENCY",file:c[0],line:1,target:c.join(" \u2192 "),message:`Circular dependency among ${c.length} files: ${c.join(" \u2192 ")} \u2192 ${c[0]}.`,cycleKind:"value"}))}s(mr,"detectArchitectureCycles");function tt(e){let t=e.contentViolations.map(i=>({...i})),n=(e.warnings??[]).map(i=>({...i})),r=new Map(e.files.map(i=>[i,new Set]));for(let i of e.edges){if(i.to&&i.to!==i.from&&!i.typeOnly&&r.has(i.from)&&r.get(i.from)?.add(i.to),!i.to||!i.fromLayer||!i.toLayer)continue;let a=ze(e.rules,i.fromLayer,i.toLayer,{fromPath:i.from,toPath:i.to,layers:e.config.layers});if(!a)continue;let l=a.rule,c=!!l.peerIsolation,p=!c&&!!(i.typeOnly||i.namedBindingsTypeOnly),g=c?dt(a.peerIsolationReason??"cross-slice",{fromPath:i.from,toPath:i.to,fromSlice:a.fromSlice,toSlice:a.toSlice}):void 0,h=l.message?g?`${l.message} (${g})`:l.message:g?`${i.fromLayer} must not ${i.kind} another slice of ${i.toLayer} (${i.from} \u2192 ${i.to}): ${g}`:`${i.fromLayer} must not ${i.kind} ${i.toLayer}.`;t.push({ruleId:"LAYER_IMPORT_VIOLATION",file:i.from,line:i.line,fromLayer:i.fromLayer,toLayer:i.toLayer,target:i.to,...i.typeOnly?{typeOnly:!0}:{},...i.targetTypeOnlyExports?{targetTypeOnlyExports:!0}:{},...i.sourcePureTypeModule?{sourcePureTypeModule:!0}:{},...i.namedBindingsTypeOnly?{namedBindingsTypeOnly:!0}:{},...!c&&i.portProofEligible?{portProofEligible:!0}:{},...i.kind?{edgeKind:i.kind}:{},...c?{peerIsolation:!0}:{},message:p?`${h} (type-only \u2014 type placement debt; prefer SharedTypes / owning layer; not runtime coupling)`:h,...p?{failsStrict:!1,severity:"warning"}:{}})}let o=String(e.config.cyclePolicy??"strict").toLowerCase();if(o!=="off"){let i=mr(r);o==="soft"||o==="framework-soft"?n.push(...i.map(a=>({...a,message:`${a.message} (soft cycle policy \u2014 advisory only; set cyclePolicy: "strict" to fail the check)`,failsStrict:!1}))):t.push(...i)}return{violations:t,warnings:n,safety:e.safety}}s(tt,"evaluateArchitectureGraph");function hs(e){if(typeof e.target=="string"&&e.target.length>0)return e.target;let t=String(e.sensor||e.code||"").trim();if(!t&&typeof e.message=="string"){let r=e.message.match(/\(sensor ([a-z0-9-]+)\)/i);r?.[1]&&(t=r[1])}let n=String(e.symbol||"").trim();return t?n?`${t}:${n}`:t:n}s(hs,"structureFreezeTarget");var Zl=["no-anemic-model"],Is=["ensureInvariants","assertInvariants","validate","publish","emit","raise","record"],Tg=new RegExp(`\\b(${Is.join("|")})\\b`),bs="(?:_?pendingEvents|domainEvents|uncommittedEvents|recordedEvents)",Ng=new RegExp(`\\bthis\\.${bs}\\.push\\s*\\(`),Dg=new RegExp(`^this\\.${bs}\\s*=\\s*\\[\\s*\\]`);var Jl="truncatedUntil";function Ql(){return`${Is.join(", ")}, or events-array .push(`}s(Ql,"expectedDomainInvariantWordsPhrase");function Po(e){let t=Object.getOwnPropertyDescriptor(e,Jl)?.value;return typeof t=="number"?t:void 0}s(Po,"shapeTruncatedUntil");function ec(e){let t=Po(e);return t==null?"":` shape analysed until character ${t}`}s(ec,"shapeTruncationSuffix");function Rs(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}s(Rs,"escapeGlobLiteral");function tc(e){let t="";for(let r=0;r<e.length;r+=1){let o=e[r];if(o==="\\"&&r+1<e.length){let i=e[r+1];if("*?{}[],".includes(i)||i==="\\"){t+="\\"+i,r+=1;continue}t+="/";continue}t+=o}let n="";for(let r=0;r<t.length;r+=1){let o=t[r];o==="\\"&&r+1<t.length?(n+=Rs(t[r+1]),r+=1):o==="*"?t[r+1]==="*"?t[r+2]==="/"?(n+="(?:.*/)?",r+=2):(n+=".*",r+=1):n+="[^/]*":o==="?"?n+="[^/]":n+=Rs(o)}return new RegExp(`^${n}$`)}s(tc,"globToRegExp");function bt(e,t){return!t||t.length===0?!0:t.some(n=>tc(n).test(e))}s(bt,"matchesAppliesTo");function nc(e){return Zl.includes(e)}s(nc,"isTier2");function Es(e){return e.mode==="enforced"&&!nc(e.sensor)?{severity:"error",failsStrict:!0}:{severity:"warning",failsStrict:!1}}s(Es,"severityFor");function Pe(e,t,n,r=1){let{severity:o,failsStrict:i}=Es(e);return{ruleId:"ARKRULE_STRUCTURE",code:e.sensor,message:n,file:t,line:r,fromLayer:e.provenance.layer,arkruleId:e.id,arkruleSource:e.provenance.sourceFile,severity:o,sensor:e.sensor,failsStrict:i}}s(Pe,"baseViolation");function yr(e,t,n){if(!n)return!0;let r=n(e);return r?r===t.provenance.layer:!1}s(yr,"isInRuleLayer");function hr(e,t,n){return t.filter(r=>!(!r.exported||!bt(r.file,e.appliesTo)||!yr(r.file,e,n)))}s(hr,"shapesForRule");function rc(e,t,n){let r=[];for(let o of hr(e,t,n))(o.hasPublicSetters||o.hasPublicMutableFields)&&r.push(Pe(e,o.file,`Exported class ${o.className} exposes public mutable state (sensor aggregate-private-state).`));return r}s(rc,"evaluateAggregatePrivateState");function oc(e,t,n){let r=[];for(let o of hr(e,t,n))if(o.hasPublicConstructor&&!o.hasStaticFactory){if(!(o.hasPublicMutableFields||o.hasPublicSetters||(o.mutatingMethods?.length??0)>0))continue;r.push(Pe(e,o.file,`Exported class ${o.className} exposes a public constructor without a static factory (sensor always-valid-factory).`))}return r}s(oc,"evaluateAlwaysValidFactory");function ic(e,t,n){let r=[],o=Ql();for(let i of hr(e,t,n)){let a=ec(i);Po(i)!=null&&r.push(Pe(e,i.file,`Exported class ${i.className} shape analysed until character ${Po(i)}; later methods may be invisible (sensor domain-event-on-mutation).`));for(let l of i.mutatingMethods)l.referencesGuardOrPublish||r.push(Pe(e,i.file,`Mutating method ${i.className}.${l.name} does not reference ${o} (sensor domain-event-on-mutation).${a}`))}return r}s(ic,"evaluateDomainEventOnMutation");function sc(e,t){let n=[];for(let r of t.files)bt(r,e.appliesTo)&&yr(r,e,t.layerForFile)&&t.fileHints?.[r]?.orchestrationHeavy&&n.push(Pe(e,r,"File appears to embed domain branching beyond guard-and-delegate orchestration (sensor orchestration-only)."));return n}s(sc,"evaluateOrchestrationOnly");function ac(e,t){let n=[];for(let r of t.files)bt(r,e.appliesTo)&&yr(r,e,t.layerForFile)&&t.fileHints?.[r]?.adapterThick&&n.push(Pe(e,r,"Adapter module mixes domain branching, persistence, and mapping beyond a thin adapter (sensor thin-adapter)."));return n}s(ac,"evaluateThinAdapter");function lc(e,t){let n=[];for(let r of t.files)bt(r,e.appliesTo)&&yr(r,e,t.layerForFile)&&t.fileHints?.[r]?.persistenceWrite&&n.push(Pe(e,r,"File imports a persistence driver and issues a write; route the write through a Domain aggregate and a persistence adapter (sensor writes-via-aggregate)."));return n}s(lc,"evaluateWritesViaAggregate");function cc(e,t,n){let r=[];for(let o of hr(e,t,n))if(o.dataOnly===!0){let i=Pe(e,o.file,`Exported type ${o.className} looks data-only / anemic (sensor no-anemic-model; advisory only).`);r.push({...i,severity:"warning",failsStrict:!1})}return r}s(cc,"evaluateNoAnemicModel");function vs(e){if(!e.arkRules.structure.length)return[];let t=[];for(let n of e.arkRules.structure)switch(n.sensor){case"aggregate-private-state":t.push(...rc(n,e.classShapes,e.layerForFile));break;case"always-valid-factory":t.push(...oc(n,e.classShapes,e.layerForFile));break;case"domain-event-on-mutation":t.push(...ic(n,e.classShapes,e.layerForFile));break;case"orchestration-only":t.push(...sc(n,e));break;case"thin-adapter":t.push(...ac(n,e));break;case"writes-via-aggregate":t.push(...lc(n,e));break;case"no-anemic-model":t.push(...cc(n,e.classShapes,e.layerForFile));break;case"invariant-coverage":break;default:break}return t.sort((n,r)=>n.file.localeCompare(r.file)||n.arkruleId.localeCompare(r.arkruleId)||n.message.localeCompare(r.message))}s(vs,"evaluateArkRuleSensors");function Ss(e,t){let n=[],r=t.map(o=>o.replace(/\\/g,"/"));for(let o of e.structure){if(!o.appliesTo||o.appliesTo.length===0||r.some(c=>bt(c,o.appliesTo)))continue;let{severity:a,failsStrict:l}=Es(o);n.push({ruleId:"ARKRULE_SCOPE_EMPTY",code:"appliesTo-zero-match",message:`ArkRule structure "${o.id}" appliesTo matched zero governed files (patterns: ${o.appliesTo.join(", ")}). A zero-match scope is almost always misconfiguration.`,file:o.provenance.sourceFile,line:1,fromLayer:o.provenance.layer,arkruleId:o.id,arkruleSource:o.provenance.sourceFile,severity:a,sensor:o.sensor,failsStrict:l})}for(let o of e.invariants??[]){if(!o.appliesTo||o.appliesTo.length===0||r.some(l=>bt(l,o.appliesTo)))continue;let a=o.mode==="enforced";n.push({ruleId:"ARKRULE_SCOPE_EMPTY",code:"appliesTo-zero-match",message:`ArkRule invariant "${o.id}" appliesTo matched zero governed files (patterns: ${o.appliesTo.join(", ")}). A zero-match scope is almost always misconfiguration.`,file:o.provenance.sourceFile,line:1,fromLayer:o.provenance.layer,arkruleId:o.id,arkruleSource:o.provenance.sourceFile,severity:a?"error":"warning",sensor:"invariant-coverage",failsStrict:a})}return n.sort((o,i)=>o.file.localeCompare(i.file)||o.arkruleId.localeCompare(i.arkruleId)||o.message.localeCompare(i.message))}s(Ss,"collectEmptyAppliesToFindings");var As=/\bfrom\s+['"](?:@?prisma\/client|@supabase\/|drizzle-orm(?:\/[^'"]+)?|postgres(?:\/[^'"]+)?|typeorm|knex|mongodb|pg|mysql2|mongoose|better-sqlite3|ioredis|redis|kysely|sequelize)['"]|require\(\s*['"](?:@?prisma\/client|pg|postgres(?:\/[^'"]+)?|drizzle-orm(?:\/[^'"]+)?|knex|typeorm|mongoose)/,ks=/\bfrom\s+['"](?:@\/|~\/)?(?:[\w.-]+\/)*(?:db|database|prisma|drizzle)(?:\.[cm]?[jt]sx?)?['"]|require\(\s*['"](?:@\/|~\/)?(?:[\w.-]+\/)*(?:db|database|prisma|drizzle)/,dc=/\b(?:db|tx|client|prisma(?:Client)?|drizzle)\b(?:\s*\.\s*[A-Za-z_]\w*)*\s*\.\s*(?:insert(?:One|Many)?|update(?:One|Many)?|upsert|delete(?:One|Many)?|createMany|create|replaceOne|findOneAnd(?:Update|Delete|Replace))\s*\(|\bINSERT\s+INTO\b|\bUPDATE\s+[A-Za-z_][\w.]*\s+SET\b|\bDELETE\s+FROM\b/i;function uc(e){return e==="PersistenceAdapters"}s(uc,"isPersistenceDriverLayer");function pc(e,t){if(As.test(e)||ks.test(e))return!0;if(!t)return!1;for(let n of t){if(uc(n.layer))return!0;let r=n.specifier;if(!r)continue;let o=`from '${r}'`;if(As.test(o)||ks.test(o))return!0}return!1}s(pc,"sourceImportsPersistenceDriver");var fc=/\b(?:@Controller|@Get|@Post|@Put|@Delete|Router\(\)|createRouter|express\.Router|fastify\.(?:get|post)|export\s+(?:async\s+)?function\s+(?:GET|POST|PUT|DELETE|PATCH)\b|export\s+const\s+(?:GET|POST|PUT|DELETE|PATCH)\s*=)/,gc=/(?:^|[;\n])\s*(?:import\s+(?:type\s+)?(?:[^;]{0,512}?\s+from\s+)?|export\s+(?:type\s+)?[^;]{0,512}?\s+from\s+)['"]next\/server(?:\.js)?['"]/,mc=/\b(?:export\s+)?(?:async\s+)?function\s+(?:can|calculate|compute|should|ensure|validate|is|has)[A-Z]\w*|\b(?:export\s+)?const\s+(?:can|calculate|compute|should|ensure|validate|is|has)[A-Z]\w*\s*=/,yc=/\bif\s*\(\s*(?:!)?(?:order|invoice|cart|user|account|policy|aggregate|entity|amount|total|balance|status|state)\b/i;function hc(e,t,n){if(!t)return null;let r=pc(t,n),o=r&&dc.test(t);if(t.length<40)return o?{persistenceWrite:!0}:null;let i=t.match(new RegExp(mc.source,"g"))??[],a=t.match(new RegExp(yc.source,"g"))??[],l=(t.match(/\bif\s*\(/g)??[]).length,c=(t.match(/\bswitch\s*\(/g)??[]).length,p=i.length>=2||i.length>=1&&a.length>=2||a.length>=3&&l+c>=6,g=fc.test(t)||gc.test(t),h=i.length>=1||a.length>=2,u=/\b(?:mapTo|toDomain|toDto|fromRow|toEntity|fromPrisma|serialize|deserialize)\w*\s*[(=]/.test(t),f=r&&h||g&&h||r&&u&&(l>=4||i.length>=1)||g&&r;return!p&&!f&&!o?null:{...p?{orchestrationHeavy:!0}:{},...f?{adapterThick:!0}:{},...o?{persistenceWrite:!0}:{}}}s(hc,"deriveArkRuleFileHints");function ws(e,t){let n={};for(let[r,o]of Object.entries(e)){let i=r.replace(/\\/g,"/"),a=hc(r,o,t?.[i]);a&&(n[i]=a)}return n}s(ws,"buildArkRuleFileHints");function Rc(e){if(!e)return{};let t=typeof e.governedPercent=="number"?e.governedPercent:null,n=typeof e.populatedLayerCount=="number"?e.populatedLayerCount:null;return n==null&&typeof e.classifiedFiles=="number"&&(n=e.classifiedFiles>0?1:0),{governedPercent:t,populatedLayerCount:n}}s(Rc,"normalizeExtraMergeTeethClassification");function Rr(e){let t=Rc(e),n=typeof t.governedPercent=="number"?t.governedPercent:null,r=typeof t.populatedLayerCount=="number"?t.populatedLayerCount:null;return n==null&&r==null?!0:(n??0)>=50&&(r??0)>=1}s(Rr,"extraMergeTeethAllowed");function Cs(e){let t=e.length,n=0,r=new Set;for(let o of e){let i=typeof o.layer=="string"&&o.layer.length>0?o.layer:null;i&&(n+=1,r.add(i))}return{governedPercent:t>0?Math.round(n/t*100):0,populatedLayerCount:r.size}}s(Cs,"classifyResolvedLayerCoverage");var Ac=["createArkKernel","createStrictArkKernel","createArkKernelFromConfig","createStrictArkKernelFromConfig"];var Kg=new Set(Ac);function xs(e){return e==="@arkgate/runtime"||e.startsWith("@arkgate/runtime/")||e==="arkgate/runtime"||e.startsWith("arkgate/runtime/")}s(xs,"isArkRunKernelModuleSpecifier");var kc=["events","node:events","eventemitter2","eventemitter3","emittery","kafkajs","kafka-node","amqplib","amqp","bull","bullmq","mqtt","nats","@aws-sdk/client-sqs","@aws-sdk/client-sns","@aws-sdk/client-eventbridge","@google-cloud/pubsub","@azure/service-bus"],_o=new Set(kc);function Os(e){if(!e||e.startsWith(".")||e.startsWith("/"))return!1;if(_o.has(e))return!0;let t=e.indexOf("/");if(t<0)return!1;let n=e.slice(0,t);if(_o.has(n))return!0;let r=e.indexOf("/",t+1);return r<0?!1:_o.has(e.slice(0,r))}s(Os,"isArkRunTransportBypassSpecifier");var Ic=["arkrun-kernel-in-domain","arkrun-direct-new","arkrun-transport-bypass"],Yg=new Set(Ic);var Ps={"arkrun-missing-root":"ARKRUN_MISSING_ROOT","arkrun-kernel-in-domain":"ARKRUN_KERNEL_IN_DOMAIN","arkrun-direct-new":"ARKRUN_DIRECT_NEW","arkrun-undeclared-emit":"ARKRUN_UNDECLARED_EMIT","arkrun-undeclared-handle":"ARKRUN_UNDECLARED_HANDLE","arkrun-undeclared-depend":"ARKRUN_UNDECLARED_DEPEND","arkrun-transport-bypass":"ARKRUN_TRANSPORT_BYPASS"},bc="ARKRUN_INTERACTION_NAME_INCOMPLETE";function Ns(e,t=[]){let n=e.trim();return/^domain(?:model)?$/i.test(n)||/^domain(?=[A-Z_\-\s])/i.test(n)||/^(?:entit(?:y|ies)|aggregates?)(?:$|(?=[A-Z_\-\s]))/i.test(n)?!0:t.some(r=>{let o=r.trim().replace(/\.+$/,"");return o==="Domain"||o.startsWith("Domain.")})}s(Ns,"isDomainRoleLayer");function Ec(e,t){return e.file.localeCompare(t.file)||e.ruleId.localeCompare(t.ruleId)||e.line-t.line||e.message.localeCompare(t.message)}s(Ec,"compareFindings");function ve(e,t,n,r,o,i,a){let l=e.mode==="enforced"&&a;return{ruleId:Ps[t],sensor:t,message:o,file:n,line:r,...i?.fromLayer?{fromLayer:i.fromLayer}:{},...i?.target?{target:i.target}:{},severity:l?"error":"warning",failsStrict:l,nextAction:pe({ruleId:Ps[t],fromLayer:i?.fromLayer,target:i?.target})}}s(ve,"finding");function vc(e,t){let n=[],r=[],o=[],i=[];for(let a of e)a.file===t&&(n.push(...a.uses),r.push(...a.reactsTo),o.push(...a.raises),i.push(...a.sends));return{uses:new Set(n),reactsTo:new Set(r),raises:new Set(o),sends:new Set(i)}}s(vc,"bagForFile");function _s(e){return e==="publisher"||e==="publish"||e==="raise"||e==="send"}s(_s,"emitKinds");function Ts(e){return e==="subscribe"||e==="register-handler"}s(Ts,"handleKinds");function Sc(e){return e==="resolve"||e==="resolve-singleton"}s(Sc,"dependKinds");function wc(e,t,n){let r=[],o=e.kernelRoots??e.compositionRoots;if(o.length===0)return r.push(ve(e,"arkrun-missing-root","ark.config.json",1,"ArkRun kernelRoots is empty; no createArkKernel factory site is declared.",void 0,n)),r;let i=new Map;for(let a of t){let l=i.get(a.matchedRoot)??[];l.push(a),i.set(a.matchedRoot,l)}for(let a of o){let l=[...i.get(a)??[]].sort((p,g)=>p.file.localeCompare(g.file));if(l.length===0){r.push(ve(e,"arkrun-missing-root","ark.config.json",1,`ArkRun kernel root ${JSON.stringify(a)} matched no governed files and has no createArkKernel factory.`,{target:a},n));continue}if(l.some(p=>p.hasKernelFactory))continue;let c=l[0];r.push(ve(e,"arkrun-missing-root",c.file,1,`ArkRun kernel root ${JSON.stringify(a)} has no createArkKernel / createStrictArkKernel factory.`,{target:a},n))}return r}s(wc,"evaluateMissingRoot");function Cc(e,t,n,r,o){let i=new Map(t.map(l=>[l.name,l.intentPrefixes??[]])),a=[];for(let l of n){let c=l.specifier;if(!c||!xs(c))continue;let p=r(l.from);p&&Ns(p,i.get(p)??[])&&a.push(ve(e,"arkrun-kernel-in-domain",l.from,l.line,`${p} must not import kernel module ${JSON.stringify(c)}.`,{fromLayer:p,target:c},o))}return a}s(Cc,"evaluateKernelInDomain");function xc(e,t,n,r,o,i){let a=new Set(e.managedLayers);if(a.size===0)return[];let l=new Map(t.map(g=>[g.name,g.intentPrefixes??[]])),c=new Set(r.filter(g=>g.hasKernelFactory).map(g=>g.file)),p=[];for(let g of n){if(c.has(g.file))continue;let h=g.typeName;if(e.ignoreDirectNewForErrors!==!1&&(h.endsWith("Error")||h==="Error")||h.endsWith("DTO")||h.endsWith("VO"))continue;let u=o(g.file);!u||!a.has(u)||Ns(u,l.get(u)??[])||p.push(ve(e,"arkrun-direct-new",g.file,g.line,`${u} must not construct ${g.typeName} with new outside an ArkRun composition-root factory.`,{fromLayer:u,target:g.typeName},i))}return p}s(xc,"evaluateDirectNew");function Oc(e,t,n,r,o){let i=[],a=[];if(e.requireDeclarations!==!0)return{findings:i,completenessReasons:a};let l=new Set(e.managedLayers);if(l.size===0)return{findings:i,completenessReasons:a};for(let c of t){if(!_s(c.kind)&&!Ts(c.kind)&&!Sc(c.kind))continue;let p=r(c.file);if(!p||!l.has(p))continue;if(!c.nameLiteral){e.mode==="enforced"&&a.push({code:bc,file:c.file,message:`ArkRun ${c.kind} call in ${c.file} has no string-literal name; enforced extra cannot prove the declaration.`});continue}let g=vc(n,c.file);if(_s(c.kind)){if(g.raises.has(c.nameLiteral)||g.sends.has(c.nameLiteral))continue;i.push(ve(e,"arkrun-undeclared-emit",c.file,c.line,`Emit ${JSON.stringify(c.nameLiteral)} is not declared in raises or sends.`,{fromLayer:p,target:c.nameLiteral},o));continue}if(Ts(c.kind)){if(g.reactsTo.has(c.nameLiteral))continue;i.push(ve(e,"arkrun-undeclared-handle",c.file,c.line,`Handle ${JSON.stringify(c.nameLiteral)} is not declared in reactsTo.`,{fromLayer:p,target:c.nameLiteral},o));continue}g.uses.has(c.nameLiteral)||i.push(ve(e,"arkrun-undeclared-depend",c.file,c.line,`Depend ${JSON.stringify(c.nameLiteral)} is not declared in uses.`,{fromLayer:p,target:c.nameLiteral},o))}return{findings:i,completenessReasons:a}}s(Oc,"evaluateUndeclared");function Pc(e,t,n,r){let o=new Set(e.managedLayers);if(o.size===0)return[];let i=[];for(let a of t){if(a.typeOnly)continue;let l=a.specifier;if(!l||!Os(l))continue;let c=n(a.from);!c||!o.has(c)||i.push(ve(e,"arkrun-transport-bypass",a.from,a.line,`${c} must not import broker/queue/emitter ${JSON.stringify(l)}; use the ArkRun kernel transport.`,{fromLayer:c,target:l},r))}return i}s(Pc,"evaluateTransportBypass");function Ds(e){let t=e.arkRun;if(!t)return{findings:[],completenessReasons:[]};let n=Rr(e.classification),r=Oc(t,e.kernelCalls,e.declarations,e.layerForFile,n),o=[...wc(t,e.compositionRootHits,n),...Cc(t,e.layers,e.dependencies,e.layerForFile,n),...xc(t,e.layers,e.managedNews,e.compositionRootHits,e.layerForFile,n),...r.findings,...Pc(t,e.dependencies,e.layerForFile,n)].sort(Ec),i=[...r.completenessReasons].sort((a,l)=>{let c=`${a.code}\0${a.file??""}\0${a.message}`,p=`${l.code}\0${l.file??""}\0${l.message}`;return c<p?-1:c>p?1:0});return{findings:o,completenessReasons:i}}s(Ds,"evaluateArkRunSensors");function Ls(e){return e==="arkgate/order"||e.startsWith("arkgate/order/")}s(Ls,"isArkOrderModuleSpecifier");var Fs=new Map;function Ms(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}s(Ms,"escapeAppliesToLiteral");function _c(e){let t="";for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"&&n+1<e.length){let o=e[n+1];if("*?{}[],".includes(o)||o==="\\"){t+="\\"+o,n+=1;continue}t+="/";continue}t+=r}return t}s(_c,"normalizeAppliesToGlob");function Tc(e){let t=0;for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"){n+=1;continue}if(r==="{")t+=1;else if(r==="}"&&(t-=1,t<0))return!1}return t===0}s(Tc,"appliesToBracesBalanced");function Nc(e){let t=Fs.get(e);if(t)return t;let n=_c(e),r=Tc(n),o="",i=0;for(let l=0;l<n.length;l+=1){let c=n[l];c==="\\"&&l+1<n.length?(o+=Ms(n[l+1]),l+=1):c==="*"?n[l+1]==="*"?n[l+2]==="/"?(o+="(?:.*/)?",l+=2):(o+=".*",l+=1):o+="[^/]*":c==="?"?o+="[^/]":c==="{"&&r?(o+="(?:",i+=1):c==="}"&&r&&i>0?(o+=")",i-=1):c===","&&r&&i>0?o+="|":o+=Ms(c)}let a=new RegExp(`^${o}$`);return Fs.set(e,a),a}s(Nc,"globToRegExp");var $s={"arkorder-missing-plane":"ARKORDER_MISSING_PLANE","arkorder-kernel-in-domain":"ARKORDER_KERNEL_IN_DOMAIN","arkorder-generic-update":"ARKORDER_GENERIC_UPDATE","arkorder-too-many-params":"ARKORDER_TOO_MANY_PARAMS","arkorder-ingest-writes-xi":"ARKORDER_INGEST_WRITES_XI","arkorder-xi-field-write":"ARKORDER_XI_FIELD_WRITE","arkorder-information-budget":"ARKORDER_INFORMATION_BUDGET","arkorder-xi-ttl":"ARKORDER_XI_TTL"};function Dc(e,t){return!t||t.length===0?!0:t.some(n=>Nc(n).test(e))}s(Dc,"matchesArkOrderAppliesTo");function Lc(e,t=[]){let n=e.trim();return/^domain(?:model)?$/i.test(n)||/^domain(?=[A-Z_\-\s])/i.test(n)?!0:t.some(r=>{let o=r.trim().replace(/\.+$/,"");return o==="Domain"||o.startsWith("Domain.")})}s(Lc,"isDomainRoleLayer");function _e(e,t,n,r,o,i,a){let l=e.mode==="enforced"&&a;return{ruleId:$s[t],sensor:t,message:o,file:n,line:r,...i?.fromLayer?{fromLayer:i.fromLayer}:{},...i?.target?{target:i.target}:{},severity:l?"error":"warning",failsStrict:l,nextAction:pe({ruleId:$s[t],fromLayer:i?.fromLayer,target:i?.target})}}s(_e,"finding");function Ks(e){let t=e.arkOrder;if(!t)return{findings:[],completenessReasons:[]};let n=Rr(e.classification),r=[],o=t.planeRoots;if(t.mode==="enforced"&&o.length===0)r.push(_e(t,"arkorder-missing-plane","ark.config.json",1,"ArkOrder planeRoots is empty; no createOrderPlane site is declared.",void 0,n));else{let c=new Map;for(let p of e.planeRootHits){let g=c.get(p.matchedRoot)??[];g.push(p),c.set(p.matchedRoot,g)}for(let p of o){let g=c.get(p)??[];if(g.length===0){r.push(_e(t,"arkorder-missing-plane","ark.config.json",1,`ArkOrder plane root ${JSON.stringify(p)} matched no governed files and has no createOrderPlane factory.`,{target:p},n));continue}g.some(h=>h.hasPlaneFactory)||r.push(_e(t,"arkorder-missing-plane",g[0].file,1,`ArkOrder plane root ${JSON.stringify(p)} has no createOrderPlane factory.`,{target:p},n))}}let i=new Map(e.layers.map(c=>[c.name,c.intentPrefixes??[]]));for(let c of e.dependencies){let p=c.specifier;if(!p||!Ls(p))continue;let g=e.layerForFile(c.from);g&&Lc(g,i.get(g)??[])&&r.push(_e(t,"arkorder-kernel-in-domain",c.from,c.line,"Domain-role layer imports arkgate/order; Domain stays plane-free.",{fromLayer:g,target:p},n))}for(let c of e.genericUpdates)r.push(_e(t,"arkorder-generic-update",c.file,c.line,`Generic ${c.method}() on the order plane rewrites \u03BE; Haken forbids it.`,{target:c.method},n));let a=t.xiKeys??[];for(let c of e.releaseKeyCounts??[])c.keyCount<=t.maxXiKeys||r.push(_e(t,"arkorder-too-many-params",c.file,c.line,`release() freezes ${c.keyCount} keys; maxXiKeys is ${t.maxXiKeys} (few slow modes).`,{target:String(c.keyCount)},n));for(let c of e.ingestWritesXi??[])r.push(_e(t,"arkorder-ingest-writes-xi",c.file,c.line,"ingest() result is assigned into a Release or \u03BE store; ingest may absorb or escalate, never mint a pattern.",void 0,n));let l=new Set(t.managedLayers);for(let c of a.length===0?[]:e.xiFieldWrites??[]){let p=e.layerForFile(c.file);!p||!l.has(p)||Dc(c.file,t.appliesTo)&&r.push(_e(t,"arkorder-xi-field-write",c.file,c.line,`This file writes ${JSON.stringify(c.key)} the same way it would write a seat count. Take the event in, or change that choice through the valve (propose, then apply).`,{fromLayer:p,target:c.key},n))}return r.sort((c,p)=>c.file.localeCompare(p.file)||c.ruleId.localeCompare(p.ruleId)||c.line-p.line),{findings:r,completenessReasons:[]}}s(Ks,"evaluateArkOrderSensors");function Q(e,t,n={}){return{ruleId:e,message:t,...n}}s(Q,"configWarning");function In(e){let{config:t,rules:n,files:r,manifest:o}=e,i=[];if(t.dynamicImportAllowlist!==void 0&&(!Array.isArray(t.dynamicImportAllowlist)||t.dynamicImportAllowlist.some(f=>typeof f!="string"))&&i.push(Q("CONFIG_INVALID_DYNAMIC_IMPORT_ALLOWLIST","dynamicImportAllowlist must be an array of file globs.")),t.safety!==void 0&&(t.safety===null||typeof t.safety!="object"||Array.isArray(t.safety)))i.push(Q("CONFIG_INVALID_SAFETY","safety must be an object."));else if(t.safety)for(let f of["maxTsSuppressions","maxAnyCasts"]){let m=t.safety[f];m!==void 0&&(!Number.isInteger(m)||m<0)&&i.push(Q("CONFIG_INVALID_SAFETY_THRESHOLD",`safety.${f} must be a non-negative integer.`))}let a=Array.isArray(t.layers)?t.layers:[],l=Array.isArray(o?.architecture?.layers)?o.architecture.layers:[],c=new Set([...a.map(f=>f.name).filter(Boolean),...l.map(f=>f.name).filter(f=>!!f)]);a.length===0&&i.push(Q("CONFIG_NO_LAYERS","No file layers are configured; ark-check cannot classify files for import-boundary enforcement."));let p=new Set,g=new Set;for(let f of a){if(!f.name){i.push(Q("CONFIG_LAYER_WITHOUT_NAME","A configured layer is missing a name."));continue}p.has(f.name)&&g.add(f.name),p.add(f.name),f.forbiddenGlobals!==void 0&&(!Array.isArray(f.forbiddenGlobals)||f.forbiddenGlobals.some(y=>typeof y!="string"))&&i.push(Q("CONFIG_INVALID_FORBIDDEN_GLOBALS",`Layer "${f.name}" has an invalid forbiddenGlobals value; expected an array of strings (e.g. ["fetch", "Date.now"]). The entry is ignored.`,{layer:f.name}));let m=Array.isArray(f.patterns)?f.patterns:[];if(m.length===0){i.push(Q("CONFIG_LAYER_WITHOUT_PATTERNS",`Layer "${f.name}" has no file patterns and will never classify files.`,{layer:f.name}));continue}for(let y of m){let v;try{v=Ae(y)}catch(A){i.push(Q("CONFIG_INVALID_LAYER_PATTERN",`Layer "${f.name}" has an invalid pattern "${y}": ${A instanceof Error?A.message:String(A)}`,{layer:f.name,pattern:y}));continue}let E=f.optional===!0||f.reserved===!0||f.allowEmpty===!0;!r.some(A=>v.test(A))&&!E&&i.push(Q("CONFIG_LAYER_PATTERN_NO_MATCHES",`Layer "${f.name}" pattern "${y}" matched no included files (possible typo). Mark the layer reserved/allowEmpty if this house is reserved for later.`,{layer:f.name,pattern:y,failsStrict:!1,reserved:!1}))}}for(let f of g)i.push(Q("CONFIG_DUPLICATE_LAYER",`Layer "${f}" is configured more than once.`,{layer:f}));if(c.size>0)for(let f of n??[])f.from&&!c.has(f.from)&&i.push(Q("CONFIG_RULE_UNKNOWN_FROM_LAYER",`Rule references unknown source layer "${f.from}".`,{fromLayer:f.from,toLayer:f.to})),f.to&&!c.has(f.to)&&i.push(Q("CONFIG_RULE_UNKNOWN_TO_LAYER",`Rule references unknown target layer "${f.to}".`,{fromLayer:f.from,toLayer:f.to}));let h=new Set;if(a.length>1)for(let f of r){let m=-1,y=[];for(let v of a)for(let E of v.patterns??[]){if(!Ae(E).test(f))continue;let A=Zr(E,f);A>m?(m=A,y=[v.name]):A===m&&!y.includes(v.name)&&y.push(v.name)}y.length>1&&h.add([...y].sort().join(" + "))}h.size>0&&i.push(Q("CONFIG_AMBIGUOUS_LAYERS",`Some files match multiple layers at equal specificity; classification falls back to declaration order. Disambiguate the overlapping patterns: ${[...h].join(", ")}.`,{pairs:[...h]}));let u=r.filter(f=>!ce(f,a));return u.length>0&&i.push(Q("CONFIG_UNCLASSIFIED_FILES",`${u.length} included source file(s) are not matched by any configured layer; ark-check will not enforce import rules for those source files.`,{count:u.length,samples:u.slice(0,5)})),i}s(In,"collectAnalysisConfigWarnings");function Hs(e,t){let n=e.ruleId==="ARKRULE_STRUCTURE",r=e.ruleId==="ARKRULE_SCOPE_EMPTY";return{ruleId:e.ruleId,file:e.file,line:e.line,message:e.message,fromLayer:e.fromLayer,arkruleId:e.arkruleId,arkruleSource:e.arkruleSource,...n?{sensor:e.sensor,code:e.code,target:hs({sensor:e.sensor,code:e.code})}:{},...r?{freezable:!1}:{},nextAction:t}}s(Hs,"toArkRuleEngineViolation");function Fc(e,t){return t.some(n=>{try{return Ae(n).test(e)}catch{return!1}})}s(Fc,"matchesAny");function Mc(e,t){let n=e.contract.config.safety??{},r=Number.isInteger(n.maxTsSuppressions)?Number(n.maxTsSuppressions):0,o=Number.isInteger(n.maxAnyCasts)?Number(n.maxAnyCasts):0,i=e.contract.config.dynamicImportAllowlist??[],a=t.safetyUses.filter(y=>y.kind==="ts-suppression").map(({file:y,line:v})=>({file:y,line:v})),l=t.safetyUses.filter(y=>y.kind==="any-cast").map(({file:y,line:v})=>({file:y,line:v})),c=t.safetyUses.filter(y=>(y.kind==="dynamic-import"||y.kind==="dynamic-require")&&!Fc(y.file,i)).map(y=>({file:y.file,line:y.line,kind:y.kind==="dynamic-require"?"require":"import"})),p=n.allowInMemory===!0||t.projectPackageName==="arkgate"?[]:t.safetyUses.filter(y=>y.kind==="in-memory-store").map(y=>({file:y.file,line:y.line,store:y.symbol??"in-memory store"})),g=n.allowDisabledPeerIsolation===!0?[]:(e.contract.config.rules??[]).filter(y=>y.peerIsolation===!1||y.allowed===!1&&!!y.from&&y.from===y.to&&y.peerIsolation!==!0).map(y=>({from:y.from,to:y.to})),h={tsSuppressions:a,anyCasts:l,nonLiteralDynamicImports:c,inMemoryProductionStores:p,disabledPeerIsolationRules:g,thresholds:{maxTsSuppressions:r,maxAnyCasts:o}},u=[],f=c.filter(y=>y.kind==="import");if(f.length>0){let y=f[0];u.push({ruleId:"DYNAMIC_IMPORT_NOT_ALLOWLISTED",file:y.file,line:y.line,message:`${f.length} non-literal dynamic import(s) cannot be resolved statically. Add only reviewed files to dynamicImportAllowlist.`})}let m=c.filter(y=>y.kind==="require");if(m.length>0){let y=m[0];u.push({ruleId:"DYNAMIC_REQUIRE_NOT_ALLOWLISTED",file:y.file,line:y.line,message:`${m.length} non-literal require call(s) cannot be resolved statically. Add only reviewed files to dynamicImportAllowlist.`})}if(a.length>r){let y=a[0];u.push({ruleId:"TS_SUPPRESSION_THRESHOLD_EXCEEDED",file:y.file,line:y.line,message:`${a.length} @ts-ignore/@ts-nocheck directive(s) exceed safety.maxTsSuppressions (${r}).`})}if(l.length>o){let y=l[0];u.push({ruleId:"ANY_CAST_THRESHOLD_EXCEEDED",file:y.file,line:y.line,message:`${l.length} explicit any cast(s) exceed safety.maxAnyCasts (${o}).`})}if(p.length>0){let y=p[0];u.push({ruleId:"IN_MEMORY_STORE_IN_PRODUCTION_SOURCE",file:y.file,line:y.line,message:`${p.length} ArkGate InMemory store risk(s) appear in governed production source. Provide durable stores or set safety.allowInMemory only for an explicitly ephemeral service.`})}return g.length>0&&u.push({ruleId:"PEER_ISOLATION_DISABLED",message:`${g.length} rule(s) disable or omit required peerIsolation. Restore peerIsolation: true or set safety.allowDisabledPeerIsolation only with a documented production exception.`}),{report:h,warnings:u}}s(Mc,"evaluateSafety");function $c(e,t){return[...t].filter(n=>e===n||e.startsWith(`${n}.`)).sort((n,r)=>r.length-n.length)[0]}s($c,"ambientForbiddenGlobal");function Us(e,t){let n=t.config.layers.filter(r=>(r.intentPrefixes??[]).length>0);return ko(e,n.length>0?n:Ao.map(r=>({name:r.layer,prefixes:r.prefixes})))}s(Us,"intentLayer");function Kc(e,t,n){let r=[],o=new Map(e.contract.config.layers.map(i=>[i.name,i]));for(let i of t.ambientUses){let a=n.get(i.file);!a||!$c(i.symbol,o.get(a)?.forbiddenGlobals??[])||r.push({ruleId:"FORBIDDEN_GLOBAL",file:i.file,line:i.line,fromLayer:a,target:i.symbol,message:`${a} must not use the ambient global "${i.symbol}".`})}for(let i of t.capabilityUses){let a=n.get(i.file);if(!a)continue;let l=o.get(a),c=l?.forbiddenGlobals??[],p=i.source==="import-based"?t.dependencies.find(g=>g.from===i.file&&g.line===i.line&&g.specifier===i.symbol&&!g.typeOnly)?.kind:void 0;if(!(i.source==="ambient-global"&&dn(i.symbol,c))){if(i.source==="import-based"){let g=xe(i.symbol,c);if(g){r.push({ruleId:"FORBIDDEN_GLOBAL",file:i.file,line:i.line,fromLayer:a,target:i.symbol,...p?{edgeKind:p}:{},message:`${a} must not use module "${i.symbol}" because it is the import form of forbidden global "${g}".`});continue}}yt(l).includes(i.capability)&&r.push({ruleId:"CAPABILITY_VIOLATION",file:i.file,line:i.line,fromLayer:a,target:i.symbol,capability:i.capability,...p?{edgeKind:p}:{},message:i.source==="import-based"?`${a} denies the ${i.capability} capability; found import of "${i.symbol}".`:`${a} denies the ${i.capability} capability; found ambient "${i.symbol}".`})}}for(let i of t.publishCalls){let a=n.get(i.file);if(!a)continue;for(let c of un({publishCall:!0,rawIntentName:i.rawIntentName,objectHasIntent:i.objectHasIntent,arkPublishCandidate:i.arkPublishCandidate,hasSource:i.hasSource}))r.push({ruleId:c.ruleId,file:i.file,line:i.line,...c.ruleId==="PUBLISH_MISSING_SOURCE"?{fromLayer:a}:{},message:c.message});if(!i.sourceIntent)continue;let l=Us(i.sourceIntent,e.contract);!l||l===a||r.push({ruleId:"PUBLISH_SOURCE_LAYER_MISMATCH",file:i.file,line:i.line,fromLayer:a,toLayer:l,target:i.sourceIntent,message:`Publish source "${i.sourceIntent}" resolves to ${l}, but the publishing file is classified as ${a}.`})}for(let i of t.intentReferences){let a=n.get(i.file);if(!a)continue;let l=Us(i.intent,e.contract);if(!l)continue;let c=ze(e.contract.config.rules,a,l,{fromPath:i.file,layers:e.contract.config.layers});if(!c)continue;let p=c.rule.peerIsolation?dt(c.peerIsolationReason??"cross-slice",{fromPath:i.file,fromSlice:c.fromSlice,toSlice:c.toSlice}):void 0,g=`${a} must not reference ${l} intent ${i.intent}.`,h=p&&c.peerIsolationReason!=="cross-slice"?`${g} ${p}`:c.rule.message?p?`${c.rule.message} (${p})`:c.rule.message:g;r.push({ruleId:"LAYER_INTENT_REFERENCE_VIOLATION",file:i.file,line:i.line,fromLayer:a,toLayer:l,target:i.intent,...c.rule.peerIsolation?{peerIsolation:!0}:{},message:h})}return r}s(Kc,"contentViolations");function Hc(e){let{facts:t}=e,n=kt(e.contract.config),r=t.evidenceRequirementsHash===n,o=r?t.completeness:"unavailable",i=r?t.completenessReasons:[...t.completenessReasons,{code:"EVIDENCE_REQUIREMENTS_MISMATCH",message:"Resolved facts were collected for different policy-controlled evidence requirements."}].sort((d,_)=>{let $=`${d.code}\0${d.file??""}\0${d.message}`,ie=`${_.code}\0${_.file??""}\0${_.message}`;return $<ie?-1:$>ie?1:0}),a=t.files.map(d=>({...d,layer:ce(d.path,e.contract.config.layers)??null})),l=new Map(a.map(d=>[d.path,d.layer])),c=t.dependencies.map(d=>{let _=d.target?l.get(d.target)??ce(d.target,e.contract.config.layers):void 0;return{from:d.from,fromLayer:l.get(d.from)??null,...d.resolution==="resolved-project"&&d.target?{to:d.target,..._?{toLayer:_}:{}}:{},line:d.line,kind:d.kind,typeOnly:d.typeOnly,...d.targetTypeOnlyExports?{targetTypeOnlyExports:d.targetTypeOnlyExports}:{},...d.sourcePureTypeModule?{sourcePureTypeModule:d.sourcePureTypeModule}:{},...d.namedBindingsTypeOnly?{namedBindingsTypeOnly:d.namedBindingsTypeOnly}:{},...d.portProofEligible?{portProofEligible:d.portProofEligible}:{}}}),p=In({config:e.contract.config,rules:e.contract.config.rules,files:a.map(d=>d.path)}),g=Mc(e,t),h=e.contract.arkRules??yn(),u=a.map(d=>d.path),m={...e.coverageInputs?.fileContents&&Object.keys(e.coverageInputs.fileContents).length>0?ws(e.coverageInputs.fileContents):{},...e.fileHints??{}},y=[...vs({arkRules:h,classShapes:e.contract.classShapes??t.classShapes??[],files:u,layerForFile:s(d=>l.get(d)??ce(d,e.contract.config.layers),"layerForFile"),fileHints:m}),...Ss(h,u)],v=y.filter(d=>d.failsStrict).map(d=>Hs(d,d.ruleId==="ARKRULE_SCOPE_EMPTY"?`Fix appliesTo globs for ${d.arkruleId} in ${d.arkruleSource} so they match governed files, or remove the rule. ARKRULE_SCOPE_EMPTY is a config diagnostic and is not freezable (even with --force). Land the rule as advisory until the folder exists, then promote.`:`Fix the structure or invariant for ${d.arkruleId} (declared in ${d.arkruleSource}), then preflight again.`)),E=y.filter(d=>!d.failsStrict).map(d=>({...Hs(d,d.ruleId==="ARKRULE_SCOPE_EMPTY"?`Review appliesTo for ${d.arkruleId} in ${d.arkruleSource} (zero-match scope; advisory). Empty scope is not freezable; promote only after the folder exists.`:`Review ArkRule ${d.arkruleId} in ${d.arkruleSource} (advisory).`),failsStrict:!1})),b=(h.invariants?.length??0)>0?ss({arkRules:h,fileContents:e.coverageInputs?.fileContents??{},testFiles:e.coverageInputs?.testFiles??[],testGlobsMissing:e.coverageInputs?.testGlobsMissing===!0||e.coverageInputs===void 0||(e.coverageInputs.testFiles?.length??0)===0,coverageBudgetExhausted:e.coverageInputs?.coverageBudgetExhausted===!0,...e.coverageInputs?.stats?{coverageStats:e.coverageInputs.stats}:{},...e.coverageInputs?.coverageRoots?{coverageRoots:e.coverageInputs.coverageRoots}:{}}):{coverage:[],violations:[],partial:!1},w=b.violations.filter(d=>d.failsStrict).map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,arkruleId:d.arkruleId,arkruleSource:d.arkruleSource,nextAction:`Add a test title or declared symbol covering ${d.arkruleId} (declared in ${d.arkruleSource}), then preflight again.`})),N=b.violations.filter(d=>!d.failsStrict).map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,arkruleId:d.arkruleId,arkruleSource:d.arkruleSource,failsStrict:!1,nextAction:d.ruleId==="INVARIANT_COVERAGE_OUTSIDE_ROOTS"?`Move ${d.file} under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json.`:`Cover invariant ${d.arkruleId} in ${d.arkruleSource} (advisory / partial).`})),I=Cs(a),T=Ds({arkRun:e.contract.config.arkRun,layers:e.contract.config.layers,kernelCalls:t.arkRunKernelCalls,managedNews:t.arkRunManagedNews,compositionRootHits:t.arkRunCompositionRootHits,declarations:t.arkRunDeclarations,dependencies:t.dependencies,layerForFile:s(d=>l.get(d)??ce(d,e.contract.config.layers),"layerForFile"),classification:I}),te=e.contract.config.arkRun?.mode,ye=T.findings.filter(()=>te==="enforced").map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,target:d.target,nextAction:d.nextAction,sensor:d.sensor,failsStrict:d.failsStrict,...d.severity?{severity:d.severity}:{}})),st=T.findings.filter(()=>te!=="enforced").map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,target:d.target,nextAction:d.nextAction,sensor:d.sensor,failsStrict:!1})),D=Ks({arkOrder:e.contract.config.arkOrder,layers:e.contract.config.layers,planeCalls:t.arkOrderPlaneCalls,genericUpdates:t.arkOrderGenericUpdates,planeRootHits:t.arkOrderRootHits,xiFieldWrites:t.arkOrderXiFieldWrites,ingestWritesXi:t.arkOrderIngestWritesXi,releaseKeyCounts:t.arkOrderReleaseKeyCounts,dependencies:t.dependencies,layerForFile:s(d=>l.get(d)??ce(d,e.contract.config.layers),"layerForFile"),classification:I}),ue=e.contract.config.arkOrder?.mode,Z=D.findings.filter(()=>ue==="enforced").map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,target:d.target,nextAction:d.nextAction,sensor:d.sensor,failsStrict:d.failsStrict,...d.severity?{severity:d.severity}:{}})),at=D.findings.filter(()=>ue!=="enforced").map(d=>({ruleId:d.ruleId,file:d.file,line:d.line,message:d.message,fromLayer:d.fromLayer,target:d.target,nextAction:d.nextAction,sensor:d.sensor,failsStrict:!1})),Kt=[...b.partial&&b.coverage.some(d=>d.mode==="enforced"&&d.partial)?[{code:"INVARIANT_COVERAGE_PARTIAL",message:"Enforced ArkRules invariant coverage cannot be fully proven (missing test globs or empty test set); reporting partial, never covered."}]:[],...T.completenessReasons,...D.completenessReasons],Ke=tt({config:e.contract.config,rules:e.contract.config.rules,files:a.filter(d=>d.layer).map(d=>d.path),contentViolations:[...Kc(e,t,l),...v,...w,...ye,...Z],edges:c,warnings:[...p,...g.warnings,...E,...N,...st,...at],safety:g.report}),Vn=o==="complete"&&Kt.length>0?"partial":o,Hr=Vn==="complete"?i:[...i,...Kt].sort((d,_)=>{let $=`${d.code}\0${d.file??""}\0${d.message}`,ie=`${_.code}\0${_.file??""}\0${_.message}`;return $<ie?-1:$>ie?1:0}),S=Ke.violations.filter(d=>d.failsStrict!==!1),C=Vn==="complete"&&S.length===0,R=C&&Ke.warnings.every(d=>d.failsStrict===!1);return{mode:"resolved-candidate-facts",completeness:Vn,completenessReasons:Hr,valid:C,strictValid:R,policyHash:e.contract.policyHash,factsHash:t.factsHash,resolverIdentity:t.resolverIdentity,candidateTreeHash:t.candidateTreeHash,safety:g.report,ir:{schemaVersion:"1.0",policyHash:e.contract.policyHash,compilerOptionsHash:t.compilerOptionsHash,files:a,layers:e.contract.config.layers.map(d=>d.name),edges:c,capabilityUses:t.capabilityUses,violations:Ke.violations,warnings:Ke.warnings}}}s(Hc,"analyzeCanonicalResolvedProject");function Et(e){return Hc({contract:e.contract,facts:Ee(e.facts),coverageInputs:e.coverageInputs,fileHints:e.fileHints})}s(Et,"analyzeResolvedProject");function Gs(e){return W(F(e.map(({path:t,contentHash:n})=>({path:t,contentHash:n}))))}s(Gs,"analysisTreeHash");function To(e){let t=It(e),n=new Map(t.ir.files.map(m=>[m.path,m])),r=[],o=new Set,i=[];for(let m of e.changes){let y=m.path.replace(/\\/g,"/"),v=et(m.path);if(!v||v===".."||v.startsWith("../")||y.startsWith("/")||/^[A-Za-z]:\//.test(y)||y.includes("\0")){i.push({ruleId:"INVALID_CHANGE_PATH",file:"<change-set>",line:1,message:"Every change requires a safe, non-empty project-relative path."});continue}if(o.has(v)){i.push({ruleId:"DUPLICATE_CHANGE_PATH",file:v,line:1,message:`The atomic change set contains more than one operation for ${v}.`});continue}o.add(v),"delete"in m&&m.delete&&!n.has(v)&&i.push({ruleId:"DELETE_TARGET_MISSING",file:v,line:1,message:`Cannot delete ${v} because it is not present in the supplied base tree.`}),r.push("delete"in m&&m.delete?{path:v,delete:!0}:{path:v,content:"content"in m?m.content:""})}e.changes.length===0&&i.push({ruleId:"CHANGE_SET_EMPTY",file:"<change-set>",line:1,message:"Atomic preflight requires at least one create, update, or delete."});let a=kn({...e,changes:r}),l=new Map(a.ir.files.map(m=>[m.path,m])),c=a.ir.violations.filter(m=>m.ruleId==="CAPABILITY_VIOLATION"||m.ruleId==="FORBIDDEN_GLOBAL").map(m=>{let y=l.get(m.evidence.file)?.layer;return{ruleId:m.ruleId,file:m.evidence.file,line:m.evidence.line,target:m.symbol,...m.capability?{capability:m.capability}:{},...y?{fromLayer:y}:{},edgeKind:"import",message:m.message}}),p=tt({config:e.contract.config,rules:e.contract.config.rules,files:a.ir.files.map(m=>m.path),contentViolations:c,edges:a.ir.edges.filter(m=>!!m.fromLayer).map(m=>({from:m.from,fromLayer:m.fromLayer,...m.to?{to:m.to}:{},...m.toLayer?{toLayer:m.toLayer}:{},line:m.evidence.line,kind:"import",...m.typeOnly?{typeOnly:!0}:{},...m.namedBindingsTypeOnly?{namedBindingsTypeOnly:!0}:{}}))}),g=r.map(m=>{let y=et(m.path),v=n.get(y),E=l.get(y);return{path:y,operation:"delete"in m&&m.delete?"delete":v?"update":"create",...v?{beforeContentHash:v.contentHash}:{},...E?{candidateContentHash:E.contentHash}:{}}}).sort((m,y)=>m.path.localeCompare(y.path)),h=[...i,...p.violations].map(m=>({...m,nextAction:pe(m)})),u=h.filter(m=>m.failsStrict!==!1),f=e.changeMap?Qe({changeMap:e.changeMap,changes:g,baseDependencies:t.ir.edges.flatMap(m=>m.to?[{from:m.from,to:m.to}]:[]),candidateDependencies:a.ir.edges.flatMap(m=>m.to?[{from:m.from,to:m.to}]:[])}):void 0;return{schemaVersion:"1.0",mode:"lexical-compatibility",valid:t.completeness==="complete"&&a.valid&&u.length===0&&(f?.structurallyConverged??!0),readOnly:!0,policyHash:e.contract.policyHash,compilerOptionsHash:a.ir.compilerOptionsHash,baseTreeHash:Gs(t.ir.files),candidateTreeHash:Gs(a.ir.files),baseCompleteness:t.completeness,candidateCompleteness:a.completeness,baseCompletenessReasons:t.completenessReasons,candidateCompletenessReasons:a.completenessReasons,...e.changeMap?{changeMapHash:e.changeMap.hash}:{},...f?{convergence:f}:{},changes:g,violations:h,warnings:p.warnings}}s(To,"preflightChange");function Uc(e){let t=e.replace(/\\/g,"/");if(!t||t.startsWith("/")||/^[A-Za-z]:\//.test(t)||t.includes("\0"))return;let n=[];for(let o of t.split("/"))if(!(!o||o==="."))if(o===".."){if(n.length===0)return;n.pop()}else n.push(o);let r=n.join("/");return r&&r===t?r:void 0}s(Uc,"canonicalChangePath");function Gc(e,t){return[["resolverIdentity",e.resolverIdentity,t.resolverIdentity],["compilerIdentity",e.compilerIdentity,t.compilerIdentity],["evidenceRequirementsHash",e.evidenceRequirementsHash,t.evidenceRequirementsHash],["projectPackageName",e.projectPackageName??"",t.projectPackageName??""]].filter(([,r,o])=>r!==o).map(([r,o,i])=>({ruleId:"FACTS_IDENTITY_MISMATCH",file:"<change-set>",line:1,field:r,before:o,candidate:i,message:`Base and candidate facts must use the same ${r}.`}))}s(Gc,"identityViolations");function Vc(e,t,n,r){let o=n.get(t),i=r.get(t);return{path:t,operation:"delete"in e&&e.delete?"delete":o?"update":"create",...o?{beforeContentHash:o.contentHash}:{},...i?{candidateContentHash:i.contentHash}:{}}}s(Vc,"preparedChange");function No(e){let t=Ee(e.baseFacts),n=Ee(e.candidateFacts),r=Et({contract:e.contract,facts:t}),o=Et({contract:e.contract,facts:n}),i=new Map(t.files.map(f=>[f.path,f])),a=new Map(n.files.map(f=>[f.path,f])),l=Gc(t,n),c=new Map,p=[];for(let f of e.changes){let m=Uc(f.path);if(!m){l.push({ruleId:"INVALID_CHANGE_PATH",file:"<change-set>",line:1,message:"Every change requires a canonical project-relative path."});continue}if(c.has(m)){l.push({ruleId:"DUPLICATE_CHANGE_PATH",file:m,line:1,message:`The atomic change set contains more than one operation for ${m}.`});continue}c.set(m,f);let y=i.get(m),v=a.get(m);if("delete"in f&&f.delete)y||l.push({ruleId:"DELETE_TARGET_MISSING",file:m,line:1,message:`Cannot delete ${m} because it is not present in the supplied base facts.`}),v&&l.push({ruleId:"CANDIDATE_DELETE_NOT_APPLIED",file:m,line:1,message:`Candidate facts still contain deleted file ${m}.`});else{let E="content"in f?f.content:"",A=W(E);v?v.contentHash!==A&&l.push({ruleId:"CANDIDATE_CONTENT_HASH_MISMATCH",file:m,line:1,expectedContentHash:A,candidateContentHash:v.contentHash,message:`Candidate facts for ${m} do not match the declared content.`}):l.push({ruleId:"CANDIDATE_CHANGE_MISSING",file:m,line:1,message:`Candidate facts do not contain changed file ${m}.`})}p.push(Vc(f,m,i,a))}e.changes.length===0&&l.push({ruleId:"CHANGE_SET_EMPTY",file:"<change-set>",line:1,message:"Atomic preflight requires at least one create, update, or delete."});for(let f of new Set([...i.keys(),...a.keys()])){if(c.has(f))continue;let m=i.get(f),y=a.get(f);m&&y&&F(m)===F(y)||l.push({ruleId:"UNDECLARED_CANDIDATE_CHANGE",file:f,line:1,message:`Candidate facts change ${f}, but the atomic change set does not declare it.`})}let g=e.changeMap?Qe({changeMap:e.changeMap,changes:p,baseDependencies:r.ir.edges.flatMap(f=>f.to?[{from:f.from,to:f.to}]:[]),candidateDependencies:o.ir.edges.flatMap(f=>f.to?[{from:f.from,to:f.to}]:[])}):void 0,h=[...l,...o.ir.violations].map(f=>({...f,nextAction:pe(f)})),u=h.filter(f=>f.failsStrict!==!1);return{schemaVersion:"1.0",mode:"resolved-candidate-facts",valid:r.completeness==="complete"&&o.strictValid&&u.length===0&&(g?.structurallyConverged??!0),readOnly:!0,policyHash:e.contract.policyHash,resolverIdentity:n.resolverIdentity,compilerIdentity:n.compilerIdentity,compilerOptionsHash:n.compilerOptionsHash,tsconfigHash:n.tsconfigHash,baseCompilerOptionsHash:t.compilerOptionsHash,candidateCompilerOptionsHash:n.compilerOptionsHash,baseTsconfigHash:t.tsconfigHash,candidateTsconfigHash:n.tsconfigHash,evidenceRequirementsHash:n.evidenceRequirementsHash,baseFactsHash:t.factsHash,candidateFactsHash:n.factsHash,baseTreeHash:t.candidateTreeHash,candidateTreeHash:n.candidateTreeHash,baseCompleteness:r.completeness,candidateCompleteness:o.completeness,baseCompletenessReasons:r.completenessReasons,candidateCompletenessReasons:o.completenessReasons,...e.changeMap?{changeMapHash:e.changeMap.hash}:{},...g?{convergence:g}:{},changes:p.sort((f,m)=>f.path<m.path?-1:f.path>m.path?1:0),violations:h,warnings:o.ir.warnings}}s(No,"preflightResolvedChange");var Ar="docs/diagnostics.md",Vs="1.0";function k(e,t,n,r,o,i){return{ruleId:e,title:n,why:r,fix:o,docsAnchor:e,category:t,...i?.oftenAdvisory?{oftenAdvisory:!0}:{}}}s(k,"entry");var bn=Object.freeze([k("LAYER_IMPORT_VIOLATION","layer","Layer import not allowed","A module import (or re-export) crosses a layer edge that ark.config.json does not allow. The architecture contract forbids that dependency direction so outer infrastructure cannot leak into pure or inner layers.","Branch by import kind: constants/types/pure \u2192 adopt into DomainModel or SharedKernel (do not invent a port); kernel/events/bootstrap from Persistence \u2192 inject a port or move the map to SharedTypes (Persistence must not emit); define a port only when the target is a real use-case. Type-only edges use `import type`. Then preflight again. Do not weaken the layer rule without a hash-bound policy acknowledgement."),k("LAYER_INTENT_REFERENCE_VIOLATION","layer","Intent referenced across a blocked layer edge","A string intent (or intent-like reference) names a layer that the file\u2019s layer may not reach under the contract rules \u2014 the same plane as import edges, for event/intent coupling.","Reference that intent from a layer allowed to know about it (usually an adapter or application layer), or relocate the reference \u2014 then preflight again."),k("LAYER_REFERENCE_VIOLATION","layer","Layer reference blocked (snippet / AI gate)","Snippet analysis found an intent or string reference that would couple layers in a direction the architecture profile forbids.","Move the reference to an allowed layer or introduce a port/event boundary, then re-run the snippet gate."),k("CIRCULAR_DEPENDENCY","layer","Dependency cycle","Two or more modules import each other in a loop. Cycles make ownership unclear and break stable layer direction.","Extract the shared dependency into a third module, invert one edge behind a port, or merge units that are truly one \u2014 then preflight again."),k("FORBIDDEN_GLOBAL","capability","Forbidden ambient global or dual import","The file\u2019s layer lists this ambient (or its exact import dual, e.g. process / node:process) in forbiddenGlobals. Pure layers must not reach wall-clock, network, process, or similar effects directly.","Inject the capability through a small port (Clock, HttpPort, Config, \u2026), bind the implementation outside the walled layer, then preflight again."),k("CAPABILITY_VIOLATION","capability","Denied effect capability","The layer denies an effect capability (network, filesystem, clock, randomness, environment, process, persistence) and the candidate uses that effect via ambient or import evidence.","Define a capability port in the walled layer, bind the implementation in an adapter layer, then preflight again. Never mechanical-safe \u2014 port shape is a design decision."),k("RAW_EVENT_PUBLISH","publish","Raw event publish","Publish went through a raw string or object instead of a registered intent creator, bypassing Ark intent contracts and tooling.","Publish through a registered intent creator, then run Ark again."),k("PUBLISH_MISSING_SOURCE","publish","Publish missing metadata.source","A strict Ark publish call omitted metadata.source, so the publishing layer cannot be verified.","Add metadata.source to the publish call, then run Ark again."),k("PUBLISH_SOURCE_LAYER_MISMATCH","publish","Publish source layer mismatch","metadata.source resolves to a different layer than the file performing the publish.","Use a source intent owned by the same layer as this file, or move the publish call to the owning layer."),k("UNKNOWN_INTENT","publish","Unknown intent reference","Snippet analysis saw an intent string that is not registered in the intent registry / profile under check.","Register the intent or use a known intent name from the project registry, then re-run the gate."),k("DYNAMIC_IMPORT_NOT_ALLOWLISTED","safety","Non-literal dynamic import","A dynamic import(expr) cannot be resolved statically and the file is not on dynamicImportAllowlist. Unresolved dynamics can hide layer edges.","Rewrite to a static import when possible, or add only reviewed files to dynamicImportAllowlist after human sign-off."),k("DYNAMIC_REQUIRE_NOT_ALLOWLISTED","safety","Non-literal require","A require(expr) cannot be resolved statically and is not allowlisted \u2014 same hide-the-edge risk as dynamic import.","Prefer static import, or allowlist only reviewed files after sign-off."),k("TS_SUPPRESSION_THRESHOLD_EXCEEDED","safety","@ts-ignore / @ts-nocheck threshold","Count of TypeScript suppressions in governed production source exceeds safety.maxTsSuppressions.","Remove suppressions by fixing types, or raise the threshold only with an explicit production exception in ark.config.json."),k("ANY_CAST_THRESHOLD_EXCEEDED","safety","Explicit any cast threshold","Count of explicit any casts exceeds safety.maxAnyCasts.","Replace any with precise types, or raise the threshold only with a documented exception."),k("IN_MEMORY_STORE_IN_PRODUCTION_SOURCE","safety","In-memory store in production source","Governed production source references an Ark InMemory* store without safety.allowInMemory \u2014 durable systems should not ship ephemeral stores by accident.","Provide a durable store implementation, or set safety.allowInMemory only for an explicitly ephemeral service."),k("PEER_ISOLATION_DISABLED","safety","peerIsolation disabled on a rule","A same-layer or peer rule disables peerIsolation (or omits it where required), which allows cross-slice coupling the contract otherwise blocks.","Restore peerIsolation: true, or set safety.allowDisabledPeerIsolation only with a documented production exception."),k("ARKRULE_STRUCTURE","arkrules","ArkRule structure sensor failed","An opt-in ArkRules structure sensor (private state, factory shape, event publish, persistence write outside an aggregate, \u2026) failed on a governed file for a declared arkruleId.","Restore the declared structure for the ArkRule (see arkruleSource), then preflight again. Do not demote the rule without a hash-bound policy acknowledgement."),k("ARKRULE_INVARIANT","arkrules","ArkRule invariant failed","Reserved / remediation-recognized code for invariant-plane failures bound to an ArkRule id (coverage path also emits INVARIANT_UNCOVERED).","Fix the invariant for the ArkRule declared in arkrules/<Layer>.json, then preflight again. Do not demote without acknowledgement."),k("ARKRULE_SCOPE_EMPTY","arkrules","ArkRule appliesTo matched zero files","An ArkRule\u2019s appliesTo globs matched no governed files \u2014 the rule cannot observe what it claims to protect.","Fix appliesTo globs so they match governed files, or remove the rule. Enforced empty scope fails; advisory empty scope warns.",{oftenAdvisory:!0}),k("ARKRULE_HINT_BUDGET_EXHAUSTED","arkrules","Structural-hint budget exhausted","orchestration-only, thin-adapter, and writes-via-aggregate only evaluate files the hint loader preloaded. When eligible governed files exceed that budget (coverage.maxFiles, default 400 \u2014 there is no arkrules.hintBudget), those sensors never saw the rest of their scope. Enforced + unreviewed is not green. The finding names exact hinted/governed counts and per-sensor reviewed N/M of scope.","Raise coverage.maxFiles in ark.config.json (this cap also bounds structural-hint preload; --doctor names the coupling) so hinted/governed counts match, then re-run with --strict-config. An enforced hint sensor that cannot see its scope fails strict."),k("INVARIANT_UNCOVERED","arkrules","Invariant without coverage evidence","An ArkRules invariant is under contract but no covering test title or declared symbol evidence was found (or coverage is partial). Kind is never-had-tests (adopt residual) vs tests-disappeared (suite exists).","Add a test title or declared symbol covering the arkruleId, then preflight again. Treat never-had-tests as adopt residual; treat tests-disappeared as a regression. Missing test globs report partial \u2014 never fake green. When the message reports an exhausted file budget, raise coverage.maxFiles (or narrow coverage.testGlobs) in ark.config.json."),k("INVARIANT_COVERAGE_OUTSIDE_ROOTS","arkrules","Covering test outside the declared coverage roots","The only test naming this invariant sits outside coverage.coverageRoots \u2014 the places the project declares its runner executes. ArkGate matches declared text and never executes tests, so it cannot tell whether that file is ever run: coverage there is a test that exists, not a test that runs.","Move the test under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json. Advisory: it never fails strict, but promotion to enforced refuses on it.",{oftenAdvisory:!0}),k("ARKRUN_MISSING_ROOT","arkrun","No kernel factory in composition roots","The ArkRun extra is on but no createArkKernel / createStrictArkKernel / createArkKernelFromConfig / createStrictArkKernelFromConfig factory was found in arkRun.compositionRoots, so agents can skip the kernel while the write gate stays green.","Import createStrictArkKernel from arkgate/runtime (same npm package; @arkgate/runtime is deprecated) and call it in a composition root listed in arkRun.compositionRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision."),k("ARKRUN_KERNEL_IN_DOMAIN","arkrun","Domain-role layer imports the kernel","A Domain-role layer imports arkgate/runtime, @arkgate/runtime, or kernel types. Domain stays kernel-free; composition roots and adapters own the factory.","Move the kernel import out of the Domain-role layer into a composition root or adapter. Import from arkgate/runtime (same npm package; @arkgate/runtime is deprecated), then preflight again. Never mechanical-safe."),k("ARKRUN_DIRECT_NEW","arkrun","Managed type constructed with new","A managed non-Domain file constructs an admitted type with new outside an ArkRun composition-root factory, skipping kernel resolve/registration.","Resolve the type from the kernel instead of constructing it with new, then preflight again. Never mechanical-safe \u2014 rewiring construction is a design decision."),k("ARKRUN_UNDECLARED_EMIT","arkrun","Emit name not in raises/sends","A publisher / publish / raise / send call-site literal is not listed in the file\u2019s raises or sends declaration.","Add the existing call-site name to raises or sends on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new emit stays judgment."),k("ARKRUN_UNDECLARED_HANDLE","arkrun","Handle name not in reactsTo","A subscribe / registerHandler call-site literal is not listed in the file\u2019s reactsTo declaration.","Add the existing call-site name to reactsTo on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new handle stays judgment."),k("ARKRUN_UNDECLARED_DEPEND","arkrun","Depend name not in uses","A resolve / resolveSingleton call-site literal is not listed in the file\u2019s uses declaration.","Add the existing call-site name to uses on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new depend stays judgment."),k("ARKRUN_TRANSPORT_BYPASS","arkrun","Homemade broker or emitter import","A managed layer imports a closed broker/queue/emitter specifier (EventEmitter, queue clients, \u2026) instead of the ArkRun kernel transport.","Send through the ArkRun kernel transport instead of importing that broker or emitter, then preflight again. Never mechanical-safe \u2014 homemade buses stay judgment."),k("ARKORDER_MISSING_PLANE","arkorder","No createOrderPlane in plane roots","The ArkOrder extra is on but no createOrderPlane factory was found in arkOrder.planeRoots, so agents can skip the pattern plane while the write gate stays green.","Import createOrderPlane from arkgate/order and call it in a plane root listed in arkOrder.planeRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision."),k("ARKORDER_KERNEL_IN_DOMAIN","arkorder","Domain-role layer imports the order plane","A Domain-role layer imports arkgate/order. Domain stays plane-free; planeRoots own the factory.","Move the arkgate/order import out of the Domain-role layer into a plane root or adapter, then preflight again. Never mechanical-safe."),k("ARKORDER_GENERIC_UPDATE","arkorder","Generic update of a big product choice","A call to update/patch/set rewrites a named product choice (like billing plan) as if it were a seat count.","Don't use a generic update. First freeze with release(). Later, propose the change, then apply it."),k("ARKORDER_TOO_MANY_PARAMS","arkorder","Too many slow keys","\u03BE has more keys than arkOrder.maxXiKeys. Haken requires a few slow modes, not a dump of microstate.","Cut \u03BE to the slow keys that actually slave the rest, then preflight again. Never mechanical-safe."),k("ARKORDER_INGEST_WRITES_XI","arkorder","ingest assigned into \u03BE","An ingest() result is written into a Release or \u03BE store. ingest may absorb, escalate_up, or hold; it never mints a pattern.","Keep ingest results as absorb/escalate_up/hold only. Change \u03BE with proposeRelease then apply(ProposeResult). Never mechanical-safe."),k("ARKORDER_XI_FIELD_WRITE","arkorder","Big product choice written like a seat count","A use-case writes a named product choice (like billing plan) through a database update. Invoices and seats can flow. That choice cannot.","Keep invoices and seats as events. Change the choice through the valve (proposeRelease then apply), not a generic update."),k("ARKORDER_INFORMATION_BUDGET","arkorder","Projection observes a forbidden kind","h(\u03BE) allowedKinds includes a kind listed in informationBudget.cannotObserve. A scale may not look at what it was told not to see.","Cut that kind from the projector or from cannotObserve, then preflight again. Never mechanical-safe."),k("ARKORDER_XI_TTL","arkorder","Slow key carries a freshness field","\u03BE named ttl/freshUntil/maxAge. Freshness belongs on \u03C3. A slow parameter that expires per transaction is not slow.","Move freshness onto \u03C3 (freshUntil) and keep \u03BE stable, then preflight again. Never mechanical-safe."),k("ARKORDER_STALE_SIGMA","arkorder","\u03C3 is stale","ingest ran after \u03C3.freshUntil (or sigmaMaxAgeMs). \u03BE does not TTL.","Call refreshSigma and ingest again, or proposeRelease then apply(ProposeResult) if the pattern changed. Never mechanical-safe."),k("ARKORDER_UNVALVED_RELEASE","arkorder","Unvalved second freeze of \u03BE","release() ran after a pattern was already frozen and the new \u03BE differs. First freeze is release(); later pattern change is proposeRelease then apply.","Change \u03BE with proposeRelease then apply(ProposeResult). release() is only the first freeze. Never mechanical-safe."),k("INVALID_CHANGE_PATH","preflight","Unsafe change path","A change set entry is not a safe, non-empty project-relative path (absolute, escape, empty, or NUL).","Use canonical project-relative paths only in the atomic change set, then preflight again."),k("DUPLICATE_CHANGE_PATH","preflight","Duplicate path in change set","The atomic change set lists more than one operation for the same path.","Collapse to one create/update/delete per path, then preflight again."),k("DELETE_TARGET_MISSING","preflight","Delete target missing","A delete operation targets a path that is not present in the supplied base tree.","Remove the delete, or include the file in the base tree facts, then preflight again."),k("CHANGE_SET_EMPTY","preflight","Empty change set","Atomic preflight was invoked with no create, update, or delete operations.","Provide at least one change operation, then preflight again."),k("FACTS_IDENTITY_MISMATCH","preflight","Base/candidate facts identity mismatch","Base and candidate resolved facts disagree on resolver, compiler, evidence requirements, or package identity \u2014 verdicts would not be comparable.","Regenerate both fact snapshots with the same resolver/compiler/evidence requirements, then preflight again."),k("CANDIDATE_DELETE_NOT_APPLIED","preflight","Candidate still contains deleted path","Facts claim a delete, but the candidate tree still includes the path.","Ensure the candidate facts apply the delete (path absent), then preflight again."),k("CANDIDATE_CHANGE_MISSING","preflight","Declared change missing from candidate","The change set declares a create/update whose path is missing from candidate facts.","Include the new content in the candidate facts (or drop the operation), then preflight again."),k("CANDIDATE_CONTENT_HASH_MISMATCH","preflight","Candidate content hash mismatch","The candidate file content hash does not match the hash expected for the declared change.","Rebuild candidate facts from the exact proposed content, then preflight again."),k("UNDECLARED_CANDIDATE_CHANGE","preflight","Undeclared candidate change","Candidate facts differ from base for a path that was not listed in the explicit change set.","Declare every path that changes in the atomic change set, then preflight again."),k("ATOMIC_PREFLIGHT_UNAVAILABLE","preflight","Atomic preflight unavailable","The host/MCP path could not run the atomic preflight engine (missing facts, incomplete setup, or unsupported mode).","Use resolved-candidate facts / ark_prepare_change with a complete batch, or fall back to ark-check on disk. Do not treat missing preflight as green."),k("DESIGN_SMELL_REGRESSION","preflight","Design smell regression on base-relative ratchet","Compared to the base ref, the candidate introduces a created-path domain-logic-in-ui file under --strict-merge, or introduces or worsens a blocking design-smell class under --fail-on-new-smells.","Move the new UI business rule out of the created file (or revert a --fail-on-new-smells regression), then re-run with the same base ref."),k("ANALYSIS_PARSE_INCOMPLETE","analysis","Parse incomplete","Governed source could not be fully parsed; evidence includes the TypeScript diagnostic (line + message). Incremental mid-edit parse is normal for agents. Contract exclude paths skip the write hook.","Finish the source or fix the reported syntax error, then re-run `npx arkgate-check`. The write hook does not deny solely on mid-edit parse. Partial never means pass."),k("LEXICAL_EVIDENCE_INCOMPLETE","analysis","Lexical evidence incomplete","Single-file validation cannot prove project module resolution. The write hook is already the verdict.","Re-run `npx arkgate-check --root . --config ark.config.json`, or treat the hook deny as final. Do not call ark_prepare_change from a hook deny."),k("ANALYSIS_COVERS_NO_FILES","analysis","Analysis covered no files","No file matched the contract include and layer patterns under the analyzed root, so the run had nothing to check. Every rule is vacuously satisfied on an empty set: a green here would read exactly like a green over a governed tree while certifying nothing. Usual causes are a --root that is not the tree the contract describes (including a contract found outside the requested root, whose directory is then adopted as the project root), include / exclude patterns that match nothing, or layer patterns written for a different layout.","Point --root at the tree the contract describes, or keep the contract inside that tree, or fix the include / exclude / layer patterns so they match real files \u2014 then re-run `npx arkgate-check --root . --config ark.config.json`. This is a refusal about ArkGate\u2019s own inputs, not a finding about your code; no baseline or policy acknowledgement can suppress it."),k("ANALYSIS_HOST_UNAVAILABLE","analysis","Analysis host unavailable","No usable TypeScript / analysis host was available for this invocation.","Install a supported TypeScript version visible to the project, then re-run. Unavailable analysis is fail-closed."),k("ADAPTER_NOT_ALLOWED_FOR_PORT","adapter","Adapter not allowed for port","Runtime/port wiring selected an adapter implementation that the architecture profile does not allow for that port.","Bind an allowed adapter for the port, or adjust the profile with an explicit policy decision \u2014 then re-run."),k("FORBIDDEN_PATTERN","snippet-policy","Forbidden regex pattern","Snippet content matched a project or profile forbiddenPatterns rule.","Remove or rewrite the matching code so the pattern no longer matches, then re-run the snippet gate."),k("FORBIDDEN_SUBSTRING","snippet-policy","Forbidden substring","Snippet content contained a forbidden substring from the AI gate options/profile.","Remove the forbidden substring, then re-run the snippet gate."),k("FORBIDDEN_IMPORT","snippet-policy","Forbidden import target","Snippet imported or required a module listed as forbidden for the active profile.","Import an allowed module or inject the dependency behind a port, then re-run."),k("POLICY_VIOLATION","snippet-policy","Policy engine violation","A registered Policy failed on the snippet or generated code under evaluation.","Adjust the code to satisfy the named policy, or change the policy only through an explicit contract decision."),k("EXTENSION_ERROR","snippet-policy","AI gate extension error","A registered AICodeGate extension threw while analyzing the snippet.","Fix or remove the failing extension; do not ignore extension failures as pass."),k("AST_ANALYZER_ERROR","snippet-policy","AST analyzer error","Built-in AST/symbol analysis failed (host error or unexpected analyzer exception).","Ensure TypeScript host and snippet are valid; re-run. If the analyzer crashes on valid input, file a bug with a minimal fixture."),k("CONFIG_INVALID_DYNAMIC_IMPORT_ALLOWLIST","config","Invalid dynamicImportAllowlist","dynamicImportAllowlist is present but not an array of file globs.","Set dynamicImportAllowlist to an array of project-relative globs (or omit it).",{oftenAdvisory:!0}),k("CONFIG_INVALID_SAFETY","config","Invalid safety object","The safety field is present but not an object.","Use a safety object with optional maxTsSuppressions, maxAnyCasts, allowInMemory, allowDisabledPeerIsolation.",{oftenAdvisory:!0}),k("CONFIG_INVALID_SAFETY_THRESHOLD","config","Invalid safety threshold","A safety threshold (maxTsSuppressions / maxAnyCasts) is not a non-negative integer.","Set each threshold to a non-negative integer.",{oftenAdvisory:!0}),k("CONFIG_NO_LAYERS","config","No layers configured","ark.config.json has no file layers, so import-boundary enforcement cannot classify files.","Declare at least one layer with name + patterns (or run ark start / a preset).",{oftenAdvisory:!0}),k("CONFIG_LAYER_WITHOUT_NAME","config","Layer missing name","A configured layer entry has no name.","Give every layer a unique non-empty name.",{oftenAdvisory:!0}),k("CONFIG_INVALID_FORBIDDEN_GLOBALS","config","Invalid forbiddenGlobals","A layer\u2019s forbiddenGlobals is not an array of strings; the entry is ignored.",'Use an array of strings (e.g. ["fetch", "Date.now"]).',{oftenAdvisory:!0}),k("CONFIG_LAYER_WITHOUT_PATTERNS","config","Layer without patterns","A named layer has no file patterns and will never classify files.","Add patterns globs that match the layer\u2019s source tree.",{oftenAdvisory:!0}),k("CONFIG_INVALID_LAYER_PATTERN","config","Invalid layer pattern","A layer pattern is not a valid glob / failed to compile.","Fix the pattern syntax for that layer.",{oftenAdvisory:!0}),k("CONFIG_LAYER_PATTERN_NO_MATCHES","config","Layer pattern matched no files","A layer pattern matched zero included files (often a typo or include mismatch). Reserved/allowEmpty houses do not emit this.","Adjust the pattern or include roots, or mark the layer reserved/allowEmpty if the glob is a future house.",{oftenAdvisory:!0}),k("CONFIG_DUPLICATE_LAYER","config","Duplicate layer name","The same layer name appears more than once in configuration.","Rename or merge duplicate layer entries.",{oftenAdvisory:!0}),k("CONFIG_RULE_UNKNOWN_FROM_LAYER","config","Rule unknown from layer","A dependency rule references a source layer name that is not declared.","Fix the rule\u2019s from field to a declared layer name.",{oftenAdvisory:!0}),k("CONFIG_RULE_UNKNOWN_TO_LAYER","config","Rule unknown to layer","A dependency rule references a target layer name that is not declared.","Fix the rule\u2019s to field to a declared layer name.",{oftenAdvisory:!0}),k("CONFIG_AMBIGUOUS_LAYERS","config","Ambiguous layer classification","Some files match multiple layers at equal specificity; classification falls back to declaration order.","Disambiguate overlapping patterns so each file has one clear layer owner.",{oftenAdvisory:!0}),k("CONFIG_UNCLASSIFIED_FILES","config","Unclassified included files","Included source files match no layer pattern; import rules will not enforce on them.","Extend layer patterns or narrow include so every governed file is classified.",{oftenAdvisory:!0}),k("LITERAL_PATH_DRIFT","drift","Literal path moved by a rename","A repo path written inside a string, a comment or a docstring no longer resolves, and the rename set says where it went. Nothing in the gate sees this class: `tsc` resolves imports, not strings, and ESLint does not either, so the rename compiles green and the reference lies afterwards. It appears in four forms \u2014 the tsconfig alias, a relative literal, a path written without the include-root prefix, and prose \u2014 and a hand sweep reliably covers one of them.","Apply the suggested replacement, or re-run `npx arkgate-check --path-drift --base-ref <ref> --write` to apply every writable anchored replacement at once. The rewrite is mechanical and one-directional: the destination comes from the rename, it must itself resolve and be path-shaped, and the token is rewritten in the form the author wrote it in. A destination that leaves the alias root of the literal is reported with the target only and must be rewritten by hand."),k("LITERAL_PATH_UNRESOLVED","drift","Literal path does not resolve","A literal that looks like a repo path does not resolve under this root, and no rename explains where it went. Unlike LITERAL_PATH_DRIFT this is a candidate, not a verdict: with nothing to anchor it, ArkGate cannot tell a dead reference from an illustrative path in a comment, an example in documentation, or a path belonging to another tree.","Read the candidate and decide: fix the path, or leave it. Advisory only \u2014 it never fails a run and is never rewritten by --write, because there is no destination to propose. Run `--path-drift --all` to list the sweep.",{oftenAdvisory:!0}),k("ARK_UNKNOWN","meta","Unknown diagnostic","A diagnostic lacked a stable ruleId/code; adapters may emit this fallback so agents never see an empty id.","Resolve the underlying finding without weakening ark.config.json, then run Ark again. Prefer fixing the producer to emit a catalogued ruleId.")]),Do=new Map(bn.map(e=>[e.ruleId,e])),js=Object.freeze(bn.map(e=>e.ruleId));function Bs(e){return typeof e=="string"&&e.length>0&&Do.has(e)}s(Bs,"isKnownDiagnosticCode");function Ws(e){return typeof e!="string"||e.length===0?!1:Do.has(e)?!0:e.startsWith("ARKRULE_")}s(Ws,"isCataloguedOrArkRuleFamily");function En(e){if(!(typeof e!="string"||e.length===0))return Do.get(e)}s(En,"getDiagnosticCatalogEntry");function Lo(e){return`#${En(e)?.docsAnchor??e}`}s(Lo,"diagnosticDocsFragment");function zs(e){return`${Ar}${Lo(e)}`}s(zs,"diagnosticDocsPath");function qs(){return{schemaVersion:"1.0",docsPath:Ar,codes:bn}}s(qs,"serializeDiagnosticCatalog");function Ys(e){return En(e)?.fix}s(Ys,"catalogFixForRuleId");function Xs(e){return En(e)?.why}s(Xs,"catalogWhyForRuleId");var Zs="1.1";var Js="1.0";var vt=class{static{s(this,"InMemoryReadModelStore")}states=new Map;load(t){return this.states.get(t)}save(t,n){this.states.set(t,n)}clear(t){t?this.states.delete(t):this.states.clear()}};function jc(e){return typeof e.initialState=="function"?e.initialState():e.initialState}s(jc,"initialState");var kr=class{static{s(this,"ProjectionRegistryImpl")}definitions=new Map;checkpoints=new Map;store;auditTrail;constructor(t={}){this.store=t.store??new vt,this.auditTrail=t.auditTrail}register(t){if(this.definitions.has(t.name))throw new Error(`Projection "${t.name}" is already registered.`);this.definitions.set(t.name,t),this.checkpoints.set(t.name,{projection:t.name,appliedCount:0})}list(){return Array.from(this.definitions.values())}async apply(t){let n=[];for(let r of this.definitions.values()){if(!r.sourceIntents.includes(t.intent))continue;let o=await this.store.load(r.name)??jc(r),i=await r.project(t,o);await this.store.save(r.name,i);let a=this.checkpoints.get(r.name);this.checkpoints.set(r.name,{projection:r.name,appliedCount:(a?.appliedCount??0)+1,lastIntent:t.intent,lastCorrelationId:t.metadata.correlationId,updatedAt:new Date().toISOString()}),await this.auditTrail?.record({type:"projection.applied",source:"Kernel.ProjectionRegistry",intent:t.intent,correlationId:t.metadata.correlationId,causationId:t.metadata.causationId,subject:r.name,details:{projection:r.name}}),n.push(r.name)}return n}async getState(t){return this.store.load(t)}getCheckpoint(t){return this.checkpoints.get(t)}getCheckpoints(){return Array.from(this.checkpoints.values())}async clear(){await this.store.clear();for(let t of this.definitions.values())this.checkpoints.set(t.name,{projection:t.name,appliedCount:0})}};function vn(e){return new kr(e)}s(vn,"createProjectionRegistry");var Sn="1.0";function Bc(e){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-|-$/g,"")}s(Bc,"policyId");var Fo=class{constructor(t){this.data=t}data;static{s(this,"ArkManifestImpl")}toJSON(){return{...this.data}}};function wn(e={}){let t=e.registry,n=e.policyEngine,r=e.metadata,o=e.graph,i=e.profile,a=e.projections,l=e.eventContracts,c=e.observability,p=t?t.list().map(E=>({name:E.name,dependencies:t.getDependencies(E.name),productions:t.getProductions(E.name)})):[],g=t?t.getAllRelationships():[],h=n?n.getPolicies().map(E=>({id:Bc(E.name),name:E.name,severity:E.severity,tags:E.tags?[...E.tags]:void 0,owner:E.owner,version:E.version,rationale:E.rationale,enforcementMode:E.enforcementMode,deprecated:E.deprecated,replacedBy:E.replacedBy,description:E.tags?.includes("layer")?"Enforces clean-architecture layer dependency rules on declared relationships.":void 0})):[],u=r?r.toJSON():[],f=o?o.toJSON():{nodes:[],edges:[]},m=u.filter(E=>(E.emits?.length??0)>0||(E.consumes?.length??0)>0).map(E=>({entity:E.name,emits:E.emits,consumes:E.consumes})),y=a?a.list().map(E=>({name:E.name,sourceIntents:E.sourceIntents,checkpoint:a.getCheckpoint(E.name)})):[],v={schemaVersion:"1.0",version:Bn,exportedAt:new Date().toISOString(),intents:p,relationships:g,policies:h,entities:u,graph:f,architecture:i?{profile:i.name,layers:i.layers,rules:i.rules}:void 0,projections:y,eventContracts:l?.list()??[],observability:c?.report(),links:{entityIntents:m}};return new Fo(v)}s(wn,"createArkManifest");var Qs=0;function ea(e){return Qs+=1,`${e}-${Date.now()}-${Qs}`}s(ea,"createWorkflowId");function Mo(e){return e instanceof Error?e.message:String(e)}s(Mo,"errorMessage");function Wc(e){return new Promise(t=>{setTimeout(t,e)})}s(Wc,"sleep");async function zc(e,t,n){let r=new AbortController;if(t===void 0)return e(r.signal);let o,i=new Promise((a,l)=>{o=setTimeout(()=>{let c=new Error(`Workflow step "${n}" timed out after ${t}ms.`);r.abort(c),l(c)},t)});try{return await Promise.race([e(r.signal),i])}finally{o&&clearTimeout(o)}}s(zc,"withTimeout");var St=class{static{s(this,"InMemoryWorkflowStore")}snapshots=new Map;save(t,n){let r=this.snapshots.get(t.id);if(r&&r.version!==t.version)throw new Error(`Optimistic concurrency conflict for workflow ${t.id}`);let o=(t.version??0)+1;this.snapshots.set(t.id,{...t,version:o,context:{...t.context}}),t.version=o}get(t,n){let r=this.snapshots.get(t);return r?{...r,context:{...r.context}}:void 0}list(t){return Array.from(this.snapshots.values()).filter(n=>!t||n.workflowName===t).map(n=>({...n,context:{...n.context}}))}claim(t,n,r){let o=Date.now();for(let i of this.snapshots.values()){if(r&&i.workflowName!==r||i.status!=="running"&&i.status!=="compensating")continue;let a=i.expiresAt?new Date(i.expiresAt).getTime()<o:!0;if(!i.ownerId||a){i.ownerId=t,i.expiresAt=new Date(o+n).toISOString();let l=(i.version??0)+1;return i.version=l,this.snapshots.set(i.id,{...i,context:{...i.context}}),{...i,context:{...i.context}}}}}clear(){this.snapshots.clear()}},$o=class{constructor(t,n={}){this.bus=t;this.options=n;this.store=n.store??new St}bus;options;static{s(this,"WorkflowEngineImpl")}definitions=new Map;store;register(t){if(this.definitions.has(t.name))throw new Error(`Workflow "${t.name}" is already registered.`);let n=new Set;for(let r of t.steps){if(n.has(r.name))throw new Error(`Workflow "${t.name}" has duplicate step name "${r.name}".`);n.add(r.name)}if(this.definitions.set(t.name,t),t.startOn){let r=t.startOn;this.bus.subscribe(r.intent,async o=>{await this.start(t.name,r.mapEventToPayload(o))})}}async start(t,n,r={}){let o=this.definitions.get(t);if(!o)throw new Error(`Workflow "${t}" is not registered.`);let i=new Date().toISOString(),a={id:r.id??ea(t),version:0,workflowName:t,status:"running",context:{...n},completedSteps:[],attempts:{},startedAt:i,updatedAt:i};return await this.store.save(a,r.tx),await this.audit("workflow.started",a,{workflowName:t}),this.executeSnapshot(a,o,r.tx)}async resume(t,n={}){let r=await this.get(t,n.tx);if(!r)return;if(r.status!=="running"&&r.status!=="compensating")return r;let o=this.definitions.get(r.workflowName);if(!o)throw new Error(`Workflow "${r.workflowName}" is not registered.`);return this.executeSnapshot(r,o,n.tx)}async executeSnapshot(t,n,r){try{let o=n.steps.filter(i=>!t.completedSteps.includes(i.name));for(let i of o)await this.runStep(t,i,r);return t.status="completed",t.currentStep=void 0,t.completedAt=new Date().toISOString(),t.updatedAt=t.completedAt,await this.store.save(t,r),await this.audit("workflow.completed",t,{workflowName:t.workflowName}),{...t,context:{...t.context}}}catch(o){throw await this.compensate(t,n.steps,o,r),t.status="failed",t.currentStep=void 0,t.error=Mo(o),t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.failed",t,{workflowName:t.workflowName,error:t.error,failedStep:t.failedStep}),o}}async get(t,n){return this.store.get(t,n)}async list(t){return this.store.list(t)}async runStep(t,n,r){let o=n.retry??this.options.defaultRetry??{attempts:1},i=Math.max(1,o.attempts);t.currentStep=n.name,t.updatedAt=new Date().toISOString(),await this.store.save(t,r);for(let a=1;a<=i;a+=1){t.attempts[n.name]=a,await this.store.save(t,r);let l;try{l=await zc(c=>Promise.resolve(n.execute(t.context,this.bus,c)),n.timeoutMs,n.name)}catch(c){if(a<i){o.delayMs&&await Wc(o.delayMs);continue}throw t.failedStep=n.name,t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.step.failed",t,{step:n.name,attempt:a,error:Mo(c)}),c}l&&Object.assign(t.context,l),t.completedSteps.push(n.name),t.currentStep=void 0,t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.step.completed",t,{step:n.name,attempt:a});return}throw new Error(`Workflow step "${n.name}" did not complete.`)}async compensate(t,n,r,o){t.status="compensating",t.updatedAt=new Date().toISOString(),await this.store.save(t,o);let i=n.filter(a=>t.completedSteps.includes(a.name));for(let a=i.length-1;a>=0;a-=1){let l=i[a];if(l.compensate)try{await Promise.resolve(l.compensate(t.context,this.bus,r)),await this.audit("workflow.compensation.completed",t,{step:l.name})}catch(c){await this.audit("workflow.step.failed",t,{step:l.name,compensation:!0,error:Mo(c)})}}}async audit(t,n,r){await this.options.auditTrail?.record({type:t,source:"Kernel.WorkflowEngine",subject:n.id,details:r})}};function wt(e,t){return new $o(e,t)}s(wt,"createWorkflowEngine");function Ko(e,t,n={}){let r=wt(t,n),o={name:e.name,steps:e.steps};r.register(o);let i=n.id??ea(e.name),a="idle",l=[];return{id:i,definition:e,get status(){return a},get completedSteps(){return[...l]},async run(c){a="running",l=[];try{let p=await r.start(e.name,c,{id:i});a=p.status==="waiting"?"idle":p.status,l=[...p.completedSteps]}catch(p){let g=await r.get(i);throw a=g?.status==="waiting"?"idle":g?.status??"failed",l=g?.completedSteps??[],p}}}}s(Ko,"createSaga");Ct();function ra(e){return Object.keys(e).sort()}s(ra,"sortedKeys");function jo(e,t,n,r){if(e===t)return;if(e===null||t===null||typeof e!=typeof t){r.push({path:n,left:e,right:t});return}if(typeof e!="object"||typeof t!="object"){e!==t&&r.push({path:n,left:e,right:t});return}if(Array.isArray(e)||Array.isArray(t)){let l=Array.isArray(e)?e:[],c=Array.isArray(t)?t:[],p=Math.max(l.length,c.length);for(let g=0;g<p;g+=1)jo(l[g],c[g],`${n}[${g}]`,r);return}let o=e,i=t,a=new Set([...ra(o),...ra(i)]);for(let l of[...a].sort())jo(o[l],i[l],n?`${n}.${l}`:l,r)}s(jo,"walk");function Bo(e){return{schemaVersion:e.schemaVersion,kernelInstanceId:e.kernelInstanceId,components:e.components.map(t=>({id:t.id,lifetime:t.lifetime,uses:[...t.uses],reactsTo:[...t.reactsTo],raises:[...t.raises],sends:[...t.sends],...t.extendedInfo?{extendedInfo:{...t.extendedInfo}}:{}})),...e.decisionTape?{decisionTape:e.decisionTape.map(t=>({xiHash:t.xiHash,event:{kind:t.event.kind,...t.event.payload?{payload:{...t.event.payload}}:{}},residual:{...t.residual}}))}:{}}}s(Bo,"shadowInformationPackage");function br(e,t){let n=[];return jo(e,t,"",n),{equal:n.length===0,diffs:n}}s(br,"compareInformationPackages");function Wo(e){let t=[];for(let n=1;n<e.length;n+=1)t.push(br(e[n-1],e[n]));return t}s(Wo,"replayInformationPackages");Or();Mn();Un();Un();async function Gn(e,t={}){let n=Dt({host:t.host,port:t.port,nodeEnv:t.nodeEnv,processNodeEnv:process.env.NODE_ENV}),{listenArkRunInspector:r}=await Promise.resolve().then(()=>(ga(),fa));return r(e,{bind:n,sseIntervalMs:t.sseIntervalMs})}s(Gn,"startArkRunInspector");Or();Un();Ct();Mn();Ct();var _d=new Set(["singleton","transient"]);function ma(e){let t={id:e.id,lifetime:e.lifetime,uses:[...e.uses],reactsTo:[...e.reactsTo],raises:[...e.raises],sends:[...e.sends]};if(e.extendedInfo){let n=e.extendedInfo;t.extendedInfo={...n.label?{label:n.label}:{},...n.architectureKind?{architectureKind:n.architectureKind}:{},...n.tags?{tags:[...n.tags]}:{},...n.group?{group:n.group}:{},...n.metadata?{metadata:{...n.metadata}}:{}}}return t}s(ma,"cloneComponent");function Td(e){if(e===void 0)return"singleton";if(typeof e=="string"&&_d.has(e))return e;throw new Error('ArkRun component lifetime must be "singleton" or "transient".')}s(Td,"closedLifetime");function ya(){let e=new Map,t=new Map,n=new Set;function r(a){let l=e.get(a);if(!l)throw new Error(`ArkRun component "${a}" is not registered.`);return l}s(r,"mustRecord");function o(a,l){if(!l.factory)throw new Error(`ArkRun component "${a}" has no factory; declarations-only registrations cannot be resolved.`);if(n.has(a))throw new Error(`ArkRun component "${a}" has a circular resolve.`);n.add(a);try{return l.factory()}finally{n.delete(a)}}s(o,"instantiate");function i(a,l){if(t.has(a))return t.get(a);let c=o(a,l);return t.set(a,c),c}return s(i,"singleton"),{register(a){let l=typeof a?.id=="string"?a.id.trim():"";if(!l)throw new Error("ArkRun component id must be a non-empty string.");if(e.has(l))throw new Error(`ArkRun component "${l}" is already registered.`);let c=Td(a.lifetime),p=Uo({id:l,lifetime:c,uses:a.uses,reactsTo:a.reactsTo,raises:a.raises,sends:a.sends,extendedInfo:a.extendedInfo});if(!p)throw new Error("ArkRun component id must be a non-empty string.");let g=typeof a.factory=="function"?a.factory:void 0;return e.set(l,{component:p,factory:g}),ma(p)},resolve(a){let l=r(a);return l.component.lifetime==="transient"?o(a,l):i(a,l)},resolveSingleton(a){let l=r(a);if(l.component.lifetime==="transient")throw new Error(`ArkRun component "${a}" is transient; resolveSingleton requires lifetime "singleton".`);return i(a,l)},snapshotComponents(){return[...e.values()].map(a=>ma(a.component))}}}s(ya,"createComponentRegistry");Mn();function Nd(e){let t={...e.metadata??{}};if(e.source===void 0)return t;if(t.source&&t.source!==e.source)throw new Re(e.source,t.source);return t.source=e.source,t}s(Nd,"stampMetadata");function Dd(){}s(Dd,"ignoreDetachedFailure");async function Jo(e,t,n,r={}){let o=Fn({transport:r.transport,ephemeral:r.ephemeral??e.defaultEphemeral,brokerBound:typeof e.broker?.send=="function"}),i=Nd(r),a=await e.eventBus.dispatch(t,n,i,{notifySubscribers:o.notifySubscribers,awaitHandlers:o.awaitHandlers});if(o.deliveredVia==="broker"&&e.broker){let l=Promise.resolve(e.broker.send(a));o.awaitHandoff?await l:l.then(void 0,Dd)}return o}s(Jo,"sendOnArkRunTransport");var Mr=1e3,ha=0;function Ld(){return ha+=1,`ark-kernel-${Date.now()}-${ha}`}s(Ld,"nextKernelInstanceId");function Ra(e,t){let n=e.constructor?.name;return typeof n=="string"&&n.length>0?n:t}s(Ra,"portConstructorId");function Mt(e={}){let t=e.strict??!0,n=e.instanceId??Ld(),r=e.profile??Ye,o=e.maxHistorySize??Mr,i=Vt(),a=tn(),l=e.metadata??ln(),c=e.auditTrail===void 0,p=e.auditTrail??en({maxRecords:o}),g=e.eventContracts??Jt(),h=e.eventBuffer===void 0&&e.outbox===void 0,u=e.eventBuffer??e.outbox??new Ce,f=e.projections??vn({auditTrail:p}),m=new Se([zt(r),...e.policies??[]]),y=s(()=>{nn(i,a,{requireRegisteredTargets:!0})},"syncGraph"),v=e.ephemeral??!0,E=e.broker,A=new pt({intentRegistry:i,dependencyGraph:a,policyEngine:m,strictRegistry:!0,validateIntentNaming:!0,auditTrail:p,eventContracts:g,strictEventContracts:e.strictEventContracts??t,requireKnownSource:e.requireKnownSource??!0,architectureProfile:r,enforceObservedLayerFlow:e.enforceObservedLayerFlow??(t?"hard":"off"),eventBuffer:u,instanceId:n,maxHistorySize:o,onPublish:e.autoApplyProjections===!1?void 0:async D=>{await f.apply(D)}}),b=wt(A,{auditTrail:p}),w=Qt({registry:i,eventBus:A,graph:a}),N=ya(),I=typeof E?.send=="function",T=h?"InMemoryEventBuffer":Ra(u,"EventBufferStore"),te=c?"InMemoryAuditStore":Ra(p,"AuditTrail"),ye=Lt({stores:[Le(T,"outbox"),Le(te,"audit"),Le("InMemoryWorkflowStore","workflow")]}),st={instanceId:n,profile:r,registry:i,graph:a,metadata:l,auditTrail:p,eventContracts:g,eventBuffer:u,outbox:u,projections:f,policyEngine:m,eventBus:A,workflowEngine:b,observability:w,publisher(D){let ue=A.createPublisher(D);return{source:ue.source,publish:ue.publish,send(Z,at,$t={}){return Jo({eventBus:A,broker:E,defaultEphemeral:v},Z,at,{...$t,source:ue.source})}}},send(D,ue,Z={}){return Jo({eventBus:A,broker:E,defaultEphemeral:v},D,ue,Z)},register(D){return N.register(D)},resolve(D){return N.resolve(D)},resolveSingleton(D){return N.resolveSingleton(D)},getDependencyInformationPackage(){return fe({kernelInstanceId:n,components:N.snapshotComponents()})},requestGraph(D){return Ln({kernelInstanceId:n,components:N.snapshotComponents()},D)},getInspectorSnapshot(D){return Hn({kernelInstanceId:n,host:D?.host,port:D?.port,package:{kernelInstanceId:n,components:N.snapshotComponents()},observability:w.report(),ephemeralDefault:v,brokerBound:I,hardening:ye})},startInspector(D){return Gn({getInspectorSnapshot:s(Z=>st.getInspectorSnapshot(Z),"getInspectorSnapshot"),requestGraph:s(Z=>st.requestGraph(Z),"requestGraph"),async listInspectorOutbox(){let[Z,at]=await Promise.all([u.list("pending"),u.list("failed")]);return Fe([...Z,...at],{sampleLimit:ee})},async listInspectorWorkflows(){return Me(await b.list(),{sampleLimit:ee})}},D)},syncGraph:y,manifest(){return y(),wn({registry:i,policyEngine:m,metadata:l,graph:a,profile:r,projections:f,eventContracts:g,observability:w})}};return st}s(Mt,"createArkKernel");function $r(e={}){return Mt({...e,strict:!0,strictEventContracts:e.strictEventContracts??!0,requireKnownSource:e.requireKnownSource??!0,enforceObservedLayerFlow:e.enforceObservedLayerFlow??"hard"})}s($r,"createStrictArkKernel");function Qo(e,t={}){let{profileName:n,...r}=t;return{...r,profile:an(e,{name:n})}}s(Qo,"createOptionsFromConfig");function ei(e,t={}){return Mt(Qo(e,t))}s(ei,"createArkKernelFromConfig");function ti(e,t={}){return $r(Qo(e,t))}s(ti,"createStrictArkKernelFromConfig");function ni(e,t={}){return Kr(Qo(e,t))}s(ni,"createLenientArkKernelFromConfig");function Kr(e={}){return Mt({...e,strict:!1,strictEventContracts:e.strictEventContracts??!1,enforceObservedLayerFlow:e.enforceObservedLayerFlow??"off"})}s(Kr,"createLenientArkKernel");0&&(module.exports={ANALYSIS_IR_SCHEMA_VERSION,ARK_ANALYSIS_RESULT_SCHEMA,ARK_ANALYSIS_RESULT_SCHEMA_VERSION,ARK_DESIGN_DELTA_SCHEMA_VERSION,ARK_ENFORCEMENT_STATE_SCHEMA_VERSION,ARK_RUN_COMPONENT_LIFETIMES,ARK_RUN_EPHEMERAL_DEFAULT,ARK_RUN_GRAPH_DEFAULT_SLICE,ARK_RUN_GRAPH_NODE_KINDS,ARK_RUN_GRAPH_PROCESS_EDGE_KINDS,ARK_RUN_GRAPH_SCHEMA_VERSION,ARK_RUN_GRAPH_SLICES,ARK_RUN_GRAPH_TECHNICAL_EDGE_KINDS,ARK_RUN_INFORMATION_PACKAGE_SCHEMA_VERSION,ARK_RUN_INSPECTOR_DEFAULT_HOST,ARK_RUN_INSPECTOR_DEFAULT_PORT,ARK_RUN_INSPECTOR_EVENTS_PATH,ARK_RUN_INSPECTOR_GRAPH_PATH,ARK_RUN_INSPECTOR_MONITOR_SAMPLE_LIMIT,ARK_RUN_INSPECTOR_OUTBOX_PATH,ARK_RUN_INSPECTOR_SCHEMA_VERSION,ARK_RUN_INSPECTOR_SNAPSHOT_PATH,ARK_RUN_INSPECTOR_SSE_EVENT,ARK_RUN_INSPECTOR_TRANSPORT_FALLBACK,ARK_RUN_INSPECTOR_WORKFLOWS_PATH,ARK_RUN_TRANSPORT_KINDS,ArkRunInspectorBindError,ArkRunInspectorProductionError,DEFAULT_MAX_HISTORY_SIZE,DIAGNOSTIC_CATALOG,DIAGNOSTIC_CATALOG_SCHEMA_VERSION,DIAGNOSTIC_DOCS_RELATIVE_PATH,DIAGNOSTIC_RULE_IDS,EventContractRegistryImpl,EventContractViolationError,InMemoryAuditStore,InMemoryEventBuffer,InMemoryOutboxStore,InMemoryReadModelStore,InMemoryWorkflowStore,IntentRegistry,InvalidArkRunGraphQueryError,InvalidArkRunSendOptionError,InvalidIntentNameError,LayerPolicyContextError,MANIFEST_SCHEMA_VERSION,ObservedLayerFlowViolationError,POLICY_DELTA_SCHEMA_VERSION,PolicyEngine,PolicyViolationError,RESOLVED_CANDIDATE_FACTS_SCHEMA,RESOLVED_CANDIDATE_FACTS_SCHEMA_VERSION,SourceMetadataOverrideError,UnknownEventSourceError,UnregisteredIntentError,analyzeArchitectureConvergence,analyzeChange,analyzePolicyDelta,analyzeProject,analyzeResolvedProject,appendDecisionTape,architecturalPolicies,arkRunGraphQueryFromSearchParams,arkRunInspectorUrl,buildArkRunInspectorHardening,buildArkRunInspectorOutboxMonitor,buildArkRunInspectorSnapshot,buildArkRunInspectorWorkflowsMonitor,buildDependencyInformationPackage,buildPublishPolicyContext,catalogFixForRuleId,catalogWhyForRuleId,checkAdapterGovernance,checkContract,classifyArkPolicyDelta,classifyArkRunInspectorStoreDurability,closeArkRunGraphQuery,closedArkRunEphemeral,closedArkRunTransportKind,collectAnalysisConfigWarnings,collectForbiddenCapabilityUses,compareInformationPackages,createAICodeGate,createAdapter,createAdapterResult,createArchitectureProfile,createArchitectureProfileFromArkConfig,createArkKernel,createArkKernelFromConfig,createArkManifest,createArkTestHarness,createAuditTrail,createDependencyGraph,createElevenLayerArkConfig,createEventBus,createEventContractRegistry,createIntentRegistry,createLenientArkKernel,createLenientArkKernelFromConfig,createMetadataRegistry,createObservabilityReporter,createProjectionRegistry,createResolvedCandidateFacts,createSaga,createStrictArkKernel,createStrictArkKernelFromConfig,createWorkflowEngine,defaultIntentRegistry,defineArchitectureProfilePolicy,defineIntent,defineLayerPolicy,definePolicy,definePort,definePublishPolicy,detectArchitectureCycles,deterministicHash,diagnosticDocsFragment,diagnosticDocsPath,elevenLayerProfile,evaluateArchitectureGraph,explainViolation,extractSemanticDependencies,formatArkRunGraphMermaid,formatArkRunInspectorSseEvent,getDiagnosticCatalogEntry,isArkRunInspectorLoopbackHost,isArkRunInspectorProductionEnv,isCataloguedOrArkRuleFamily,isKnownDiagnosticCode,isLayerPolicy,loadContract,loadResolvedCandidateFacts,policyDeltaAcknowledgementMatches,preflightChange,preflightResolvedChange,replayInformationPackages,requestArkRunGraph,resolveArkRunInspectorBind,resolveArkRunSendPlan,resolvedFactsEvidenceRequirementsHash,serializeDiagnosticCatalog,shadowInformationPackage,stableSerialize,startArkRunInspector,syncRegistryToGraph,toAdapterDiagnostic,unavailableArkRunInspectorOutboxMonitor,unavailableArkRunInspectorWorkflowsMonitor,validateIntentName,version});
|
|
20
|
+
`)}`),this.name="ArkConfigValidationError",this.source=t,this.issues=n}};function zs(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}i(zs,"isObject");function tr(e,t){return/^[A-Za-z_$][A-Za-z0-9_$]*$/.test(t)?`${e}.${t}`:`${e}[${JSON.stringify(t)}]`}i(tr,"propertyPath");function yt(e){return e===null?"null":Array.isArray(e)?"array":typeof e}i(yt,"valueType");function hl(e,t){let n="#/$defs/";if(e.startsWith(n))return t.$defs[e.slice(n.length)]}i(hl,"resolveSchemaRef");function an(e,t,n,r,o){if(t.$ref){let s=hl(t.$ref,r);if(!s){o.push({path:n,message:`schema reference ${t.$ref} cannot be resolved`});return}an(e,s,n,r,o);return}if(t.const!==void 0&&!Object.is(e,t.const)){o.push({path:n,message:`must equal ${JSON.stringify(t.const)}`});return}if(t.enum&&!t.enum.some(s=>Object.is(s,e))){o.push({path:n,message:`must be one of ${t.enum.map(String).join(", ")}`});return}if(t.type==="object"){if(!zs(e)){o.push({path:n,message:`must be an object; received ${yt(e)}`});return}let s=t.properties??{};for(let a of t.required??[])e[a]===void 0&&o.push({path:tr(n,a),message:"is required"});if(t.additionalProperties===!1)for(let a of Object.keys(e))a in s||o.push({path:tr(n,a),message:"unknown field"});else if(t.additionalProperties!==void 0&&t.additionalProperties!==!0&&typeof t.additionalProperties=="object"){let a=t.additionalProperties;for(let l of Object.keys(e))l in s||an(e[l],a,tr(n,l),r,o)}for(let[a,l]of Object.entries(s))e[a]!==void 0&&an(e[a],l,tr(n,a),r,o);return}if(t.type==="array"){if(!Array.isArray(e)){o.push({path:n,message:`must be an array; received ${yt(e)}`});return}if(t.minItems!==void 0&&e.length<t.minItems&&o.push({path:n,message:`must contain at least ${t.minItems} item(s)`}),t.uniqueItems){let s=e.map(a=>JSON.stringify(a));new Set(s).size!==s.length&&o.push({path:n,message:"must not contain duplicate items"})}t.items&&e.forEach((s,a)=>an(s,t.items,`${n}[${a}]`,r,o));return}if(t.type==="string"){if(typeof e!="string"){o.push({path:n,message:`must be a string; received ${yt(e)}`});return}t.minLength!==void 0&&e.length<t.minLength&&o.push({path:n,message:`must contain at least ${t.minLength} character(s)`});return}if(t.type==="boolean"){typeof e!="boolean"&&o.push({path:n,message:`must be a boolean; received ${yt(e)}`});return}if(t.type==="integer"){if(!Number.isInteger(e)){o.push({path:n,message:`must be an integer; received ${yt(e)}`});return}t.minimum!==void 0&&e<t.minimum&&o.push({path:n,message:`must be at least ${t.minimum}`})}}i(an,"validateNode");function Rl(e,t){let n=e.layers;Array.isArray(n)&&n.forEach((r,o)=>{if(!r||typeof r!="object"||Array.isArray(r)||!("owners"in r))return;let s=r.owners;Array.isArray(s)&&s.forEach((a,l)=>{typeof a=="string"&&(Gs(a)||t.push({path:`$.layers[${o}].owners[${l}]`,message:"must be a GitHub handle or email (not a display name)"}))})})}i(Rl,"validateLayerOwners");function Al(e){let t={...e,$schema:e.$schema===void 0?nr:e.$schema,schemaVersion:e.schemaVersion===void 0?ae:e.schemaVersion,include:e.include===void 0?["src"]:e.include,layers:e.layers===void 0?[]:e.layers,rules:e.rules===void 0?rr.map(n=>({...n})):e.rules};return e.arkRun!==void 0&&(t.arkRun=$s(e.arkRun)),e.arkOrder!==void 0&&(t.arkOrder=Ms(e.arkOrder)),t}i(Al,"defaultedConfig");function kl(e){return e===ae?null:e==="unversioned"?"unversioned":e==="1.0"||e==="1.1"||e==="1.2"?e:null}i(kl,"migratedFromOf");function Il(){let e=new Set([ae]);for(let t of so)t.from!=="unversioned"&&e.add(t.from),e.add(t.to);return e}i(Il,"knownInputVersions");function bl(e,t="ark.config.json"){if(!zs(e))throw new Ie(t,[{path:"$",message:`must be an object; received ${yt(e)}`}]);let n=Il(),r=e.schemaVersion===void 0?"unversioned":typeof e.schemaVersion=="string"?e.schemaVersion:null;if(r===null)throw new Ie(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(e.schemaVersion)}; expected ${ae}`}]);if(r!=="unversioned"&&!n.has(r))throw new Ie(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(r)}; expected ${ae}`}]);let o=r,s={...e},a=0;for(;o!==ae&&a<so.length+1;){a+=1;let l=so.find(c=>c.from===o);if(!l)throw new Ie(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(o)}; expected ${ae}`}]);o=l.to,s.schemaVersion=o}if(o!==ae)throw new Ie(t,[{path:"$.schemaVersion",message:`unsupported version ${JSON.stringify(r)}; expected ${ae}`}]);return{candidate:Al(s),migratedFrom:kl(r)}}i(bl,"migrateArkConfig");function io(e,t="ark.config.json"){let{candidate:n,migratedFrom:r}=bl(e,t),o=[];if(an(n,js,"$",js,o),Ks(n,o),Hs(n,o),Rl(n,o),o.length>0)throw new Ie(t,o);return{config:n,migratedFrom:r}}i(io,"loadArkConfigContract");function qs(e,t="ark.config.json"){let n;try{n=JSON.parse(e)}catch(r){throw new Ie(t,[{path:"$",message:`invalid JSON: ${r instanceof Error?r.message:String(r)}`}])}return io(n,t)}i(qs,"parseArkConfigJson");function Ys(e){let t={$schema:typeof e.$schema=="string"&&e.$schema.length>0?e.$schema:nr,schemaVersion:ae};for(let[n,r]of Object.entries(e))n!=="$schema"&&n!=="schemaVersion"&&(t[n]=r);return t}i(Ys,"withArkConfigMetadata");function El(e){return e.endsWith(".")?e:`${e}.`}i(El,"normalizePrefix");function vl(e,t){let n=e.prefixes.length?Math.max(...e.prefixes.map(o=>o.length)):0;return(t.prefixes.length?Math.max(...t.prefixes.map(o=>o.length)):0)-n}i(vl,"byLongestPrefix");function ln(e){let t=e.layers.map(o=>({...o,prefixes:o.prefixes.map(El)})),n=[...t].sort(vl),r=[...e.rules??[]];return{name:e.name,layers:t,rules:r,resolveLayer(o){return t.find(s=>s.match?.(o))?.name??n.find(s=>s.prefixes.some(a=>o.startsWith(a)))?.name}}}i(ln,"createArchitectureProfile");function cn(e,t={}){return ln({name:t.name??e.name??"ark.config.json",layers:e.layers.map((n,r)=>({name:n.name,prefixes:n.intentPrefixes??[],description:n.description,trustBoundary:n.trustBoundary,owners:n.owners,order:r+1})),rules:e.rules??[]})}i(cn,"createArchitectureProfileFromArkConfig");var Sl=[{name:"DomainModel",prefixes:["Domain"],description:"Rich domain model, business rules, and domain events.",order:1},{name:"ApplicationOrchestration",prefixes:["Application"],description:"Use cases and command orchestration.",order:2},{name:"PersistenceAdapters",prefixes:["Adapter.Persistence","Adapter.Repository"],description:"Database, repository, and storage adapters.",order:3},{name:"IntegrationAdapters",prefixes:["Adapter.Integration","Adapter.External"],description:"External systems, APIs, and integration adapters.",order:4},{name:"WorkflowSagaEngine",prefixes:["Workflow"],description:"Sagas, workflows, and long-running processes.",order:5},{name:"BackgroundJobsScheduling",prefixes:["Job"],description:"Background jobs, scheduled work, and async processors.",order:6},{name:"PresentationAdapters",prefixes:["Presentation","Adapter.Presentation","Adapter.Api"],description:"API, UI, controller, and presentation adapters.",order:7},{name:"ReportingReadModels",prefixes:["Reporting"],description:"Read models, projections, and reporting surfaces.",order:8},{name:"ExtensibilityMetadata",prefixes:["Metadata"],description:"Metadata, extensions, and schema contracts.",order:9},{name:"SecurityAuditObservability",prefixes:["Security","Audit","Observability"],description:"Security, audit, and observability concerns.",order:10},{name:"Kernel",prefixes:["Kernel"],description:"Ark-owned governance and kernel signals.",order:11}],Ye=ln({name:"Ark 11-layer Hexagonal Event-Driven Profile",layers:Sl,rules:rr.map(e=>({...e}))}),wl={DomainModel:["domain"],ApplicationOrchestration:["application","app"],PersistenceAdapters:["adapters/persistence","adapters/repository","repositories","infra/persistence"],IntegrationAdapters:["adapters/integration","adapters/external","integrations"],WorkflowSagaEngine:["workflows","sagas"],BackgroundJobsScheduling:["jobs","schedules"],PresentationAdapters:["presentation","adapters/presentation","adapters/api"],ReportingReadModels:["reporting","read-models","projections"],ExtensibilityMetadata:["metadata","extensions"],SecurityAuditObservability:["security","audit","observability"],Kernel:["kernel"]};function ao(e={}){let t=e.rootDir??"src",n=e.optionalLayers??!0,r=t==="."?"":`${t}/`;return Ys({include:e.include??[t],layers:Ye.layers.map(o=>({name:o.name,patterns:(wl[o.name]??[o.name]).map(s=>`${r}${s}/**`),intentPrefixes:o.prefixes,optional:n})),rules:[...Ye.rules]})}i(ao,"createElevenLayerArkConfig");var or=class{static{i(this,"MetadataRegistryImpl")}entities=new Map;entity(t,n,r={}){if(this.entities.has(t)&&!r.allowOverwrite)throw new Error(`Entity metadata "${t}" is already registered.`);let o={name:t,fields:{},...n};return this.entities.set(t,o),o}getEntity(t){return this.entities.get(t)}listEntities(){return Array.from(this.entities.values())}findEntitiesByIntent(t){return this.listEntities().filter(n=>n.emits?.includes(t)||n.consumes?.includes(t))}validate(){let t=[];for(let n of this.entities.values()){n.name.trim()||t.push({entity:n.name,message:"Entity name is required."});for(let[r,o]of Object.entries(n.fields))r.trim()||t.push({entity:n.name,field:r,message:"Field name is required."}),(!o.type||typeof o.type!="string")&&t.push({entity:n.name,field:r,message:"Field type must be a non-empty string."}),o.relation&&!this.entities.has(o.relation.entity)&&t.push({entity:n.name,field:r,message:`Related entity "${o.relation.entity}" is not registered.`})}return{ok:t.length===0,issues:t}}toJSON(){return this.listEntities()}};function dn(){return new or}i(dn,"createMetadataRegistry");function lo(e,t={}){return{name:e,ownerLayer:t.ownerLayer,intent:t.intent,allowedAdapters:t.allowedAdapters?[...t.allowedAdapters]:void 0}}i(lo,"definePort");function co(e,t,n,r={}){let o=Array.isArray(n)?{...r,requiredKeys:n}:{...n??{}},s=o.requiredKeys;if(s&&s.length>0){let c=s.filter(p=>!Xs(t,p));if(c.length>0)throw new Error(`Adapter for port "${e.name}" is missing required members: ${c.join(", ")}`)}let a={name:o.name,layer:o.layer,intent:o.intent,port:e,impl:t},l=sr(a);if(!l.ok)throw new Error(l.issues.map(c=>c.message).join(`
|
|
21
|
+
`));return a}i(co,"createAdapter");function uo(e,t=[]){let n=t.filter(r=>!Xs(e,r));return n.length===0?{ok:!0}:{ok:!1,missing:n}}i(uo,"checkContract");function sr(e){let t=e.port.allowedAdapters??[];return t.length===0?{ok:!0,issues:[]}:[e.name,e.intent].filter(o=>typeof o=="string"&&o.length>0).some(o=>t.includes(o))?{ok:!0,issues:[]}:{ok:!1,issues:[{ruleId:"ADAPTER_NOT_ALLOWED_FOR_PORT",port:e.port.name,adapter:e.name??e.intent,message:`Adapter "${e.name??e.intent??"unknown"}" is not allowed for port "${e.port.name}".`}]}}i(sr,"checkAdapterGovernance");function Xs(e,t){return e!=null&&(typeof e=="object"||typeof e=="function")&&t in e}i(Xs,"hasMember");var fo=Object.freeze(["network","filesystem","clock","randomness","environment","process","persistence"]),mo=Object.freeze({fetch:"network",XMLHttpRequest:"network",Date:"clock","Date.now":"clock","Math.random":"randomness","process.env":"environment",process:"process"}),yo=Object.freeze(Object.keys(mo).sort()),po=Object.freeze({fs:"filesystem","node:fs":"filesystem","fs/promises":"filesystem","node:fs/promises":"filesystem","fs-extra":"filesystem","graceful-fs":"filesystem",memfs:"filesystem",chokidar:"filesystem",http:"network",https:"network",http2:"network",net:"network",tls:"network",dgram:"network",dns:"network","node:http":"network","node:https":"network","node:http2":"network","node:net":"network","node:tls":"network","node:dgram":"network","node:dns":"network",axios:"network",undici:"network","node-fetch":"network",got:"network",ky:"network",superagent:"network",ws:"network",process:"process","node:process":"process",child_process:"process","node:child_process":"process","@prisma/client":"persistence",prisma:"persistence",pg:"persistence",mysql:"persistence",mysql2:"persistence",mongodb:"persistence",mongoose:"persistence",sqlite3:"persistence","better-sqlite3":"persistence",redis:"persistence",ioredis:"persistence",typeorm:"persistence",knex:"persistence","drizzle-orm":"persistence",sequelize:"persistence",kysely:"persistence","@supabase/supabase-js":"persistence"}),go=Object.freeze({process:Object.freeze(["process","node:process"])});function un(e){if(!e||e.startsWith(".")||e.startsWith("/"))return null;let t=po[e];if(t)return t;let n=e.indexOf("/");if(n<0)return null;let r=e.slice(0,n),o=po[r];if(o)return o;let s=e.indexOf("/",n+1);return s<0?null:po[e.slice(0,s)]??null}i(un,"capabilityForModuleSpecifier");function Oe(e,t){for(let n of t)if(go[n]?.includes(e))return n;return null}i(Oe,"forbiddenGlobalForModuleSpecifier");function ir(e){let t=e.split(".");for(let n=t.length;n>=1;n-=1){let r=t.slice(0,n).join("."),o=mo[r];if(o)return o}return null}i(ir,"capabilityForAmbientName");function ht(e){if(e?.pure===!0)return[...fo].sort();let n=(e?.capabilities?.deny??[]).filter(r=>fo.includes(r));return[...new Set(n)].sort()}i(ht,"effectiveCapabilityDeny");function pn(e,t){if(t.length===0)return!1;let n=new Set(t),r=e.split(".");for(let o=r.length;o>=1;o-=1)if(n.has(r.slice(0,o).join(".")))return!0;return!1}i(pn,"ambientCoveredByForbiddenGlobals");function ar(e){let t=new Set,n=new Set,r=Object.keys(mo);for(let o of e?.forbiddenGlobals??[]){let s=r.filter(a=>a===o||a.startsWith(`${o}.`));if(s.length===0)n.add(o);else for(let a of s)t.add(`ambient:${a}`);for(let a of go[o]??[])t.add(`import-exact:${a}`)}for(let o of ht(e)){if(t.add(`import:${o}`),o==="process")for(let s of go.process)t.add(`import-exact:${s}`);for(let s of r)ir(s)===o&&t.add(`ambient:${s}`)}return{atoms:[...t].sort(),rawGlobals:[...n].sort()}}i(ar,"loweredLayerCoverage");function Rt(e,t){return t&&e.isStringLiteralLike(t)?t.text:void 0}i(Rt,"literalText");function Qs(e,t){return e.getLineAndCharacterOfPosition(t.getStart(e)).line+1}i(Qs,"lineOf");function Zs(e,t){if(e.isImportDeclaration(t)){let r=t.importClause;if(!r)return!1;if(r.isTypeOnly)return!0;let o=r.namedBindings;return!!(o&&e.isNamedImports(o)&&o.elements.length>0&&o.elements.every(s=>s.isTypeOnly))}if(t.isTypeOnly)return!0;let n=t.exportClause;return!!(n&&e.isNamedExports(n)&&n.elements.length>0&&n.elements.every(r=>r.isTypeOnly))}i(Zs,"isTypeOnlyReference");function ei(e,t){let n={noLib:!0,noResolve:!0,target:e.ScriptTarget.Latest},r=e.createCompilerHost(n,!0);return r.getSourceFile=o=>o===t.fileName?t:void 0,r.fileExists=o=>o===t.fileName,r.readFile=o=>o===t.fileName?t.text:void 0,e.createProgram([t.fileName],n,r).getTypeChecker()}i(ei,"singleFileChecker");function ho(e,t){try{return e.getSymbolAtLocation(t)}catch{return}}i(ho,"symbolAt");function Ro(e,t,n,r){let o=r.parent&&e.isShorthandPropertyAssignment(r.parent)&&r.parent.name===r,s;try{s=o?t.getShorthandAssignmentValueSymbol(r.parent):ho(t,r)}catch{s=void 0}return!!s?.declarations?.some(a=>a.getSourceFile().fileName===n.fileName)}i(Ro,"localDeclaration");function Xe(e,t){let n,r=[],o=i((a,l,c,p=!1)=>r.push({specifier:c,kind:l,line:Qs(t,a),typeOnly:p,unresolved:c===void 0,node:a}),"add"),s=i(a=>{if(e.isImportDeclaration(a))o(a,"import",Rt(e,a.moduleSpecifier),Zs(e,a));else if(e.isExportDeclaration(a)&&a.moduleSpecifier)o(a,"export",Rt(e,a.moduleSpecifier),Zs(e,a));else if(e.isImportEqualsDeclaration(a)&&e.isExternalModuleReference(a.moduleReference))o(a,"require",Rt(e,a.moduleReference.expression),a.isTypeOnly===!0);else if(e.isCallExpression(a)){let l=a.expression.kind===e.SyntaxKind.ImportKeyword,p=e.isIdentifier(a.expression)&&a.expression.text==="require"&&!Ro(e,n??(n=ei(e,t)),t,a.expression);(l||p)&&o(a,p?"require":"dynamic-import",Rt(e,a.arguments[0]))}e.forEachChild(a,s)},"visit");return s(t),r}i(Xe,"extractSemanticDependencies");function Cl(e,t){let n=[],r=t;for(;e.isPropertyAccessExpression(r)||e.isElementAccessExpression(r);){if(e.isPropertyAccessExpression(r))n.unshift(r.name.text);else{let o=Rt(e,r.argumentExpression);if(o===void 0)return;n.unshift(o)}r=r.expression}if(e.isIdentifier(r))return n.unshift(r.text),{root:r,segments:n}}i(Cl,"staticAccessPath");function xl(e,t){let n=t.parent;return e.isPropertyAccessExpression(n)||e.isElementAccessExpression(n)?!1:e.isExpressionNode(t)&&!e.isInTypeQuery(t)||e.isShorthandPropertyAssignment(n)&&n.name===t}i(xl,"runtimeIdentifierReference");function Js(e,t){let n=t[0]==="globalThis"?t.slice(1):t;for(let r=n.length;r>=1;r-=1){let o=n.slice(0,r).join(".");if(e.has(o))return o}}i(Js,"bestForbiddenMatch");function Ze(e,t,n){if(n.length===0)return[];let r=new Set(n),o=ei(e,t),s=new Map,a=new Set;for(let u of t.statements)if(e.isVariableStatement(u))for(let g of u.declarationList.declarations)e.isIdentifier(g.name)&&a.add(g.name.text);let l=i(u=>{let g=Cl(e,u);if(!g)return;let d=ho(o,g.root),m=d?s.get(d):void 0;return m?[...m,...g.segments.slice(1)]:Ro(e,o,t,g.root)||a.has(g.root.text)?void 0:g.segments},"resolvePath");for(let u of t.statements)if(e.isVariableStatement(u))for(let g of u.declarationList.declarations){if(!g.initializer||!e.isIdentifier(g.name))continue;let d=l(g.initializer),m=ho(o,g.name);!d||!m||s.set(m,d)}let c=[],p=new Set,f=i((u,g)=>{let d=Qs(t,g),m=`${u}:${g.getStart(t)}`;p.has(m)||(p.add(m),c.push({name:u,line:d,node:g}))},"flag"),y=i(u=>{let g=u.parent&&(e.isPropertyAccessExpression(u.parent)||e.isElementAccessExpression(u.parent))&&u.parent.expression===u;if((e.isPropertyAccessExpression(u)||e.isElementAccessExpression(u))&&!g){let d=l(u),m=d?Js(r,d):void 0;m&&f(m,u)}else e.isIdentifier(u)&&r.has(u.text)&&xl(e,u)&&!Ro(e,o,t,u)&&f(u.text,u);if(e.isVariableDeclaration(u)&&e.isObjectBindingPattern(u.name)&&u.initializer){let d=l(u.initializer);if(d)for(let m of u.name.elements){if(!e.isIdentifier(m.name))continue;let v=m.propertyName?Rt(e,m.propertyName)??m.propertyName.text:m.name.text,S=Js(r,[...d,v]);S&&f(S,u.initializer)}}e.forEachChild(u,y)},"visit");return y(t),c}i(Ze,"collectForbiddenCapabilityUses");function Ao(e,t,n){let r=[];for(let o of n?.dependencies??Xe(e,t)){if(o.typeOnly||!o.specifier)continue;let s=un(o.specifier);s&&r.push({capability:s,symbol:o.specifier,line:o.line,source:"import-based"})}for(let o of n?.ambientUses??Ze(e,t,yo)){let s=ir(o.name);s&&r.push({capability:s,symbol:o.name,line:o.line,source:"ambient-global"})}return r.sort((o,s)=>o.line-s.line||o.capability.localeCompare(s.capability)||o.symbol.localeCompare(s.symbol))}i(Ao,"collectCapabilityUses");var ko={RAW_EVENT_PUBLISH:"Publish through a registered intent creator; raw event objects or intent strings bypass Ark contracts and tooling.",PUBLISH_MISSING_SOURCE:"Strict Ark publish calls must include metadata.source."},Io=Object.freeze([{layer:"DomainModel",prefixes:["Domain."]},{layer:"ApplicationOrchestration",prefixes:["Application."]},{layer:"PersistenceAdapters",prefixes:["Adapter.Persistence.","Adapter.Repository."]},{layer:"IntegrationAdapters",prefixes:["Adapter.Integration.","Adapter.External."]},{layer:"WorkflowSagaEngine",prefixes:["Workflow."]},{layer:"BackgroundJobsScheduling",prefixes:["Job."]},{layer:"PresentationAdapters",prefixes:["Presentation.","Adapter.Presentation.","Adapter.Api."]},{layer:"ReportingReadModels",prefixes:["Reporting."]},{layer:"ExtensibilityMetadata",prefixes:["Metadata."]},{layer:"SecurityAuditObservability",prefixes:["Security.","Audit.","Observability."]},{layer:"Kernel",prefixes:["Kernel."]}]);function bo(e,t){return t.flatMap((r,o)=>(r.prefixes??r.intentPrefixes??[]).map(s=>({layer:r.name,layerIndex:o,prefix:s.endsWith(".")?s:`${s}.`}))).filter(({prefix:r})=>e.startsWith(r)).sort((r,o)=>o.prefix.length-r.prefix.length||r.layerIndex-o.layerIndex)[0]?.layer}i(bo,"resolveIntentLayer");function Je(e){return/^(Domain|Application|Adapter|Workflow|Job|Presentation|Reporting|Metadata|Security|Audit|Observability|Kernel)\.[A-Za-z0-9_.]+$/.test(e)}i(Je,"looksLikeArkIntent");function fn(e){if(!e.publishCall)return[];let t=[];return(e.rawIntentName!==void 0&&Je(e.rawIntentName)||e.objectHasIntent)&&t.push({ruleId:"RAW_EVENT_PUBLISH",message:ko.RAW_EVENT_PUBLISH}),e.arkPublishCandidate&&!e.hasSource&&t.push({ruleId:"PUBLISH_MISSING_SOURCE",message:ko.PUBLISH_MISSING_SOURCE}),t}i(fn,"classifyPublishFacts");function j(e,t,n){return{ruleId:e,code:e,message:t,...n}}i(j,"violation");function At(e,t){return e.slice(0,t).split(`
|
|
22
|
+
`).length}i(At,"lineOf");var Ol=new Set(["publish","subscribe","defineIntent","registerHandler"]);function Pl(e,t){return e.index+e[0].indexOf(t)}i(Pl,"captureIndex");function _l(e){let t=[],n=new Set,r=i((l,c)=>{!l||n.has(c)||(n.add(c),t.push({value:l,index:c}))},"push"),o=i(l=>{l.lastIndex=0;let c;for(;(c=l.exec(e))!==null;){let p=c[1];p&&r(p,Pl(c,p))}},"pushFrom");o(/\b(?:publish|subscribe|defineIntent|registerHandler)\s{0,8}(?:<[^>]{0,120}>)?\s{0,8}\(\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),o(/\b(?:intent|onEvent)\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g);let s=/\breactsTo\s{0,8}:\s{0,8}\[([^\]]{0,2000})\]/g,a;for(;(a=s.exec(e))!==null;){let l=a[1]??"",c=a.index+a[0].indexOf(l),p=/['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g,f;for(;(f=p.exec(l))!==null;){let y=f[1];y&&r(y,c+f.index+f[0].indexOf(y))}}return o(/\bmetadata\s{0,8}:\s{0,8}\{[^}]{0,400}\bsource\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),o(/\bpublish\s{0,8}(?:<[^>]{0,120}>)?\s{0,8}\([^;]{0,400}?\bsource\s{0,8}:\s{0,8}['"`]([A-Za-z][A-Za-z0-9_.]*)['"`]/g),t.sort((l,c)=>l.index-c.index)}i(_l,"extractQuotedStrings");function Tl(e){let t=[],n=[{kind:"import",re:/\bimport\s+(?:type\s+)?(?:[^'"]*?\s+from\s*)?['"]([^'"]+)['"]/g},{kind:"export",re:/\bexport\s+(?:type\s+)?[^'"]*?\s+from\s*['"]([^'"]+)['"]/g},{kind:"dynamic-import",re:/\bimport\s*\(\s*['"]([^'"]+)['"]\s*\)/g},{kind:"require",re:/\brequire\s*\(\s*['"]([^'"]+)['"]\s*\)/g}];for(let r of n){let o;for(;(o=r.re.exec(e))!==null;){let s=o.index+o[0].indexOf(o[1]),a=o[0],l=r.kind==="import"&&/\bimport\s+type\b/.test(a)||r.kind==="export"&&/\bexport\s+type\b/.test(a);t.push({value:o[1],index:s,kind:r.kind,typeOnly:l})}}return t.sort((r,o)=>r.index-o.index)}i(Tl,"extractModuleSpecifiers");function Nl(e,t){return!!(t&&(e.isParenthesizedExpression(t)||e.isAsExpression(t)||typeof e.isTypeAssertionExpression=="function"&&e.isTypeAssertionExpression(t)||typeof e.isSatisfiesExpression=="function"&&e.isSatisfiesExpression(t)))}i(Nl,"isSyntaxWrapper");function Eo(e,t){let n=t;for(;n?.parent&&Nl(e,n.parent);)n=n.parent;return n}i(Eo,"unwrapWrappers");function vo(e,t){if(!t||!e.isCallExpression(t))return;let n=t.expression;if(e.isIdentifier(n))return n.text;if(e.isPropertyAccessExpression(n))return n.name.text}i(vo,"callCalleeName");function Dl(e,t){let n=t.parent;if(!n||!e.isObjectLiteralExpression(n))return!1;let r=Eo(e,n),o=r.parent;if(!o)return!1;if(e.isCallExpression(o)&&vo(e,o)==="publish"){let s=o.arguments;return s[1]===r||s[2]===r}if(e.isPropertyAssignment(o)&&So(e,o.name)==="metadata"){let s=o.parent;if(!s)return!1;let l=Eo(e,s).parent;return!!(l&&e.isCallExpression(l)&&vo(e,l)==="publish")}return!1}i(Dl,"isPublishMetadataSource");function ti(e,t){let n=Eo(e,t),r=n.parent;if(!r)return!1;if(e.isCallExpression(r)){let o=vo(e,r);if(o&&Ol.has(o)&&r.arguments.some(s=>s===n))return!0}if(e.isArrayLiteralExpression(r))return ti(e,r);if(e.isPropertyAssignment(r)){let o=So(e,r.name);if(o==="intent"||o==="onEvent"||o==="reactsTo"||o==="source"&&Dl(e,r))return!0}return!1}i(ti,"isDeclaredIntentSite");function Ll(e,t){let n=e.createSourceFile("generated.ts",t,e.ScriptTarget.Latest,!0),r=[],o=i(s=>{e.isStringLiteralLike(s)&&ti(e,s)&&r.push({value:s.text,index:s.getStart(n)}),e.forEachChild(s,o)},"visit");return o(n),r}i(Ll,"extractQuotedStringsAst");function Fl(e){let t=e.toLowerCase().split(/[^a-z0-9]+/).filter(Boolean);return["adapter","adapters","infra","infrastructure","persistence","repository","repositories","integration","database","db"].some(n=>t.includes(n))}i(Fl,"hasInfrastructureToken");function $l(e){let t=e.toLowerCase();return["sequelize","prisma","typeorm","mongoose","knex"].some(n=>t===n||t.startsWith(`${n}/`))}i($l,"isKnownInfrastructurePackage");function Ml(e){let t=e.toLowerCase();return["adapter","infra","persistence","repository","repositories","integration","database"].some(n=>t.includes(n))}i(Ml,"layerHasInfrastructureRole");function mn(e,t){return t&&e.isStringLiteralLike(t)?t.text:void 0}i(mn,"tsStringLiteralText");function So(e,t){if(t&&(e.isIdentifier(t)||e.isStringLiteralLike(t)))return t.text}i(So,"tsPropertyName");function ni(e,t,n){if(!(!t||!e.isObjectLiteralExpression(t)))return t.properties.find(r=>!e.isPropertyAssignment(r)&&!e.isShorthandPropertyAssignment(r)?!1:So(e,r.name)===n)}i(ni,"tsObjectProperty");function yn(e,t,n){return ni(e,t,n)!==void 0}i(yn,"tsObjectHasProperty");function gn(e,t,n){let r=ni(e,t,n);return r&&e.isPropertyAssignment(r)?r.initializer:void 0}i(gn,"tsObjectPropertyValue");function Kl(e,t){let n=gn(e,t,"metadata");return yn(e,n,"source")}i(Kl,"tsObjectHasMetadataSource");function ri(e,t){return t?e.isIdentifier(t)?/^[A-Z]/.test(t.text):e.isPropertyAccessExpression(t)?ri(e,t.name):!1:!1}i(ri,"tsLooksLikeIntentCreatorExpression");function Hl(e,t){if(!e.isCallExpression(t))return!1;let n=t.expression;return e.isPropertyAccessExpression(n)?n.name.text==="publish":e.isIdentifier(n)&&n.text==="publish"}i(Hl,"tsIsPublishCall");function Ul(e,t){if(!e.isCallExpression(t))return!1;let n=t.arguments[0],r=mn(e,n);return r!==void 0&&Je(r)||yn(e,n,"intent")||ri(e,n)}i(Ul,"tsIsArkPublishCandidate");function Gl(e,t){if(!e.isCallExpression(t))return!1;let[n,r,o]=t.arguments;return Kl(e,n)||yn(e,r,"source")||yn(e,o,"source")}i(Gl,"tsPublishHasSource");function Vl(e,t){if(!e.isCallExpression(t))return;let[n,r,o]=t.arguments,s=gn(e,n,"metadata");return mn(e,gn(e,s,"source"))??mn(e,gn(e,r,"source"))??mn(e,gn(e,o,"source"))}i(Vl,"tsPublishSourceLiteral");function jl(e,t,n,r){let o=e.createSourceFile("generated.ts",t,e.ScriptTarget.Latest,!0),s=n,a=s?.filePath,l=s?.layer,c=[],p=i(y=>o.getLineAndCharacterOfPosition(y.getStart(o)).line+1,"lineForNode"),f=i(y=>{if(Hl(e,y)){let u=y.arguments[0],g=mn(e,u);for(let m of fn({publishCall:!0,rawIntentName:g,objectHasIntent:yn(e,u,"intent"),arkPublishCandidate:Ul(e,y),hasSource:Gl(e,y)}))c.push(j(m.ruleId,m.message,{line:p(y),filePath:a}));let d=Vl(e,y);if(r&&l&&d&&Je(d)){let m=r.resolveLayer(d);m&&m!==l&&c.push(j("PUBLISH_SOURCE_LAYER_MISMATCH",`Publish source "${d}" resolves to ${m}, but the target file is classified as ${l}.`,{line:p(y),filePath:a,target:d,fromLayer:l,toLayer:m}))}}e.forEachChild(y,f)},"visit");return f(o),c}i(jl,"analyzePublishAst");function wo(e={}){let t=new Set((e.intents||[]).map(s=>typeof s=="string"?s:s.name)),n=e.forbiddenPatterns||[],r=new Set(e.infrastructureLayers??[]),o=e.enforceIntentAllowlist??t.size>0;return{validate(s,a){let l=[],c=a,p=c?.filePath,f=c?.layer,y=e.typescript,u=y?y.createSourceFile(p??"generated.ts",s,y.ScriptTarget.Latest,!0):void 0,g=u?Xe(e.typescript,u):void 0,d=g?g.filter(k=>k.specifier!==void 0).map(k=>({value:k.specifier,index:k.node.getStart(u),kind:k.kind,typeOnly:k.typeOnly})):Tl(s),m=e.typescript?Ll(e.typescript,s):_l(s);if(e.typescript&&!e.allowNonLiteralDynamicImport?.(p))for(let k of g?.filter(({unresolved:E})=>E)??[]){let E=k.kind==="require";l.push(j(E?"DYNAMIC_REQUIRE_NOT_ALLOWLISTED":"DYNAMIC_IMPORT_NOT_ALLOWLISTED",`Non-literal ${E?"require call":"dynamic import"} cannot be resolved statically; add the reviewed file to dynamicImportAllowlist.`,{line:k.line,filePath:p}))}let v=f!==void 0&&(r.has(f)||Ml(f)),S=f!==void 0?` If "${f}" is an infrastructure layer, mark it in ark.config.json with "mayImportInfrastructure": true (or name it with an infra token like Adapters/Persistence/Repository).`:"";for(let k of n)if(k instanceof RegExp){k.lastIndex=0;let E=k.exec(s);k.lastIndex=0,E&&l.push(j("FORBIDDEN_PATTERN",`Forbidden pattern matched: ${k}`,{line:E.index===void 0?void 0:At(s,E.index),filePath:p,suggestion:"Remove infrastructure imports from domain/application layers."+S}))}else s.includes(k)&&l.push(j("FORBIDDEN_SUBSTRING",`Forbidden substring: ${k}`,{line:At(s,s.indexOf(k)),filePath:p}));for(let k of d){let E=e.resolveImportTarget?.(k.value,p)??(e.resolveImportLayer?{layer:e.resolveImportLayer(k.value,p)}:void 0),C=typeof p=="string"?e.resolveImportTarget?.(p)??(e.resolveImportLayer?{layer:f,relPath:void 0}:void 0):void 0,N=E?.layer;if(N&&f){let b=pt(e.architectureProfile?.rules,f,N,{fromPath:C?.relPath,toPath:E?.relPath,layers:e.architectureLayers});if(b){if(k.typeOnly&&!b.peerIsolation)continue;let T=!!b.peerIsolation;l.push(j("LAYER_IMPORT_VIOLATION",b.message??(T?`Layer "${f}" must not import across slices into "${N}".`:`Layer "${f}" must not import "${N}".`),{line:At(s,k.index),source:k.value,target:k.value,filePath:p,fromLayer:f,toLayer:N,suggestion:T?"Extract shared code to a shared layer, or coordinate slices via events/ports \u2014 do not import across feature/context slices.":"Depend on a port/interface owned by an inner layer instead, or move this code to a layer allowed to make this import.",details:{importKind:k.kind,peerIsolation:T,...k.typeOnly?{typeOnly:!0}:{}}}));continue}continue}v||k.typeOnly||!Fl(k.value)&&!$l(k.value)||l.push(j("FORBIDDEN_IMPORT",`Forbidden ${k.kind} target: "${k.value}".`,{line:At(s,k.index),source:k.value,target:k.value,filePath:p,suggestion:"Route infrastructure access through an allowed adapter or port boundary."+S,details:{importKind:k.kind}}))}if(e.policies)for(let k of e.policies){let E=k.check({source:s,context:a});if(E!==!0)if(Array.isArray(E))for(let C of E)l.push(j("POLICY_VIOLATION",C.message,{filePath:p,suggestion:`Fix violation of policy "${k.name}".`}));else E===!1?l.push(j("POLICY_VIOLATION",`Policy ${k.name} failed on generated code`)):l.push(j("POLICY_VIOLATION",E.message))}if(o&&t.size>0)for(let k of m)Je(k.value)&&!t.has(k.value)&&l.push(j("UNKNOWN_INTENT",`Unknown intent reference: "${k.value}"`,{line:At(s,k.index),filePath:p,target:k.value,suggestion:`Register intent "${k.value}" via defineIntent() or remove the reference.`}));if(e.architectureProfile&&f)for(let k of m){if(!Je(k.value))continue;let E=e.architectureProfile.resolveLayer(k.value);if(!E)continue;let C=ze(e.architectureProfile.rules,f,E,{fromPath:typeof p=="string"?p:void 0,layers:e.architectureLayers});if(C){let N=C.rule.peerIsolation?ut(C.peerIsolationReason??"cross-slice",{fromPath:typeof p=="string"?p:void 0,fromSlice:C.fromSlice,toSlice:C.toSlice}):void 0,b=`Layer "${f}" must not reference "${E}" through "${k.value}".`,T=N&&C.peerIsolationReason!=="cross-slice"?`${b} ${N}`:C.rule.message?N?`${C.rule.message} (${N})`:C.rule.message:b;l.push(j("LAYER_REFERENCE_VIOLATION",T,{line:At(s,k.index),filePath:p,target:k.value,fromLayer:f,toLayer:E,suggestion:"Route the dependency through an allowed intent, port, or event.",details:{rule:C.rule,peerIsolationReason:C.peerIsolationReason}}))}}if(e.extensions)for(let k of e.extensions)try{let E=k.analyze(s,a);l.push(...E)}catch(E){l.push(j("EXTENSION_ERROR",`Extension "${k.name}" failed: ${E instanceof Error?E.message:String(E)}`))}if(e.typescript&&u&&f&&e.forbiddenGlobals?.[f]?.length)try{let k=e.forbiddenGlobals[f];l.push(...Ze(e.typescript,u,k).map(E=>j("FORBIDDEN_GLOBAL",`${f} must not use the ambient global "${E.name}".`,{line:E.line,filePath:p,target:E.name,fromLayer:f,suggestion:"Inject the capability through a port (e.g. a Clock, IdGenerator, or HttpPort) instead of reaching for the ambient global."})));for(let E of g??[]){if(E.typeOnly||!E.specifier)continue;let C=Oe(E.specifier,k);C&&l.push(j("FORBIDDEN_GLOBAL",`${f} must not use module "${E.specifier}" because it is the import form of forbidden global "${C}".`,{line:E.line,filePath:p,source:E.specifier,target:E.specifier,fromLayer:f,details:{importKind:E.kind,forbiddenGlobal:C},suggestion:"Inject the capability through a port instead of importing the ambient global module form."}))}}catch(k){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${k instanceof Error?k.message:String(k)}`))}if(e.typescript&&u&&f&&e.capabilityWalls?.[f]?.length)try{let k=new Set(e.capabilityWalls[f]),E=e.forbiddenGlobals?.[f]??[];for(let C of Ao(e.typescript,u))k.has(C.capability)&&(C.source==="ambient-global"&&pn(C.symbol,E)||C.source==="import-based"&&Oe(C.symbol,E)||l.push(j("CAPABILITY_VIOLATION",C.source==="import-based"?`${f} denies the ${C.capability} capability; found import of "${C.symbol}".`:`${f} denies the ${C.capability} capability; found ambient "${C.symbol}".`,{line:C.line,filePath:p,target:C.symbol,capability:C.capability,fromLayer:f,suggestion:"Define a small port (ClockPort, HttpPort, StoragePort) and bind the implementation in an adapter layer."})))}catch(k){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${k instanceof Error?k.message:String(k)}`))}if(e.typescript)try{l.push(...jl(e.typescript,s,a,e.architectureProfile))}catch(k){l.push(j("AST_ANALYZER_ERROR",`TypeScript AST analyzer failed: ${k instanceof Error?k.message:String(k)}`))}return{mode:"lexical-compatibility",completeness:"partial",completenessReasons:["LEXICAL_EVIDENCE_INCOMPLETE"],valid:!1,lexicalValid:l.length===0,violations:l}}}}i(wo,"createAICodeGate");function W(e){let t=2166136261;for(let n=0;n<e.length;n+=1)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return`fnv1a-${(t>>>0).toString(16).padStart(8,"0")}`}i(W,"deterministicHash");function $(e){if(e===null||typeof e!="object")return JSON.stringify(e);if(Array.isArray(e))return`[${e.map($).join(",")}]`;let t=e;return`{${Object.keys(t).sort().map(n=>`${JSON.stringify(n)}:${$(t[n])}`).join(",")}}`}i($,"stableSerialize");var Pe="1.2";var oi=["network","filesystem","clock","randomness","environment","process","persistence"];function B(e,t){let n=$(e),r=$(t);return n<r?-1:n>r?1:0}i(B,"compareCanonical");function z(e){return[...new Set(e)].sort((t,n)=>t<n?-1:t>n?1:0)}i(z,"sortedUnique");function It(e){let t={schemaVersion:"1.2",include:z(e.include??[]),exclude:z(e.exclude??[]),excludeGenerated:e.excludeGenerated!==!1,dynamicImportAllowlist:z(e.dynamicImportAllowlist??[]),layers:e.layers.map(n=>({name:n.name,patterns:z(n.patterns??[]),exclude:z(n.exclude??[]),forbiddenGlobals:z(n.forbiddenGlobals??[]),intentPrefixes:z(n.intentPrefixes??[]),capabilityDeny:z(n.capabilities?.deny??[]),pure:n.pure===!0})).sort(B),safety:{maxTsSuppressions:e.safety?.maxTsSuppressions??0,maxAnyCasts:e.safety?.maxAnyCasts??0,allowInMemory:e.safety?.allowInMemory===!0,allowDisabledPeerIsolation:e.safety?.allowDisabledPeerIsolation===!0},...e.arkRun?{arkRun:{mode:e.arkRun.mode,compositionRoots:z(e.arkRun.compositionRoots),managedLayers:z(e.arkRun.managedLayers),requireDeclarations:e.arkRun.requireDeclarations===!0}}:{}};return W($(t))}i(It,"resolvedFactsEvidenceRequirementsHash");function Bl(e){let t=e.completenessReasons.map(b=>({code:b.code,message:b.message,...b.file?{file:b.file}:{}})).sort(B),n=e.files.map(b=>({...b,typeOnlyExportNames:z(b.typeOnlyExportNames)})).sort((b,T)=>b.path<T.path?-1:b.path>T.path?1:0),r=e.dependencies.map(b=>({...b,...b.namedBindings?{namedBindings:z(b.namedBindings)}:{}})).sort(B),o=e.capabilityUses.map(b=>({...b})).sort(B),s=e.ambientUses.map(b=>({...b})).sort(B),a=e.publishCalls.map(b=>({...b})).sort(B),l=e.intentReferences.map(b=>({...b})).sort(B),c=e.safetyUses.map(b=>({...b})).sort(B),p=(e.classShapes??[]).map(b=>({...b,mutatingMethods:[...b.mutatingMethods??[]].map(T=>({...T}))})).sort(B),f=(e.arkRunKernelCalls??[]).map(b=>({...b})).sort(B),y=(e.arkRunManagedNews??[]).map(b=>({...b})).sort(B),u=(e.arkRunCompositionRootHits??[]).map(b=>({...b})).sort(B),g=(e.arkRunDeclarations??[]).map(b=>({...b,uses:z(b.uses),reactsTo:z(b.reactsTo),raises:z(b.raises),sends:z(b.sends)})).sort(B),d=(e.arkOrderPlaneCalls??[]).map(b=>({...b})).sort(B),m=(e.arkOrderGenericUpdates??[]).map(b=>({...b})).sort(B),v=(e.arkOrderRootHits??[]).map(b=>({...b})).sort(B),S=(e.arkOrderXiFieldWrites??[]).map(b=>({...b})).sort(B),k=(e.arkOrderIngestWritesXi??[]).map(b=>({...b})).sort(B),E=(e.arkOrderReleaseKeyCounts??[]).map(b=>({...b})).sort(B),C=e.files.map(({path:b,contentHash:T})=>({path:b,contentHash:T})).sort((b,T)=>b.path<T.path?-1:b.path>T.path?1:0),N=W($(C));return{schemaVersion:"1.2",completeness:e.completeness,completenessReasons:t,resolverIdentity:e.resolverIdentity,compilerIdentity:e.compilerIdentity,compilerOptionsHash:e.compilerOptionsHash,tsconfigHash:e.tsconfigHash,candidateTreeHash:N,evidenceRequirementsHash:e.evidenceRequirementsHash,...e.projectPackageName?{projectPackageName:e.projectPackageName}:{},files:n,dependencies:r,capabilityUses:o,ambientUses:s,publishCalls:a,intentReferences:l,safetyUses:c,classShapes:p,arkRunKernelCalls:f,arkRunManagedNews:y,arkRunCompositionRootHits:u,arkRunDeclarations:g,arkOrderPlaneCalls:d,arkOrderGenericUpdates:m,arkOrderRootHits:v,arkOrderXiFieldWrites:S,arkOrderIngestWritesXi:k,arkOrderReleaseKeyCounts:E}}i(Bl,"canonicalResolvedFactsInput");function si(e){let t=Bl(e);return{...t,factsHash:W($(t))}}i(si,"createCanonicalResolvedCandidateFacts");function lr(e){return si(ai(M(e,"$"),!1))}i(lr,"createResolvedCandidateFacts");function M(e,t){if(!e||typeof e!="object"||Array.isArray(e))throw new Error(`${t} must be an object.`);return e}i(M,"asRecord");function K(e,t,n){let r=new Set(t),o=Object.keys(e).find(s=>!r.has(s));if(o)throw new Error(`${n}.${o} is not part of schema ${"1.2"}.`)}i(K,"assertOnlyKeys");function L(e,t,n){let r=e[t];if(typeof r!="string"||r.length===0)throw new Error(`${n}.${t} must be a non-empty string.`);return r}i(L,"requiredText");function be(e,t,n){if(e[t]!==void 0)return L(e,t,n)}i(be,"optionalText");function H(e,t,n){let r=L(e,t,n),o=r.replace(/\\/g,"/");if(!o||o.startsWith("/")||/^[A-Za-z]:\//.test(o)||/[\u0000-\u001f\u007f]/.test(o))throw new Error(`${n}.${t} must be a canonical project-relative path.`);let s=[];for(let l of o.split("/"))if(!(!l||l==="."))if(l===".."){if(s.length===0)throw new Error(`${n}.${t} must be a canonical project-relative path.`);s.pop()}else s.push(l);let a=s.join("/");if(!a||a!==r)throw new Error(`${n}.${t} must be a canonical project-relative path.`);return a}i(H,"requiredProjectPath");function U(e,t,n){if(typeof e[t]!="boolean")throw new Error(`${n}.${t} must be a boolean.`);return e[t]}i(U,"requiredBoolean");function ii(e,t,n){let r=e[t];if(!Number.isInteger(r)||Number(r)<0)throw new Error(`${n}.${t} must be a non-negative integer.`);return Number(r)}i(ii,"requiredInteger");function X(e,t,n){let r=ii(e,t,n);if(r===0)throw new Error(`${n}.${t} must be a positive integer.`);return r}i(X,"requiredPositiveInteger");function G(e,t,n){let r=e[t];if(!Array.isArray(r))throw new Error(`${n}.${t} must be an array.`);return r}i(G,"requiredArray");function Ee(e,t,n,r){let o=e[t];if(typeof o!="string"||!n.includes(o))throw new Error(`${r}.${t} must be one of ${n.join(", ")}.`);return o}i(Ee,"enumValue");function kt(e,t){if(!Array.isArray(e)||e.some(n=>typeof n!="string"||!n))throw new Error(`${t} must be an array of non-empty strings.`);return[...e]}i(kt,"parseStringArray");function Wl(e,t,n){let r=new Set;for(let o of e){let s=t(o);if(r.has(s))throw new Error(`${n} must not contain duplicate facts (${s}).`);r.add(s)}}i(Wl,"assertUnique");function ai(e,t){K(e,["schemaVersion","completeness","completenessReasons","resolverIdentity","compilerIdentity","compilerOptionsHash","tsconfigHash","evidenceRequirementsHash","projectPackageName","files","dependencies","capabilityUses","ambientUses","publishCalls","intentReferences","safetyUses","classShapes","arkRunKernelCalls","arkRunManagedNews","arkRunCompositionRootHits","arkRunDeclarations","arkOrderPlaneCalls","arkOrderGenericUpdates","arkOrderRootHits","arkOrderXiFieldWrites","arkOrderIngestWritesXi","arkOrderReleaseKeyCounts",...t?["candidateTreeHash","factsHash"]:[]],"$");let n=Ee(e,"schemaVersion",["1.0","1.1","1.2"],"$"),r=Ee(e,"completeness",["complete","partial","unavailable"],"$"),o=G(e,"completenessReasons","$").map((w,x)=>{let R=`$.completenessReasons[${x}]`,A=M(w,R);K(A,["code","message","file"],R);let h=A.file===void 0?void 0:H(A,"file",R);return{code:L(A,"code",R),message:L(A,"message",R),...h?{file:h}:{}}});if(r==="complete"&&o.length>0)throw new Error("$.completenessReasons must be empty when completeness is complete.");if(r!=="complete"&&o.length===0)throw new Error("$.completenessReasons must explain partial or unavailable facts.");let s=G(e,"files","$").map((w,x)=>{let R=`$.files[${x}]`,A=M(w,R);return K(A,["path","contentHash","parseStatus","parseDiagnosticCount","exportsOnlyTypes","typeOnlyExportNames","hasTopLevelSideEffects"],R),{path:H(A,"path",R),contentHash:L(A,"contentHash",R),parseStatus:Ee(A,"parseStatus",["parsed","invalid"],R),parseDiagnosticCount:ii(A,"parseDiagnosticCount",R),exportsOnlyTypes:U(A,"exportsOnlyTypes",R),typeOnlyExportNames:kt(A.typeOnlyExportNames,`${R}.typeOnlyExportNames`),hasTopLevelSideEffects:U(A,"hasTopLevelSideEffects",R)}}),a=G(e,"dependencies","$").map((w,x)=>{let R=`$.dependencies[${x}]`,A=M(w,R);K(A,["from","specifier","kind","typeOnly","line","resolution","target","namedBindings","targetTypeOnlyExports","sourcePureTypeModule","namedBindingsTypeOnly","portProofEligible"],R);let h=be(A,"specifier",R),D=be(A,"target",R),ie=Ee(A,"resolution",["resolved-project","resolved-external","unresolved","dynamic"],R);if(ie==="resolved-project"&&!D)throw new Error(`${R}.target is required for resolved-project dependencies.`);if(ie!=="resolved-project"&&D)throw new Error(`${R}.target is only allowed for resolved-project dependencies.`);if(ie!=="dynamic"&&!h)throw new Error(`${R}.specifier is required unless resolution is dynamic.`);return{from:H(A,"from",R),...h?{specifier:h}:{},kind:Ee(A,"kind",["import","export","dynamic-import","require"],R),typeOnly:U(A,"typeOnly",R),line:X(A,"line",R),resolution:ie,...D?{target:H(A,"target",R)}:{},...A.namedBindings!==void 0?{namedBindings:kt(A.namedBindings,`${R}.namedBindings`)}:{},...A.targetTypeOnlyExports!==void 0?{targetTypeOnlyExports:U(A,"targetTypeOnlyExports",R)}:{},...A.sourcePureTypeModule!==void 0?{sourcePureTypeModule:U(A,"sourcePureTypeModule",R)}:{},...A.namedBindingsTypeOnly!==void 0?{namedBindingsTypeOnly:U(A,"namedBindingsTypeOnly",R)}:{},...A.portProofEligible!==void 0?{portProofEligible:U(A,"portProofEligible",R)}:{}}}),l=G(e,"capabilityUses","$").map((w,x)=>{let R=`$.capabilityUses[${x}]`,A=M(w,R);return K(A,["file","line","symbol","capability","source"],R),{file:H(A,"file",R),line:X(A,"line",R),symbol:L(A,"symbol",R),capability:Ee(A,"capability",oi,R),source:Ee(A,"source",["ambient-global","import-based"],R)}}),c=G(e,"ambientUses","$").map((w,x)=>{let R=`$.ambientUses[${x}]`,A=M(w,R);return K(A,["file","line","symbol"],R),{file:H(A,"file",R),line:X(A,"line",R),symbol:L(A,"symbol",R)}}),p=G(e,"publishCalls","$").map((w,x)=>{let R=`$.publishCalls[${x}]`,A=M(w,R);K(A,["file","line","rawIntentName","objectHasIntent","arkPublishCandidate","hasSource","sourceIntent"],R);let h=be(A,"rawIntentName",R),D=be(A,"sourceIntent",R);return{file:H(A,"file",R),line:X(A,"line",R),...h?{rawIntentName:h}:{},objectHasIntent:U(A,"objectHasIntent",R),arkPublishCandidate:U(A,"arkPublishCandidate",R),hasSource:U(A,"hasSource",R),...D?{sourceIntent:D}:{}}}),f=G(e,"intentReferences","$").map((w,x)=>{let R=`$.intentReferences[${x}]`,A=M(w,R);return K(A,["file","line","intent"],R),{file:H(A,"file",R),line:X(A,"line",R),intent:L(A,"intent",R)}}),y=G(e,"safetyUses","$").map((w,x)=>{let R=`$.safetyUses[${x}]`,A=M(w,R);K(A,["file","line","kind","symbol"],R);let h=be(A,"symbol",R),D=Ee(A,"kind",["ts-suppression","any-cast","dynamic-import","dynamic-require","in-memory-store"],R);if(D==="in-memory-store"&&!h)throw new Error(`${R}.symbol is required for in-memory-store facts.`);if(D!=="in-memory-store"&&h)throw new Error(`${R}.symbol is only allowed for in-memory-store facts.`);return{file:H(A,"file",R),line:X(A,"line",R),kind:D,...h?{symbol:h}:{}}});Wl(s,w=>w.path,"$.files");let u=new Set(s.map(w=>w.path));for(let w of s){if(w.parseStatus==="parsed"&&w.parseDiagnosticCount!==0)throw new Error(`$.files[${w.path}].parseDiagnosticCount must be 0 when parseStatus is parsed.`);if(w.parseStatus==="invalid"&&w.parseDiagnosticCount===0)throw new Error(`$.files[${w.path}].parseDiagnosticCount must be positive when parseStatus is invalid.`)}if(r==="complete"&&s.some(w=>w.parseStatus==="invalid"))throw new Error("$.completeness cannot be complete when a candidate file failed to parse.");for(let w of a)if(!u.has(w.from))throw new Error(`$.dependencies references missing source file ${w.from}.`);let d=(e.arkRunKernelCalls===void 0?[]:G(e,"arkRunKernelCalls","$")).map((w,x)=>{let R=`$.arkRunKernelCalls[${x}]`,A=M(w,R);K(A,["file","line","kind","callee","viaImport","receiver","nameLiteral"],R);let h=be(A,"receiver",R),D=be(A,"nameLiteral",R);return{file:H(A,"file",R),line:X(A,"line",R),kind:Ee(A,"kind",["factory","publisher","publish","raise","send","subscribe","register-handler","resolve","resolve-singleton"],R),callee:L(A,"callee",R),viaImport:U(A,"viaImport",R),...h?{receiver:h}:{},...D?{nameLiteral:D}:{}}}),v=(e.arkRunManagedNews===void 0?[]:G(e,"arkRunManagedNews","$")).map((w,x)=>{let R=`$.arkRunManagedNews[${x}]`,A=M(w,R);K(A,["file","line","typeName","importedFrom"],R);let h=be(A,"importedFrom",R);return{file:H(A,"file",R),line:X(A,"line",R),typeName:L(A,"typeName",R),...h?{importedFrom:h}:{}}}),k=(e.arkRunCompositionRootHits===void 0?[]:G(e,"arkRunCompositionRootHits","$")).map((w,x)=>{let R=`$.arkRunCompositionRootHits[${x}]`,A=M(w,R);return K(A,["file","matchedRoot","hasKernelFactory"],R),{file:H(A,"file",R),matchedRoot:L(A,"matchedRoot",R),hasKernelFactory:U(A,"hasKernelFactory",R)}}),E=e.arkRunDeclarations===void 0?[]:G(e,"arkRunDeclarations","$"),N=(e.arkOrderPlaneCalls===void 0?[]:G(e,"arkOrderPlaneCalls","$")).map((w,x)=>{let R=`$.arkOrderPlaneCalls[${x}]`,A=M(w,R);return K(A,["file","line","callee"],R),{file:H(A,"file",R),line:X(A,"line",R),callee:L(A,"callee",R)}}),T=(e.arkOrderGenericUpdates===void 0?[]:G(e,"arkOrderGenericUpdates","$")).map((w,x)=>{let R=`$.arkOrderGenericUpdates[${x}]`,A=M(w,R);return K(A,["file","line","method"],R),{file:H(A,"file",R),line:X(A,"line",R),method:L(A,"method",R)}}),pe=(e.arkOrderRootHits===void 0?[]:G(e,"arkOrderRootHits","$")).map((w,x)=>{let R=`$.arkOrderRootHits[${x}]`,A=M(w,R);return K(A,["file","matchedRoot","hasPlaneFactory"],R),{file:H(A,"file",R),matchedRoot:L(A,"matchedRoot",R),hasPlaneFactory:U(A,"hasPlaneFactory",R)}}),F=(e.arkOrderXiFieldWrites===void 0?[]:G(e,"arkOrderXiFieldWrites","$")).map((w,x)=>{let R=`$.arkOrderXiFieldWrites[${x}]`,A=M(w,R);return K(A,["file","line","key"],R),{file:H(A,"file",R),line:X(A,"line",R),key:L(A,"key",R)}}),Y=(e.arkOrderIngestWritesXi===void 0?[]:G(e,"arkOrderIngestWritesXi","$")).map((w,x)=>{let R=`$.arkOrderIngestWritesXi[${x}]`,A=M(w,R);return K(A,["file","line"],R),{file:H(A,"file",R),line:X(A,"line",R)}}),lt=(e.arkOrderReleaseKeyCounts===void 0?[]:G(e,"arkOrderReleaseKeyCounts","$")).map((w,x)=>{let R=`$.arkOrderReleaseKeyCounts[${x}]`,A=M(w,R);return K(A,["file","line","keyCount"],R),{file:H(A,"file",R),line:X(A,"line",R),keyCount:X(A,"keyCount",R)}}),Ur=E.map((w,x)=>{let R=`$.arkRunDeclarations[${x}]`,A=M(w,R);return K(A,["file","line","uses","reactsTo","raises","sends"],R),{file:H(A,"file",R),line:X(A,"line",R),uses:kt(A.uses,`${R}.uses`),reactsTo:kt(A.reactsTo,`${R}.reactsTo`),raises:kt(A.raises,`${R}.raises`),sends:kt(A.sends,`${R}.sends`)}});for(let[w,x]of[["$.capabilityUses",l],["$.ambientUses",c],["$.publishCalls",p],["$.intentReferences",f],["$.safetyUses",y],["$.arkRunKernelCalls",d],["$.arkRunManagedNews",v],["$.arkRunCompositionRootHits",k],["$.arkRunDeclarations",Ur],["$.arkOrderPlaneCalls",N],["$.arkOrderGenericUpdates",T],["$.arkOrderRootHits",pe],["$.arkOrderXiFieldWrites",F],["$.arkOrderIngestWritesXi",Y],["$.arkOrderReleaseKeyCounts",lt]])for(let R of x)if(!u.has(R.file))throw new Error(`${w} references missing file ${R.file}.`);let Kt=be(e,"projectPackageName","$"),Ut=(e.classShapes===void 0?[]:G(e,"classShapes","$")).map((w,x)=>{let R=`$.classShapes[${x}]`,A=M(w,R);K(A,["file","className","exported","hasPublicMutableFields","hasPublicSetters","hasPublicConstructor","hasStaticFactory","mutatingMethods","dataOnly"],R);let h=G(A,"mutatingMethods",R).map((D,ie)=>{let fe=`${R}.mutatingMethods[${ie}]`,Gr=M(D,fe);return K(Gr,["name","referencesGuardOrPublish"],fe),{name:L(Gr,"name",fe),referencesGuardOrPublish:U(Gr,"referencesGuardOrPublish",fe)}});return{file:H(A,"file",R),className:L(A,"className",R),exported:U(A,"exported",R),hasPublicMutableFields:U(A,"hasPublicMutableFields",R),hasPublicSetters:U(A,"hasPublicSetters",R),hasPublicConstructor:U(A,"hasPublicConstructor",R),hasStaticFactory:U(A,"hasStaticFactory",R),mutatingMethods:h,...A.dataOnly===void 0?{}:{dataOnly:U(A,"dataOnly",R)}}});return{schemaVersion:n,completeness:r,completenessReasons:o,resolverIdentity:L(e,"resolverIdentity","$"),compilerIdentity:L(e,"compilerIdentity","$"),compilerOptionsHash:L(e,"compilerOptionsHash","$"),tsconfigHash:L(e,"tsconfigHash","$"),evidenceRequirementsHash:L(e,"evidenceRequirementsHash","$"),...Kt?{projectPackageName:Kt}:{},files:s,dependencies:a,capabilityUses:l,ambientUses:c,publishCalls:p,intentReferences:f,safetyUses:y,classShapes:Ut,arkRunKernelCalls:d,arkRunManagedNews:v,arkRunCompositionRootHits:k,arkRunDeclarations:Ur,arkOrderPlaneCalls:N,arkOrderGenericUpdates:T,arkOrderRootHits:pe,arkOrderXiFieldWrites:F,arkOrderIngestWritesXi:Y,arkOrderReleaseKeyCounts:lt}}i(ai,"parseResolvedFactsInput");function ve(e){let t=M(e,"$"),n=L(t,"factsHash","$"),r=L(t,"candidateTreeHash","$"),o=si(ai(t,!0));if(o.factsHash!==n)throw new Error(`$.factsHash does not match the canonical payload (${o.factsHash}).`);if(r!==o.candidateTreeHash)throw new Error(`$.candidateTreeHash does not match the canonical file tree (${o.candidateTreeHash}).`);return o}i(ve,"loadResolvedCandidateFacts");var zl=["network","filesystem","clock","randomness","environment","process","persistence"],P={type:"string",minLength:1},ee={type:"integer",minimum:1},V={type:"string",minLength:1,pattern:"^(?!/)(?![A-Za-z]:/)(?!.*\\\\)(?!.*//)(?!.*(?:^|/)\\.{1,2}(?:/|$))(?!.*[\\u0000-\\u001f\\u007f])(?!.*\\/$).+$"},cr={$schema:"https://json-schema.org/draft/2020-12/schema",$id:"https://unpkg.com/arkgate@3/schemas/ark.resolved-candidate-facts.schema.json",title:"ArkGate resolved candidate facts",type:"object",additionalProperties:!1,required:["schemaVersion","completeness","completenessReasons","resolverIdentity","compilerIdentity","compilerOptionsHash","tsconfigHash","candidateTreeHash","evidenceRequirementsHash","files","dependencies","capabilityUses","ambientUses","publishCalls","intentReferences","safetyUses","factsHash"],properties:{schemaVersion:{enum:["1.0","1.1","1.2"]},completeness:{enum:["complete","partial","unavailable"]},completenessReasons:{type:"array",items:{type:"object",additionalProperties:!1,required:["code","message"],properties:{code:P,message:P,file:V}}},resolverIdentity:P,compilerIdentity:P,compilerOptionsHash:P,tsconfigHash:P,candidateTreeHash:P,evidenceRequirementsHash:P,projectPackageName:P,files:{type:"array",uniqueItems:!0,items:{type:"object",additionalProperties:!1,required:["path","contentHash","parseStatus","parseDiagnosticCount","exportsOnlyTypes","typeOnlyExportNames","hasTopLevelSideEffects"],properties:{path:V,contentHash:P,parseStatus:{enum:["parsed","invalid"]},parseDiagnosticCount:{type:"integer",minimum:0},exportsOnlyTypes:{type:"boolean"},typeOnlyExportNames:{type:"array",items:P},hasTopLevelSideEffects:{type:"boolean"}},allOf:[{if:{properties:{parseStatus:{const:"parsed"}}},then:{properties:{parseDiagnosticCount:{const:0}}}},{if:{properties:{parseStatus:{const:"invalid"}}},then:{properties:{parseDiagnosticCount:{minimum:1}}}}]}},dependencies:{type:"array",items:{type:"object",additionalProperties:!1,required:["from","kind","typeOnly","line","resolution"],properties:{from:V,specifier:P,kind:{enum:["import","export","dynamic-import","require"]},typeOnly:{type:"boolean"},line:ee,resolution:{enum:["resolved-project","resolved-external","unresolved","dynamic"]},target:V,namedBindings:{type:"array",items:P},targetTypeOnlyExports:{type:"boolean"},sourcePureTypeModule:{type:"boolean"},namedBindingsTypeOnly:{type:"boolean"},portProofEligible:{type:"boolean"}},allOf:[{if:{properties:{resolution:{const:"resolved-project"}}},then:{required:["target"]},else:{not:{required:["target"]}}},{if:{properties:{resolution:{const:"dynamic"}}},else:{required:["specifier"]}}]}},capabilityUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","symbol","capability","source"],properties:{file:V,line:ee,symbol:P,capability:{enum:zl},source:{enum:["ambient-global","import-based"]}}}},ambientUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","symbol"],properties:{file:V,line:ee,symbol:P}}},publishCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","objectHasIntent","arkPublishCandidate","hasSource"],properties:{file:V,line:ee,rawIntentName:P,objectHasIntent:{type:"boolean"},arkPublishCandidate:{type:"boolean"},hasSource:{type:"boolean"},sourceIntent:P}}},intentReferences:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","intent"],properties:{file:V,line:ee,intent:P}}},safetyUses:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","kind"],properties:{file:V,line:ee,kind:{enum:["ts-suppression","any-cast","dynamic-import","dynamic-require","in-memory-store"]},symbol:P},allOf:[{if:{properties:{kind:{const:"in-memory-store"}}},then:{required:["symbol"]},else:{not:{required:["symbol"]}}}]}},classShapes:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","className","exported","hasPublicMutableFields","hasPublicSetters","hasPublicConstructor","hasStaticFactory","mutatingMethods"],properties:{file:V,className:P,exported:{type:"boolean"},hasPublicMutableFields:{type:"boolean"},hasPublicSetters:{type:"boolean"},hasPublicConstructor:{type:"boolean"},hasStaticFactory:{type:"boolean"},dataOnly:{type:"boolean"},mutatingMethods:{type:"array",items:{type:"object",additionalProperties:!1,required:["name","referencesGuardOrPublish"],properties:{name:P,referencesGuardOrPublish:{type:"boolean"}}}}}}},arkRunKernelCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","kind","callee","viaImport"],properties:{file:V,line:ee,kind:{enum:["factory","publisher","publish","raise","send","subscribe","register-handler","resolve","resolve-singleton"]},callee:P,viaImport:{type:"boolean"},receiver:P,nameLiteral:P}}},arkRunManagedNews:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","typeName"],properties:{file:V,line:ee,typeName:P,importedFrom:P}}},arkRunCompositionRootHits:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","matchedRoot","hasKernelFactory"],properties:{file:V,matchedRoot:P,hasKernelFactory:{type:"boolean"}}}},arkRunDeclarations:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","uses","reactsTo","raises","sends"],properties:{file:V,line:ee,uses:{type:"array",items:P},reactsTo:{type:"array",items:P},raises:{type:"array",items:P},sends:{type:"array",items:P}}}},arkOrderPlaneCalls:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","callee"],properties:{file:V,line:ee,callee:P}}},arkOrderGenericUpdates:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","method"],properties:{file:V,line:ee,method:P}}},arkOrderRootHits:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","matchedRoot","hasPlaneFactory"],properties:{file:V,matchedRoot:P,hasPlaneFactory:{type:"boolean"}}}},arkOrderXiFieldWrites:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","key"],properties:{file:V,line:ee,key:P}}},arkOrderIngestWritesXi:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line"],properties:{file:V,line:ee}}},arkOrderReleaseKeyCounts:{type:"array",items:{type:"object",additionalProperties:!1,required:["file","line","keyCount"],properties:{file:V,line:ee,keyCount:{type:"integer",minimum:1}}}},factsHash:P},allOf:[{if:{properties:{completeness:{const:"complete"}}},then:{properties:{completenessReasons:{maxItems:0},files:{items:{properties:{parseStatus:{const:"parsed"}}}}}}},{if:{properties:{completeness:{enum:["partial","unavailable"]}}},then:{properties:{completenessReasons:{minItems:1}}}}]};var dr="1.0";function re(e){return`${e.from}->${e.to}`}i(re,"dependencyKey");function hn(e,t,n,r="dependency"){return{id:`${e}:${r}:${re(t)}`,classification:e,subject:"dependency",from:t.from,to:t.to,message:n,...e==="missing"?{nextAction:`Add the planned dependency ${re(t)} to the candidate, then preflight again.`}:e==="contradictory"?{nextAction:`Replace the reverse dependency with ${re(t)}, then preflight again.`}:e==="unplanned"?{nextAction:r==="dependency-removed"?`Restore the removed dependency ${re(t)} in the candidate, then preflight again.`:`Remove the unplanned dependency ${re(t)} from the candidate, then preflight again.`}:{}}}i(hn,"dependencyFinding");function Qe(e){let t=[],n=new Map(e.changeMap.map.files.map(u=>[u.path,u])),r=new Map(e.changes.map(u=>[u.path,u])),o=new Map(e.changeMap.map.dependencies.map(u=>[re(u),u])),s=new Map(e.baseDependencies.map(u=>[re(u),u])),a=new Map(e.candidateDependencies.map(u=>[re(u),u]));for(let u of[...n.values()].sort((g,d)=>g.path.localeCompare(d.path))){let g=r.get(u.path);g?g.operation!==u.operation?t.push({id:`contradictory:file:${u.path}`,classification:"contradictory",subject:"file",path:u.path,expectedOperation:u.operation,actualOperation:g.operation,message:`${u.path} was planned as ${u.operation} but the actual operation is ${g.operation}.`,nextAction:`Change ${u.path} to the planned ${u.operation} operation, then preflight again.`}):t.push({id:`satisfied:file:${u.path}`,classification:"satisfied",subject:"file",path:u.path,expectedOperation:u.operation,actualOperation:g.operation,message:`${u.path} matches the planned ${u.operation} operation.`}):t.push({id:`missing:file:${u.path}`,classification:"missing",subject:"file",path:u.path,expectedOperation:u.operation,message:`${u.path} was planned as ${u.operation} but is absent from the actual change.`,nextAction:`${u.operation[0].toUpperCase()}${u.operation.slice(1)} ${u.path} in the complete change set, then preflight again.`})}for(let u of[...r.values()].sort((g,d)=>g.path.localeCompare(d.path)))n.has(u.path)||t.push({id:`unplanned:file:${u.path}`,classification:"unplanned",subject:"file",path:u.path,actualOperation:u.operation,message:`${u.path} has an unplanned ${u.operation} operation.`,nextAction:`Remove ${u.path} from the change set, then preflight again.`});let l=new Set;for(let u of[...o.values()].sort((g,d)=>re(g).localeCompare(re(d)))){if(a.has(re(u))){t.push(hn("satisfied",u,`${u.from} -> ${u.to} exists in the candidate architecture.`));continue}let g={from:u.to,to:u.from};a.has(re(g))?(l.add(re(g)),t.push(hn("contradictory",u,`${u.from} -> ${u.to} was planned, but the candidate contains the reverse edge.`))):t.push(hn("missing",u,`${u.from} -> ${u.to} is absent from the candidate architecture.`))}let c=new Set([...n.keys(),...r.keys()]);for(let[u,g]of[...a].sort(([d],[m])=>d.localeCompare(m)))s.has(u)||o.has(u)||l.has(u)||!c.has(g.from)&&!c.has(g.to)||t.push({...hn("unplanned",g,`${g.from} -> ${g.to} was added without a matching planned dependency.`,"dependency-added"),actualOperation:"added"});let p=new Set(e.changeMap.map.files.filter(u=>u.operation==="delete").map(u=>u.path));for(let[u,g]of[...s].sort(([d],[m])=>d.localeCompare(m)))a.has(u)||p.has(g.from)||p.has(g.to)||!c.has(g.from)&&!c.has(g.to)||t.push({...hn("unplanned",g,`${g.from} -> ${g.to} was removed without a planned file deletion.`,"dependency-removed"),actualOperation:"removed"});let f={satisfied:0,missing:1,contradictory:2,unplanned:3};t.sort((u,g)=>f[u.classification]-f[g.classification]||(u.subject===g.subject?0:u.subject==="file"?-1:1)||u.id.localeCompare(g.id));let y={satisfied:t.filter(u=>u.classification==="satisfied").length,missing:t.filter(u=>u.classification==="missing").length,contradictory:t.filter(u=>u.classification==="contradictory").length,unplanned:t.filter(u=>u.classification==="unplanned").length};return{schemaVersion:"1.0",readOnly:!0,changeMapHash:e.changeMap.hash,structurallyConverged:y.missing===0&&y.contradictory===0&&y.unplanned===0,behavioralCompletion:"not-evaluated",summary:y,findings:t}}i(Qe,"analyzeArchitectureConvergence");var li="https://unpkg.com/arkgate/schemas/ark.arkrules.schema.json",ql=["aggregate-private-state","always-valid-factory","domain-event-on-mutation","orchestration-only","thin-adapter","writes-via-aggregate","no-anemic-model","invariant-coverage"];var ci={type:"array",items:{type:"string",minLength:1},uniqueItems:!0},Eg={$schema:"https://json-schema.org/draft/2020-12/schema",$id:li,title:"ArkGate ArkRules (intra-layer contract)",description:"Per-layer structure sensors and invariant catalog consumed by the ArkGate Effective Contract.",type:"object",additionalProperties:!1,required:["schemaVersion","layer"],properties:{$schema:{type:"string",minLength:1,default:li},schemaVersion:{type:"string",const:"1.0",default:"1.0"},layer:{type:"string",minLength:1},structure:{type:"array",default:[],items:{$ref:"#/$defs/structureEntry"}},invariants:{type:"array",default:[],items:{$ref:"#/$defs/invariantEntry"}}},$defs:{structureEntry:{type:"object",additionalProperties:!1,required:["id","sensor"],properties:{id:{type:"string",minLength:1},sensor:{type:"string",enum:[...ql]},mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},appliesTo:ci,description:{type:"string",minLength:1}}},invariantEntry:{type:"object",additionalProperties:!1,required:["id","description"],properties:{id:{type:"string",minLength:1},description:{type:"string",minLength:1},aggregate:{type:"string",minLength:1},coverage:{type:"object",additionalProperties:!1,properties:{test:{type:"boolean"},symbol:{type:"string",minLength:1}}},mode:{type:"string",enum:["advisory","enforced"],default:"advisory"},appliesTo:ci}}}};function Rn(){return{schemaVersion:"1.0",byLayer:{},structure:[],invariants:[]}}i(Rn,"emptyEffectiveArkRules");function Co(e){return{...e,layers:e.layers.map(t=>{let{description:n,trustBoundary:r,owners:o,...s}=t;return s})}}i(Co,"omitLayerDescriptions");function di(e){let{stewards:t,...n}=Co(e.config);return{config:n,arkRules:{schemaVersion:e.arkRules.schemaVersion,structure:e.arkRules.structure.map(r=>({id:r.id,sensor:r.sensor,mode:r.mode,appliesTo:r.appliesTo??null,description:r.description??null,provenance:r.provenance})),invariants:e.arkRules.invariants.map(r=>({id:r.id,description:r.description,aggregate:r.aggregate??null,coverage:r.coverage??null,mode:r.mode,appliesTo:r.appliesTo??null,provenance:r.provenance}))}}}i(di,"effectiveContractPolicyPayload");function ui(e,t=!1){if(!e)return"";let n=e.discarded,r=[];if(n.budget>0&&!t&&r.push(`${n.budget} past the ${e.maxFiles}-file budget`),n.noInvariantMention>0&&r.push(`${n.noInvariantMention} naming no catalogued invariant`),n.oversize>0&&r.push(`${n.oversize} over the per-file byte cap`),n.unreadable>0&&r.push(`${n.unreadable} unreadable (files or directories)`),n.depthLimited>0&&r.push(`${n.depthLimited} directories past the walk depth limit`),n.outOfRoot>0&&r.push(`${n.outOfRoot} symlinked outside the project root`),r.length===0)return"";let o=t?"":` (loaded ${e.filesLoaded} files, kept ${e.testFilesRetained} tests)`;return` Scan discarded ${r.join(", ")}${o}.`}i(ui,"formatCoverageDiscards");function Yl(e,t){let n=e.replace(/\\/g,"/").replace(/^\.\//,"");return t.some(r=>{let o=r.replace(/\\/g,"/").replace(/^\.\//,"").replace(/\/+$/,"");return o===""||o==="."?!0:n===o||n.startsWith(`${o}/`)})}i(Yl,"isUnderCoverageRoot");function Xl(e,t){let n=t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return new RegExp(`(?:describe|it|test|context)\\s*\\(\\s*['"\`][^'"\`]*${n}[^'"\`]*['"\`]`,"i").test(e)||e.includes(t)}i(Xl,"titleMatchesInvariant");function Zl(e,t){if(!t)return!1;let n=t.split("."),r=n[n.length-1],o=n.length>1?n[0]:null;for(let s of Object.values(e))if(!(o&&!s.includes(o))&&(new RegExp(`(?:function\\s+|\\b)${r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}\\s*[(<]`).test(s)||s.includes(t)))return!0;return!1}i(Zl,"symbolPresent");function pi(e){let t=e.arkRules.invariants??[];if(t.length===0)return{coverage:[],violations:[],partial:!1};let n=e.testFiles??[],r=e.testGlobsMissing===!0||n.length===0,o=e.coverageBudgetExhausted===!0,s=e.coverageStats,a=ui(s),l=ui(s,!0),c=s?`coverage file budget exhausted: ${s.filesLoaded} files loaded at the ${s.maxFiles}-file cap, ${s.testFilesRetained} tests retained, ${s.discarded.budget} files discarded at the cap; raise "coverage.maxFiles" in ark.config.json (the cap bounds files RETAINED as evidence${typeof s.filesRead=="number"?`; ${s.filesRead} were read`:""})`:"coverage file budget exhausted",p=(e.coverageRoots??[]).filter(d=>typeof d=="string"&&d.length>0),f=p.length>0,y=p.join(", "),u=[],g=[];for(let d of t){let m=[],v=d.coverage?.test!==!1,S=d.coverage?.symbol,k,E;if(!r&&v){let T;for(let Q of n){let pe=e.fileContents[Q];if(!(!pe||!Xl(pe,d.id))){if(!f||Yl(Q,p)){k=Q,E=f?!1:void 0;break}T??=Q}}k===void 0&&T!==void 0&&(k=T,E=!0),k!==void 0&&m.push("test-title")}S&&Zl(e.fileContents,S)&&m.push("symbol");let N=(d.coverage?.test===!0||!!S||d.coverage===void 0)&&m.length>0||d.coverage?.test===!1&&!S?!0:m.length>0,b=r&&v&&m.length===0;if(u.push({invariantId:d.id,layer:d.provenance.layer,sourceFile:d.provenance.sourceFile,mode:d.mode,covered:N&&!b,evidence:m,partial:b,description:d.description,...k!==void 0?{testEvidenceFile:k}:{},...E!==void 0?{outsideDeclaredRoots:E}:{}}),E===!0&&k!==void 0&&g.push({ruleId:"INVARIANT_COVERAGE_OUTSIDE_ROOTS",message:`Invariant ${d.id} is covered only by ${k}, which is outside the declared coverage roots (${y}). ArkGate matches declared text and never executes tests, so it cannot tell whether that file is run: move the test under a declared root, or add its root to "coverage.coverageRoots" in ark.config.json.`,file:k,line:1,arkruleId:d.id,arkruleSource:d.provenance.sourceFile,fromLayer:d.provenance.layer,severity:"warning",failsStrict:!1}),!N||b){let T=d.mode==="enforced"&&!b,Q=r||n.length===0?"never-had-tests":"tests-disappeared";g.push({ruleId:"INVARIANT_UNCOVERED",message:(b?o?`Invariant ${d.id} coverage cannot be proven (${c}); reporting partial, not covered.`:`Invariant ${d.id} coverage cannot be proven (test globs missing or empty); reporting partial, not covered (never-had-tests).`:Q==="tests-disappeared"?`Invariant ${d.id}: no scanned test names it in a describe/it title and no declared symbol was found (tests-disappeared \u2014 a suite exists). ArkGate matches declared text; it never executes tests.`:`Invariant ${d.id}: no scanned test names it in a describe/it title and no declared symbol was found (never-had-tests \u2014 the scan found no tests at all). ArkGate matches declared text; it never executes tests.`)+(b&&o?l:a),file:d.provenance.sourceFile,line:1,arkruleId:d.id,arkruleSource:d.provenance.sourceFile,fromLayer:d.provenance.layer,severity:T?"error":"warning",failsStrict:T,kind:Q})}}return{coverage:u,violations:g,partial:u.some(d=>d.partial)}}i(pi,"evaluateInvariantCoverage");function fi(e){return e?e.partial?{ok:!1,reason:"Coverage is partial (missing test globs); cannot promote until evidence is complete."}:e.covered?e.outsideDeclaredRoots===!0?{ok:!1,reason:`Invariant ${e.invariantId} is covered only by ${e.testEvidenceFile??"a test"}, outside the declared coverage roots; ArkGate cannot tell whether that test runs, so it will not promote on it.`}:{ok:!0,reason:`Invariant ${e.invariantId} has coverage evidence.`}:{ok:!1,reason:`Invariant ${e.invariantId} is uncovered; add a test title or symbol before promoting to enforced.`}:{ok:!1,reason:"No coverage evidence supplied for this invariant; evaluate coverage before promoting to enforced."}}i(fi,"canPromoteInvariant");var pr="1.0";function _(e,t){e.push({id:`${t.classification}:${t.path}:${t.kind}`,path:t.path,classification:t.classification,message:t.message,...t.classification==="weakening"||t.classification==="judgment-required"?{nextAction:`Restore the previous protection at ${t.path}, then run ArkGate again.`}:{},...t.before===void 0?{}:{before:t.before},...t.after===void 0?{}:{after:t.after}})}i(_,"addFinding");function q(e){return[...new Set(e??[])].sort()}i(q,"sortedUnique");function ue(e,t,n,r,o){let s=q(n),a=q(r),l=new Set(s),c=new Set(a),p=a.filter(y=>!l.has(y)),f=s.filter(y=>!c.has(y));p.length===0&&f.length===0||(p.length>0&&_(e,{kind:"added",path:t,classification:o.added,message:o.addedMessage,before:s,after:a}),f.length>0&&_(e,{kind:"removed",path:t,classification:o.removed,message:o.removedMessage,before:s,after:a}))}i(ue,"compareStringSets");function An(e,t,n,r,o,s,a){if(n===r)return;_(e,{kind:r?"enabled":"disabled",path:t,classification:r?o:o==="strengthening"?"weakening":"strengthening",message:r?s:a,before:n,after:r})}i(An,"compareBoolean");function ur(e,t){let n=new Map,r=new Set;for(let o of e){let s=t(o);n.has(s)?r.add(s):n.set(s,o)}return{values:n,duplicates:[...r].sort()}}i(ur,"keyed");function Jl(e,t,n){let r=ur(t,s=>s.name),o=ur(n,s=>s.name);(r.duplicates.length>0||o.duplicates.length>0)&&_(e,{kind:"duplicate-layer",path:"$.layers",classification:"judgment-required",message:"Duplicate layer names make policy ownership ambiguous.",before:r.duplicates,after:o.duplicates});for(let s of[...new Set([...r.values.keys(),...o.values.keys()])].sort()){let a=r.values.get(s),l=o.values.get(s),c=`$.layers[${s}]`;if(!a&&l){_(e,{kind:"layer-added",path:c,classification:"judgment-required",message:"A layer was added; verify overlap, ownership, and rule coverage.",after:l});continue}if(a&&!l){_(e,{kind:"layer-removed",path:c,classification:"weakening",message:"Removing a layer can leave its source paths ungoverned.",before:a});continue}if(!a||!l)continue;ue(e,`${c}.patterns`,a.patterns,l.patterns,{added:"strengthening",removed:"weakening",addedMessage:"Additional paths are governed by this layer.",removedMessage:"Paths were removed from this layer and may become ungoverned."}),ue(e,`${c}.exclude`,a.exclude,l.exclude,{added:"weakening",removed:"strengthening",addedMessage:"Additional paths are excluded from this layer.",removedMessage:"Fewer paths are excluded from this layer."});let p=ar(a),f=ar(l);ue(e,`${c}.forbiddenGlobals`,p.rawGlobals,f.rawGlobals,{added:"strengthening",removed:"weakening",addedMessage:"Additional forbidden globals are enforced in this layer.",removedMessage:"A forbidden-global protection was removed from this layer."}),ue(e,`${c}.capabilities`,p.atoms,f.atoms,{added:"strengthening",removed:"weakening",addedMessage:"Additional ambient/import protection is enforced in this layer (coverage atoms).",removedMessage:"An ambient/import protection was lost from this layer (coverage atoms)."}),q(a.intentPrefixes).join("\0")!==q(l.intentPrefixes).join("\0")&&_(e,{kind:"intent-prefixes-changed",path:`${c}.intentPrefixes`,classification:"judgment-required",message:"Intent ownership changed and must be reviewed against publishers and consumers.",before:q(a.intentPrefixes),after:q(l.intentPrefixes)}),An(e,`${c}.mayImportInfrastructure`,a.mayImportInfrastructure===!0,l.mayImportInfrastructure===!0,"weakening","The layer may now import infrastructure directly.","Direct infrastructure imports are no longer allowed for this layer."),An(e,`${c}.optional`,a.optional===!0,l.optional===!0,"weakening","The layer is now optional and can be absent without a strict warning.","The layer is now required when its contract is active.")}}i(Jl,"compareLayers");function Ql(e,t,n){let r=i(a=>`${a.from}->${a.to}`,"keyOf"),o=ur(t,r),s=ur(n,r);(o.duplicates.length>0||s.duplicates.length>0)&&_(e,{kind:"duplicate-rule",path:"$.rules",classification:"judgment-required",message:"Duplicate rule edges make the effective verdict order-dependent.",before:o.duplicates,after:s.duplicates});for(let a of[...new Set([...o.values.keys(),...s.values.keys()])].sort()){let l=o.values.get(a),c=s.values.get(a),p=`$.rules[${a}]`;if(!l&&c){c.allowed===!1&&_(e,{kind:"deny-added",path:p,classification:"strengthening",message:"A denied dependency edge was added.",after:c});continue}if(l&&!c){l.allowed===!1&&_(e,{kind:"deny-removed",path:p,classification:"weakening",message:"A denied dependency edge was removed.",before:l});continue}if(!l||!c)continue;l.allowed!==c.allowed&&_(e,{kind:c.allowed?"deny-disabled":"deny-enabled",path:`${p}.allowed`,classification:c.allowed?"weakening":"strengthening",message:c.allowed?"A previously denied dependency edge is now allowed.":"A dependency edge is now denied.",before:l.allowed,after:c.allowed});let f=l.peerIsolation===!0,y=c.peerIsolation===!0;if(f!==y){let u=l.from===l.to&&c.from===c.to;_(e,{kind:y?"peer-isolation-enabled":"peer-isolation-disabled",path:`${p}.peerIsolation`,classification:u?y?"strengthening":"weakening":"judgment-required",message:u?y?"Cross-slice dependencies inside this layer are now denied.":"Cross-slice dependencies inside this layer are no longer denied.":"Changing peer isolation on a cross-layer edge changes the denial scope.",before:f,after:y})}q(l.sliceFolders).join("\0")!==q(c.sliceFolders).join("\0")&&_(e,{kind:"slice-folders-changed",path:`${p}.sliceFolders`,classification:"judgment-required",message:"Slice ownership folders changed and can reclassify existing dependencies.",before:q(l.sliceFolders),after:q(c.sliceFolders)}),!(!f&&!y)&&(mi(e,`${p}.sharedRoots`,"shared-roots",q(l.sharedRoots),q(c.sharedRoots),"Roots declared shared are exempt from the peerIsolation unclassifiable denial.","Roots are no longer declared shared and fall back to the peerIsolation denial."),mi(e,`${p}.allowedCrossSlice`,"cross-slice-allowance",q((l.allowedCrossSlice??[]).map(gi)),q((c.allowedCrossSlice??[]).map(gi)),"Directed cross-slice edges are now allowed by declaration.","Directed cross-slice edges are no longer declared and deny again."))}}i(Ql,"compareRules");function gi(e){return JSON.stringify([e.from,e.to])}i(gi,"crossSliceKey");function mi(e,t,n,r,o,s,a){if(JSON.stringify(r)===JSON.stringify(o))return;let l=o.filter(f=>!r.includes(f)),c=r.filter(f=>!o.includes(f)),p=l.length>0&&c.length>0;_(e,{kind:p?`${n}-changed`:l.length>0?`${n}-added`:`${n}-removed`,path:t,classification:p?"judgment-required":l.length>0?"weakening":"strengthening",message:p?`${s} Entries were added and removed in the same change.`:l.length>0?s:a,before:r,after:o})}i(mi,"compareDeclaredExceptions");function ec(e,t,n){let r=t.safety??{},o=n.safety??{};for(let s of["maxTsSuppressions","maxAnyCasts"]){let a=r[s]??0,l=o[s]??0;a!==l&&_(e,{kind:l>a?"threshold-raised":"threshold-lowered",path:`$.safety.${s}`,classification:l>a?"weakening":"strengthening",message:l>a?"The safety threshold allows more violations.":"The safety threshold allows fewer violations.",before:a,after:l})}for(let s of["allowInMemory","allowDisabledPeerIsolation"])An(e,`$.safety.${s}`,r[s]===!0,o[s]===!0,"weakening","A safety exception was enabled.","A safety exception was disabled.")}i(ec,"compareSafety");function xo(e){return e.mode==="enforced"?"enforced":"advisory"}i(xo,"arkRunMode");function Oo(e){return e.mode==="enforced"?"enforced":"advisory"}i(Oo,"arkOrderMode");function tc(e,t,n){let r=t.arkOrder,o=n.arkOrder,s="$.arkOrder";if(!r&&!o)return;if(!r&&o){_(e,{kind:"arkorder-added",path:s,classification:"strengthening",message:`ArkOrder extra was added (${Oo(o)}).`,after:o});return}if(r&&!o){_(e,{kind:"arkorder-removed",path:s,classification:"weakening",message:"ArkOrder extra was removed.",before:r});return}if(!r||!o)return;let a=Oo(r),l=Oo(o);if(a!==l){let c=a==="advisory"&&l==="enforced";_(e,{kind:c?"arkorder-promoted":"arkorder-demoted",path:`${s}.mode`,classification:c?"strengthening":"weakening",message:c?"ArkOrder extra was promoted to enforced.":"ArkOrder extra was demoted to advisory.",before:a,after:l})}ue(e,`${s}.planeRoots`,r.planeRoots,o.planeRoots,{added:"strengthening",removed:"weakening",addedMessage:"Additional ArkOrder plane roots are governed.",removedMessage:"ArkOrder plane roots were removed and may skip the plane."}),ue(e,`${s}.managedLayers`,r.managedLayers,o.managedLayers,{added:"strengthening",removed:"weakening",addedMessage:"Additional layers are managed by ArkOrder.",removedMessage:"Layers were removed from ArkOrder management."})}i(tc,"compareArkOrder");function nc(e,t,n){let r=t.arkRun,o=n.arkRun,s="$.arkRun";if(!r&&!o)return;if(!r&&o){_(e,{kind:"arkrun-added",path:s,classification:"strengthening",message:`ArkRun extra was added (${xo(o)}).`,after:o});return}if(r&&!o){_(e,{kind:"arkrun-removed",path:s,classification:"weakening",message:"ArkRun extra was removed.",before:r});return}if(!r||!o)return;let a=xo(r),l=xo(o);if(a!==l){let c=a==="advisory"&&l==="enforced";_(e,{kind:c?"arkrun-promoted":"arkrun-demoted",path:`${s}.mode`,classification:c?"strengthening":"weakening",message:c?"ArkRun extra was promoted to enforced.":"ArkRun extra was demoted to advisory.",before:a,after:l})}ue(e,`${s}.compositionRoots`,r.compositionRoots,o.compositionRoots,{added:"strengthening",removed:"weakening",addedMessage:"Additional ArkRun composition roots are governed.",removedMessage:"ArkRun composition roots were removed and may skip the kernel."}),ue(e,`${s}.managedLayers`,r.managedLayers,o.managedLayers,{added:"strengthening",removed:"weakening",addedMessage:"Additional layers are managed by ArkRun.",removedMessage:"Layers were removed from ArkRun management."}),An(e,`${s}.requireDeclarations`,r.requireDeclarations!==!1,o.requireDeclarations!==!1,"strengthening","ArkRun now requires interaction declarations.","ArkRun no longer requires interaction declarations.")}i(nc,"compareArkRun");function rc(e){return e.some(t=>t.classification==="weakening")?"weakening":e.some(t=>t.classification==="judgment-required")?"judgment-required":e.some(t=>t.classification==="strengthening")?"strengthening":"neutral"}i(rc,"overallClassification");function yi(e,t){return`${e}::${t}`}i(yi,"ruleKey");function hi(e){let t=new Map,n=new Map;if(!e)return{structure:t,invariants:n};for(let r of e.structure)t.set(yi(r.provenance.layer,r.id),r);for(let r of e.invariants)n.set(yi(r.provenance.layer,r.id),r);return{structure:t,invariants:n}}i(hi,"indexEffectiveRules");function oc(e,t,n,r,o,s){let a=new Map((s??[]).map(u=>[u.invariantId,u])),l=t.arkRules??{},c=n.arkRules??{},p=[...new Set([...Object.keys(l),...Object.keys(c)])].sort();for(let u of p){let g=l[u],d=c[u],m=`$.arkRules[${u}]`;if(g===void 0&&d!==void 0){_(e,{kind:"arkrules-ref-added",path:m,classification:"strengthening",message:`ArkRules reference for layer ${u} was added.`,after:d});continue}if(g!==void 0&&d===void 0){_(e,{kind:"arkrules-ref-removed",path:m,classification:"weakening",message:`ArkRules reference for layer ${u} was removed.`,before:g});continue}g!==d&&_(e,{kind:"arkrules-ref-path-changed",path:m,classification:"judgment-required",message:`ArkRules file path for layer ${u} changed; verify the effective rules still match intent.`,before:g,after:d})}let f=hi(r),y=hi(o);for(let u of[...new Set([...f.structure.keys(),...y.structure.keys()])].sort()){let g=f.structure.get(u),d=y.structure.get(u),m=`$.arkRules.structure[${u}]`;if(!g&&d){_(e,{kind:"arkrule-structure-added",path:m,classification:"strengthening",message:`Structure ArkRule ${d.id} was added (${d.mode}).`,after:d});continue}if(g&&!d){_(e,{kind:"arkrule-structure-removed",path:m,classification:"weakening",message:`Structure ArkRule ${g.id} was removed.`,before:g});continue}if(!(!g||!d)){if(g.mode!==d.mode){let v=g.mode==="advisory"&&d.mode==="enforced";_(e,{kind:v?"arkrule-promoted":"arkrule-demoted",path:`${m}.mode`,classification:v?"strengthening":"weakening",message:v?`Structure ArkRule ${d.id} was promoted to enforced.`:`Structure ArkRule ${d.id} was demoted to advisory.`,before:g.mode,after:d.mode})}g.sensor!==d.sensor&&_(e,{kind:"arkrule-sensor-changed",path:`${m}.sensor`,classification:"judgment-required",message:`Structure ArkRule ${d.id} changed sensor identity.`,before:g.sensor,after:d.sensor})}}for(let u of[...new Set([...f.invariants.keys(),...y.invariants.keys()])].sort()){let g=f.invariants.get(u),d=y.invariants.get(u),m=`$.arkRules.invariants[${u}]`;if(!g&&d){_(e,{kind:"arkrule-invariant-added",path:m,classification:"strengthening",message:`Invariant ${d.id} was added (${d.mode}).`,after:d});continue}if(g&&!d){_(e,{kind:"arkrule-invariant-removed",path:m,classification:"weakening",message:`Invariant ${g.id} was removed.`,before:g});continue}if(!(!g||!d)&&g.mode!==d.mode)if(g.mode==="advisory"&&d.mode==="enforced"){let S=a?.get(d.id),k=fi(S);k.ok?_(e,{kind:"arkrule-invariant-promoted",path:`${m}.mode`,classification:"strengthening",message:`Invariant ${d.id} was promoted to enforced (coverage evidence present).`,before:g.mode,after:d.mode}):_(e,{kind:"arkrule-invariant-promote-refused",path:`${m}.mode`,classification:"judgment-required",message:`Invariant ${d.id} cannot be promoted to enforced: ${k.reason}`,before:g.mode,after:d.mode})}else _(e,{kind:"arkrule-invariant-demoted",path:`${m}.mode`,classification:"weakening",message:`Invariant ${d.id} was demoted to advisory.`,before:g.mode,after:d.mode})}}i(oc,"compareArkRules");function fr(e,t,n){let r=[];ue(r,"$.include",e.include,t.include,{added:"strengthening",removed:"weakening",addedMessage:"Additional project roots are governed.",removedMessage:"Project roots were removed from governance."}),ue(r,"$.exclude",e.exclude,t.exclude,{added:"weakening",removed:"strengthening",addedMessage:"Additional project paths are excluded from governance.",removedMessage:"Fewer project paths are excluded from governance."}),ue(r,"$.dynamicImportAllowlist",e.dynamicImportAllowlist,t.dynamicImportAllowlist,{added:"weakening",removed:"strengthening",addedMessage:"Additional files may use non-literal dynamic imports.",removedMessage:"Fewer files may use non-literal dynamic imports."}),An(r,"$.excludeGenerated",e.excludeGenerated!==!1,t.excludeGenerated!==!1,"weakening","Generated source is now excluded from governance.","Generated source is now governed.");let o={off:0,soft:1,"framework-soft":1,strict:2},s=e.cyclePolicy??"strict",a=t.cyclePolicy??"strict";if(s!==a){let l=o[a]===o[s]?"judgment-required":o[a]>o[s]?"strengthening":"weakening";_(r,{kind:"cycle-policy-changed",path:"$.cyclePolicy",classification:l,message:"The cycle enforcement level changed.",before:s,after:a})}return(e.frameworkOverlay??null)!==(t.frameworkOverlay??null)&&_(r,{kind:"framework-overlay-changed",path:"$.frameworkOverlay",classification:"judgment-required",message:"The framework overlay changed and may alter effective layer matching.",before:e.frameworkOverlay??null,after:t.frameworkOverlay??null}),Jl(r,e.layers,t.layers),Ql(r,e.rules,t.rules),ec(r,e,t),oc(r,e,t,n?.baseArkRules,n?.candidateArkRules,n?.candidateInvariantCoverage),nc(r,e,t),tc(r,e,t),r.sort((l,c)=>l.path.localeCompare(c.path)||l.id.localeCompare(c.id)),{schemaVersion:pr,classification:rc(r),findings:r}}i(fr,"classifyArkPolicyDelta");function gr(e,t){if(!e||e.schemaVersion!==pr||typeof e.basePolicyHash!="string"||typeof e.candidatePolicyHash!="string"||typeof e.reason!="string"||!Array.isArray(e.findingIds)||e.findingIds.some(o=>typeof o!="string")||e.reason.trim().length===0||e.basePolicyHash!==t.basePolicyHash||e.candidatePolicyHash!==t.candidatePolicyHash)return!1;let n=q(e.findingIds),r=q(t.findingIds);return n.length===r.length&&n.every((o,s)=>o===r[s])}i(gr,"policyDeltaAcknowledgementMatches");function et(e){let t=[];for(let n of e.replace(/\\/g,"/").split("/"))!n||n==="."||(n===".."&&t.length>0&&t.at(-1)!==".."?t.pop():t.push(n));return t.join("/")}i(et,"normalizePath");function Ri(e){return e!==void 0&&/[A-Za-z_$]/.test(e)}i(Ri,"isIdentifierStart");function mr(e){return e!==void 0&&/[A-Za-z0-9_$]/.test(e)}i(mr,"isIdentifierCharacter");function oe(e,t){for(;t<e.length&&/\s/.test(e[t]);)t+=1;return t}i(oe,"skipWhitespace");function kn(e,t){let n=e[t];if(n!=="'"&&n!=='"')return;let r=t,o="";for(t+=1;t<e.length;t+=1){let s=e[t];if(s===n)return{value:o,offset:r,excerpt:e.slice(r,t+1)};s==="\\"&&t+1<e.length?(o+=e[t+1],t+=1):o+=s}}i(kn,"readString");function le(e,t,n){return e.startsWith(t,n)&&!mr(e[n-1])&&!mr(e[n+t.length])}i(le,"isWordAt");function Ai(e,t){let n=oe(e,t);if(e[n]!=="{")return!1;n+=1;let r=!1;for(;n<e.length;){if(n=oe(e,n),e[n]==="}")return r;if(e[n]===","){n+=1;continue}if(!le(e,"type",n))return!1;let o=oe(e,n+4);if(o>=e.length||e[o]===","||e[o]==="}"||le(e,"as",o)||!Ri(e[o]))return!1;for(n=o;n<e.length&&mr(e[n]);)n+=1;if(n=oe(e,n),le(e,"as",n)){if(n=oe(e,n+2),!Ri(e[n]))return!1;for(;n<e.length&&mr(e[n]);)n+=1}r=!0}return!1}i(Ai,"bracedNamedBindingsAreTypeOnly");function sc(e,t){if(t=oe(e,t+6),e[t]==="(")return kn(e,oe(e,t+1));let n=!1;if(le(e,"type",t)){let o=oe(e,t+4);e[o]!==","&&!le(e,"from",o)&&(n=!0)}else Ai(e,t)&&(n=!0);let r=ki(e,t,!0);return r&&n?{...r,typeOnly:!0}:r}i(sc,"specifierAfterImport");function ic(e,t){t=t+6;let n=oe(e,t),r=!1;if(le(e,"type",n)){let s=oe(e,n+4);(e[s]==="{"||e[s]==="*")&&(r=!0)}else Ai(e,n)&&(r=!0);let o=ki(e,t,!1);return o&&r?{...o,typeOnly:!0}:o}i(ic,"specifierAfterExport");function ki(e,t,n){for(;t<e.length;t+=1){if(e[t]===";")return;if(le(e,"from",t))return kn(e,oe(e,t+4));if(n&&(e[t]==="'"||e[t]==='"'))return kn(e,t);if(t>0&&(le(e,"import",t)||le(e,"export",t)))return}}i(ki,"specifierInStaticStatement");function ac(e,t){for(t+=1;t<e.length;t+=1){let n=e[t];if(n==="\\")t+=1;else if(n==="`")return t}return e.length}i(ac,"skipTemplateLiteral");function lc(e,t){let n=t-1;for(;n>=0&&/\s/.test(e[n]);)n-=1;if(e[n]===".")return;let r=oe(e,t+7);if(e[r]!=="(")return;r=oe(e,r+1);let o=kn(e,r);return o?{...o,requireCall:!0}:void 0}i(lc,"specifierAfterRequire");function cc(e){let t=[];for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="/"&&e[n+1]==="/"){if(n=e.indexOf(`
|
|
23
|
+
`,n+2),n<0)break;continue}if(r==="/"&&e[n+1]==="*"){let s=e.indexOf("*/",n+2);if(s<0)break;n=s+1;continue}if(r==="`"){n=ac(e,n);continue}if(r==="'"||r==='"'){let s=kn(e,n);s&&(n=s.offset+s.excerpt.length-1);continue}let o=r==="i"&&le(e,"import",n)?sc(e,n):r==="e"&&le(e,"export",n)?ic(e,n):r==="r"&&le(e,"require",n)?lc(e,n):void 0;o&&(t.push(o),n=o.offset+o.excerpt.length-1)}return t}i(cc,"moduleSpecifiers");function Ii(e,t){let n=[],r=[];for(let o of cc(e.content)){let s=o.value;if(!s.startsWith(".")){if(o.typeOnly)continue;let p=un(s);if(!p)continue;let f=e.content.slice(0,o.offset).split(`
|
|
24
|
+
`).length;r.push({file:e.path,symbol:s,capability:p,evidence:{kind:"import",file:e.path,line:f,excerpt:o.excerpt}});continue}let a=e.content.slice(0,o.offset).split(`
|
|
25
|
+
`).length,l={kind:"import",file:e.path,line:a,excerpt:o.excerpt},c=dc(e.path,s,t);n.push({from:e.path,specifier:s,to:c?.path??null,resolution:c?"resolved":"unresolved",fromLayer:e.layer,toLayer:c?.layer??null,evidence:l})}return{edges:n,capabilityUses:r}}i(Ii,"moduleFactsFor");function dc(e,t,n){let r=e.split("/");r.pop();for(let s of t.split("/"))s==="."||s===""||(s===".."?r.pop():r.push(s));let o=r.join("/");for(let s of[o,`${o}.ts`,`${o}.tsx`,`${o}.mts`,`${o}.cts`,`${o}/index.ts`,`${o}/index.tsx`]){let a=n.get(s);if(a)return a}}i(dc,"resolveSpecifier");function bi(e,t){let n=[];for(let r of e){if(!r.to||!r.fromLayer||!r.toLayer)continue;let o=pt(t.rules,r.fromLayer,r.toLayer,{fromPath:r.from,toPath:r.to,layers:t.layers});o&&n.push({ruleId:`layer-dependency:${o.from}->${o.to}`,message:o.message??`${o.from} must not depend on ${o.to}.`,edge:r,evidence:r.evidence})}return n}i(bi,"violationsFor");var uc={code:"LEXICAL_EVIDENCE_INCOMPLETE",message:"Lexical compatibility mode cannot prove parse status, TypeScript/package/symlink resolution, or symbol-aware source-policy and safety evidence. Use the resolved candidate facts APIs for an authoritative verdict."};function pc(e,t){return e.arkRules!==void 0&&Object.keys(e.arkRules).length>0||t.structure.length>0||t.invariants.length>0}i(pc,"hasActiveArkRules");function fc(e,t){return pc(e,t)?W($(di({config:e,arkRules:t,warnings:[]}))):W($(Co(e)))}i(fc,"policyHashFor");function In(e,t,n){let r=typeof e=="string"?qs(e,t):io(e,t),o=n?.arkRules??Rn();return{...r,arkRules:o,policyHash:fc(r.config,o)}}i(In,"loadContract");function Po(e){let t=In(e.baseConfig,e.baseSource??"base ark.config.json",{arkRules:e.baseArkRules}),n=In(e.candidateConfig,e.candidateSource??"candidate ark.config.json",{arkRules:e.candidateArkRules}),r=fr(t.config,n.config,{baseArkRules:t.arkRules,candidateArkRules:n.arkRules,candidateInvariantCoverage:e.candidateInvariantCoverage}),o=r.findings.filter(l=>l.classification==="weakening"||l.classification==="judgment-required").map(l=>l.id).sort(),s=o.length>0,a=s&&gr(e.acknowledgement,{basePolicyHash:t.policyHash,candidatePolicyHash:n.policyHash,findingIds:o});return{schemaVersion:r.schemaVersion,basePolicyHash:t.policyHash,candidatePolicyHash:n.policyHash,classification:r.classification,findings:r.findings,blockingFindingIds:o,requiresAcknowledgement:s,acknowledged:a,valid:!s||a}}i(Po,"analyzePolicyDelta");function bt(e){let t=e.files.map(y=>{let u=et(y.path);return{path:u,content:y.content,contentHash:W(y.content),layer:de(u,e.contract.config.layers)??null}}).sort((y,u)=>y.path.localeCompare(u.path)),n=new Map(t.map(y=>[y.path,y])),r=[],o=[];for(let y of t){let u=Ii(y,n);r.push(...u.edges),o.push(...u.capabilityUses)}let s=bi(r,e.contract.config),a=new Map(e.contract.config.layers.map(y=>[y.name,y])),l=new Map(e.contract.config.layers.map(y=>[y.name,new Set(ht(y))]));for(let y of o){let u=n.get(y.file)?.layer;if(!u)continue;let g=a.get(u),d=Oe(y.symbol,g?.forbiddenGlobals??[]);if(d){s.push({ruleId:"FORBIDDEN_GLOBAL",message:`${u} must not use module "${y.symbol}" because it is the import form of forbidden global "${d}".`,symbol:y.symbol,evidence:y.evidence});continue}l.get(u)?.has(y.capability)&&s.push({ruleId:"CAPABILITY_VIOLATION",message:`${u} denies the ${y.capability} capability; found import of "${y.symbol}".`,capability:y.capability,symbol:y.symbol,evidence:y.evidence})}let c=t.length===0?"complete":"partial",p=c==="complete"?[]:[{...uc}],f={schemaVersion:dr,policyHash:e.contract.policyHash,compilerOptionsHash:W($(e.compilerOptions??{})),files:t,layers:e.contract.config.layers.map(y=>y.name),edges:r,capabilityUses:o,violations:s};return{mode:"lexical-compatibility",completeness:c,completenessReasons:p,valid:c==="complete"&&s.length===0,ir:f}}i(bt,"analyzeProject");function bn(e){let t=new Map(e.files.map(n=>[et(n.path),n]));for(let n of e.changes){let r=et(n.path);"delete"in n&&n.delete?t.delete(r):"content"in n&&t.set(r,{path:r,content:n.content})}return bt({contract:e.contract,files:[...t.values()],compilerOptions:e.compilerOptions})}i(bn,"analyzeChange");function _o(e){let t=`${e.evidence.file}:${e.evidence.line}`;if(!e.edge)return`${e.ruleId} at ${t}: ${e.message}`;let n=e.edge.to??e.edge.specifier;return`${e.ruleId} at ${t}: ${e.edge.from} imports ${n}. ${e.message}`}i(_o,"explainViolation");function yr(e){let t=0,n=new Map,r=new Map,o=new Set,s=[],a=[],l=i(c=>{n.set(c,t),r.set(c,t),t+=1,s.push(c),o.add(c);for(let y of[...e.get(c)??[]].sort())e.has(y)&&(n.has(y)?o.has(y)&&r.set(c,Math.min(r.get(c)??0,n.get(y)??0)):(l(y),r.set(c,Math.min(r.get(c)??0,r.get(y)??0))));if(r.get(c)!==n.get(c))return;let p=[],f;do{if(f=s.pop(),f===void 0)break;o.delete(f),p.push(f)}while(f!==c);p.length>1&&a.push(p.sort())},"connect");for(let c of[...e.keys()].sort())n.has(c)||l(c);return a.sort((c,p)=>c[0]<p[0]?-1:c[0]>p[0]?1:0).map(c=>({ruleId:"CIRCULAR_DEPENDENCY",file:c[0],line:1,target:c.join(" \u2192 "),message:`Circular dependency among ${c.length} files: ${c.join(" \u2192 ")} \u2192 ${c[0]}.`,cycleKind:"value"}))}i(yr,"detectArchitectureCycles");function tt(e){let t=e.contentViolations.map(s=>({...s})),n=(e.warnings??[]).map(s=>({...s})),r=new Map(e.files.map(s=>[s,new Set]));for(let s of e.edges){if(s.to&&s.to!==s.from&&!s.typeOnly&&r.has(s.from)&&r.get(s.from)?.add(s.to),!s.to||!s.fromLayer||!s.toLayer)continue;let a=ze(e.rules,s.fromLayer,s.toLayer,{fromPath:s.from,toPath:s.to,layers:e.config.layers});if(!a)continue;let l=a.rule,c=!!l.peerIsolation,p=!c&&!!(s.typeOnly||s.namedBindingsTypeOnly),f=c?ut(a.peerIsolationReason??"cross-slice",{fromPath:s.from,toPath:s.to,fromSlice:a.fromSlice,toSlice:a.toSlice}):void 0,y=l.message?f?`${l.message} (${f})`:l.message:f?`${s.fromLayer} must not ${s.kind} another slice of ${s.toLayer} (${s.from} \u2192 ${s.to}): ${f}`:`${s.fromLayer} must not ${s.kind} ${s.toLayer}.`;t.push({ruleId:"LAYER_IMPORT_VIOLATION",file:s.from,line:s.line,fromLayer:s.fromLayer,toLayer:s.toLayer,target:s.to,...s.typeOnly?{typeOnly:!0}:{},...s.targetTypeOnlyExports?{targetTypeOnlyExports:!0}:{},...s.sourcePureTypeModule?{sourcePureTypeModule:!0}:{},...s.namedBindingsTypeOnly?{namedBindingsTypeOnly:!0}:{},...!c&&s.portProofEligible?{portProofEligible:!0}:{},...s.kind?{edgeKind:s.kind}:{},...c?{peerIsolation:!0}:{},message:p?`${y} (type-only \u2014 type placement debt; prefer SharedTypes / owning layer; not runtime coupling)`:y,...p?{failsStrict:!1,severity:"warning"}:{}})}let o=String(e.config.cyclePolicy??"strict").toLowerCase();if(o!=="off"){let s=yr(r);o==="soft"||o==="framework-soft"?n.push(...s.map(a=>({...a,message:`${a.message} (soft cycle policy \u2014 advisory only; set cyclePolicy: "strict" to fail the check)`,failsStrict:!1}))):t.push(...s)}return{violations:t,warnings:n,safety:e.safety}}i(tt,"evaluateArchitectureGraph");function Ei(e){if(typeof e.target=="string"&&e.target.length>0)return e.target;let t=String(e.sensor||e.code||"").trim();if(!t&&typeof e.message=="string"){let r=e.message.match(/\(sensor ([a-z0-9-]+)\)/i);r?.[1]&&(t=r[1])}let n=String(e.symbol||"").trim();return t?n?`${t}:${n}`:t:n}i(Ei,"structureFreezeTarget");var gc=["no-anemic-model"],xi=["ensureInvariants","assertInvariants","validate","publish","emit","raise","record"],rm=new RegExp(`\\b(${xi.join("|")})\\b`),Oi="(?:_?pendingEvents|domainEvents|uncommittedEvents|recordedEvents)",om=new RegExp(`\\bthis\\.${Oi}\\.push\\s*\\(`),sm=new RegExp(`^this\\.${Oi}\\s*=\\s*\\[\\s*\\]`);var mc="truncatedUntil";function yc(){return`${xi.join(", ")}, or events-array .push(`}i(yc,"expectedDomainInvariantWordsPhrase");function To(e){let t=Object.getOwnPropertyDescriptor(e,mc)?.value;return typeof t=="number"?t:void 0}i(To,"shapeTruncatedUntil");function hc(e){let t=To(e);return t==null?"":` shape analysed until character ${t}`}i(hc,"shapeTruncationSuffix");function vi(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}i(vi,"escapeGlobLiteral");function Rc(e){let t="";for(let r=0;r<e.length;r+=1){let o=e[r];if(o==="\\"&&r+1<e.length){let s=e[r+1];if("*?{}[],".includes(s)||s==="\\"){t+="\\"+s,r+=1;continue}t+="/";continue}t+=o}let n="";for(let r=0;r<t.length;r+=1){let o=t[r];o==="\\"&&r+1<t.length?(n+=vi(t[r+1]),r+=1):o==="*"?t[r+1]==="*"?t[r+2]==="/"?(n+="(?:.*/)?",r+=2):(n+=".*",r+=1):n+="[^/]*":o==="?"?n+="[^/]":n+=vi(o)}return new RegExp(`^${n}$`)}i(Rc,"globToRegExp");function Et(e,t){return!t||t.length===0?!0:t.some(n=>Rc(n).test(e))}i(Et,"matchesAppliesTo");function Pi(e){return gc.includes(e)}i(Pi,"isTier2");function _i(e){return e.mode==="enforced"&&!Pi(e.sensor)?{severity:"error",failsStrict:!0}:{severity:"warning",failsStrict:!1}}i(_i,"severityFor");function _e(e,t,n,r=1){let{severity:o,failsStrict:s}=_i(e);return{ruleId:"ARKRULE_STRUCTURE",code:e.sensor,message:n,file:t,line:r,fromLayer:e.provenance.layer,arkruleId:e.id,arkruleSource:e.provenance.sourceFile,severity:o,sensor:e.sensor,failsStrict:s}}i(_e,"baseViolation");function hr(e,t,n){if(!n)return!0;let r=n(e);return r?r===t.provenance.layer:!1}i(hr,"isInRuleLayer");function Rr(e,t,n){return t.filter(r=>!(!r.exported||!Et(r.file,e.appliesTo)||!hr(r.file,e,n)))}i(Rr,"shapesForRule");function Ac(e,t,n){let r=[];for(let o of Rr(e,t,n))(o.hasPublicSetters||o.hasPublicMutableFields)&&r.push(_e(e,o.file,`Exported class ${o.className} exposes public mutable state (sensor aggregate-private-state).`));return r}i(Ac,"evaluateAggregatePrivateState");function kc(e,t,n){let r=[];for(let o of Rr(e,t,n))if(o.hasPublicConstructor&&!o.hasStaticFactory){if(!(o.hasPublicMutableFields||o.hasPublicSetters||(o.mutatingMethods?.length??0)>0))continue;r.push(_e(e,o.file,`Exported class ${o.className} exposes a public constructor without a static factory (sensor always-valid-factory).`))}return r}i(kc,"evaluateAlwaysValidFactory");function Ic(e,t,n){let r=[],o=yc();for(let s of Rr(e,t,n)){let a=hc(s);To(s)!=null&&r.push(_e(e,s.file,`Exported class ${s.className} shape analysed until character ${To(s)}; later methods may be invisible (sensor domain-event-on-mutation).`));for(let l of s.mutatingMethods)l.referencesGuardOrPublish||r.push(_e(e,s.file,`Mutating method ${s.className}.${l.name} does not reference ${o} (sensor domain-event-on-mutation).${a}`))}return r}i(Ic,"evaluateDomainEventOnMutation");function bc(e,t){let n=[];for(let r of t.files)Et(r,e.appliesTo)&&hr(r,e,t.layerForFile)&&t.fileHints?.[r]?.orchestrationHeavy&&n.push(_e(e,r,"File appears to embed domain branching beyond guard-and-delegate orchestration (sensor orchestration-only)."));return n}i(bc,"evaluateOrchestrationOnly");function Ec(e,t){let n=[];for(let r of t.files)Et(r,e.appliesTo)&&hr(r,e,t.layerForFile)&&t.fileHints?.[r]?.adapterThick&&n.push(_e(e,r,"Adapter module mixes domain branching, persistence, and mapping beyond a thin adapter (sensor thin-adapter)."));return n}i(Ec,"evaluateThinAdapter");function vc(e,t){let n=[];for(let r of t.files)Et(r,e.appliesTo)&&hr(r,e,t.layerForFile)&&t.fileHints?.[r]?.persistenceWrite&&n.push(_e(e,r,"File imports a persistence driver and issues a write; route the write through a Domain aggregate and a persistence adapter (sensor writes-via-aggregate)."));return n}i(vc,"evaluateWritesViaAggregate");function Sc(e,t,n){let r=[];for(let o of Rr(e,t,n))if(o.dataOnly===!0){let s=_e(e,o.file,`Exported type ${o.className} looks data-only / anemic (sensor no-anemic-model; advisory only).`);r.push({...s,severity:"warning",failsStrict:!1})}return r}i(Sc,"evaluateNoAnemicModel");function Ti(e){if(!e.arkRules.structure.length)return[];let t=[];for(let n of e.arkRules.structure)switch(n.sensor){case"aggregate-private-state":t.push(...Ac(n,e.classShapes,e.layerForFile));break;case"always-valid-factory":t.push(...kc(n,e.classShapes,e.layerForFile));break;case"domain-event-on-mutation":t.push(...Ic(n,e.classShapes,e.layerForFile));break;case"orchestration-only":t.push(...bc(n,e));break;case"thin-adapter":t.push(...Ec(n,e));break;case"writes-via-aggregate":t.push(...vc(n,e));break;case"no-anemic-model":t.push(...Sc(n,e.classShapes,e.layerForFile));break;case"invariant-coverage":break;default:break}return t.sort((n,r)=>n.file.localeCompare(r.file)||n.arkruleId.localeCompare(r.arkruleId)||n.message.localeCompare(r.message))}i(Ti,"evaluateArkRuleSensors");function Ni(e,t){let n=[],r=t.map(o=>o.replace(/\\/g,"/"));for(let o of e.structure){if(!o.appliesTo||o.appliesTo.length===0||r.some(c=>Et(c,o.appliesTo)))continue;let{severity:a,failsStrict:l}=_i(o);n.push({ruleId:"ARKRULE_SCOPE_EMPTY",code:"appliesTo-zero-match",message:`ArkRule structure "${o.id}" appliesTo matched zero governed files (patterns: ${o.appliesTo.join(", ")}). A zero-match scope is almost always misconfiguration.`,file:o.provenance.sourceFile,line:1,fromLayer:o.provenance.layer,arkruleId:o.id,arkruleSource:o.provenance.sourceFile,severity:a,sensor:o.sensor,failsStrict:l})}for(let o of e.invariants??[]){if(!o.appliesTo||o.appliesTo.length===0||r.some(l=>Et(l,o.appliesTo)))continue;let a=o.mode==="enforced";n.push({ruleId:"ARKRULE_SCOPE_EMPTY",code:"appliesTo-zero-match",message:`ArkRule invariant "${o.id}" appliesTo matched zero governed files (patterns: ${o.appliesTo.join(", ")}). A zero-match scope is almost always misconfiguration.`,file:o.provenance.sourceFile,line:1,fromLayer:o.provenance.layer,arkruleId:o.id,arkruleSource:o.provenance.sourceFile,severity:a?"error":"warning",sensor:"invariant-coverage",failsStrict:a})}return n.sort((o,s)=>o.file.localeCompare(s.file)||o.arkruleId.localeCompare(s.arkruleId)||o.message.localeCompare(s.message))}i(Ni,"collectEmptyAppliesToFindings");var Si=64;function wc(e){let t=e.length;for(;t>0&&e.charCodeAt(t-1)===46;)t-=1;return t===e.length?e:e.slice(0,t)}i(wc,"stripTrailingDots");function Cc(e){let t=e.trim(),n=t.length>Si?t.slice(0,Si):t;return wc(n)}i(Cc,"normalizeIntentPrefix");function xc(e){let t=e.toLowerCase();return t.includes("domain")||t.includes("entity")||t.includes("aggregate")||t.includes("model")}i(xc,"layerNameLooksDomain");function Oc(e){return e.some(t=>{let n=Cc(t);return n==="Domain"||n.startsWith("Domain.")})}i(Oc,"ownsDomainIntent");function Pc(e,t=[]){return xc(e)||Oc(t)}i(Pc,"isDomainRoleLayerName");function Di(e){if(e.arkRulesActive!==!0)return[];let t=(e.layers??[]).filter(c=>Pc(c.name,c.intentPrefixes??[])).map(c=>c.name);if(t.length===0)return[];let n=new Set(t);if(!(e.files??[]).some(c=>{let p=typeof c.layer=="string"?c.layer:"";return p.length>0&&n.has(p)}))return[];if((e.arkRules.invariants??[]).filter(c=>n.has(c.provenance.layer)).length>0)return[];let s=t.find(c=>e.arkRules.byLayer?.[c])??t[0],a=e.arkRules.byLayer?.[s]?.sourceFile??`arkrules/${s}.json`,l=(e.arkRules.structure??[]).some(c=>c.mode==="enforced"&&n.has(c.provenance.layer)&&!Pi(c.sensor));return[{ruleId:"INVARIANT_CATALOG_EMPTY",code:"invariant-catalog-empty",message:`ArkRules is on and ${s} has code, but invariants[] is empty \u2014 there are no phrases the code must preserve. Add 1\u20132 short phrases in ${a}.`,file:a,line:1,fromLayer:s,arkruleId:"invariant-catalog",arkruleSource:a,severity:l?"error":"warning",sensor:"invariant-coverage",failsStrict:l}]}i(Di,"collectEmptyInvariantCatalogFindings");var wi=/\bfrom\s+['"](?:@?prisma\/client|@supabase\/|drizzle-orm(?:\/[^'"]+)?|postgres(?:\/[^'"]+)?|typeorm|knex|mongodb|pg|mysql2|mongoose|better-sqlite3|ioredis|redis|kysely|sequelize)['"]|require\(\s*['"](?:@?prisma\/client|pg|postgres(?:\/[^'"]+)?|drizzle-orm(?:\/[^'"]+)?|knex|typeorm|mongoose)/,Ci=/\bfrom\s+['"](?:@\/|~\/)?(?:[\w.-]+\/)*(?:db|database|prisma|drizzle)(?:\.[cm]?[jt]sx?)?['"]|require\(\s*['"](?:@\/|~\/)?(?:[\w.-]+\/)*(?:db|database|prisma|drizzle)/,_c=/\b(?:db|tx|client|prisma(?:Client)?|drizzle)\b(?:\s*\.\s*[A-Za-z_]\w*)*\s*\.\s*(?:insert(?:One|Many)?|update(?:One|Many)?|upsert|delete(?:One|Many)?|createMany|create|replaceOne|findOneAnd(?:Update|Delete|Replace))\s*\(|\bINSERT\s+INTO\b|\bUPDATE\s+[A-Za-z_][\w.]*\s+SET\b|\bDELETE\s+FROM\b/i;function Tc(e){return e==="PersistenceAdapters"}i(Tc,"isPersistenceDriverLayer");function Nc(e,t){if(wi.test(e)||Ci.test(e))return!0;if(!t)return!1;for(let n of t){if(Tc(n.layer))return!0;let r=n.specifier;if(!r)continue;let o=`from '${r}'`;if(wi.test(o)||Ci.test(o))return!0}return!1}i(Nc,"sourceImportsPersistenceDriver");var Dc=/\b(?:@Controller|@Get|@Post|@Put|@Delete|Router\(\)|createRouter|express\.Router|fastify\.(?:get|post)|export\s+(?:async\s+)?function\s+(?:GET|POST|PUT|DELETE|PATCH)\b|export\s+const\s+(?:GET|POST|PUT|DELETE|PATCH)\s*=)/,Lc=/(?:^|[;\n])\s*(?:import\s+(?:type\s+)?(?:[^;]{0,512}?\s+from\s+)?|export\s+(?:type\s+)?[^;]{0,512}?\s+from\s+)['"]next\/server(?:\.js)?['"]/,Fc=/\b(?:export\s+)?(?:async\s+)?function\s+(?:can|calculate|compute|should|ensure|validate|is|has)[A-Z]\w*|\b(?:export\s+)?const\s+(?:can|calculate|compute|should|ensure|validate|is|has)[A-Z]\w*\s*=/,$c=/\bif\s*\(\s*(?:!)?(?:order|invoice|cart|user|account|policy|aggregate|entity|amount|total|balance|status|state)\b/i;function Mc(e,t,n){if(!t)return null;let r=Nc(t,n),o=r&&_c.test(t);if(t.length<40)return o?{persistenceWrite:!0}:null;let s=t.match(new RegExp(Fc.source,"g"))??[],a=t.match(new RegExp($c.source,"g"))??[],l=(t.match(/\bif\s*\(/g)??[]).length,c=(t.match(/\bswitch\s*\(/g)??[]).length,p=s.length>=2||s.length>=1&&a.length>=2||a.length>=3&&l+c>=6,f=Dc.test(t)||Lc.test(t),y=s.length>=1||a.length>=2,u=/\b(?:mapTo|toDomain|toDto|fromRow|toEntity|fromPrisma|serialize|deserialize)\w*\s*[(=]/.test(t),g=r&&y||f&&y||r&&u&&(l>=4||s.length>=1)||f&&r;return!p&&!g&&!o?null:{...p?{orchestrationHeavy:!0}:{},...g?{adapterThick:!0}:{},...o?{persistenceWrite:!0}:{}}}i(Mc,"deriveArkRuleFileHints");function Li(e,t){let n={};for(let[r,o]of Object.entries(e)){let s=r.replace(/\\/g,"/"),a=Mc(r,o,t?.[s]);a&&(n[s]=a)}return n}i(Li,"buildArkRuleFileHints");function Kc(e){if(!e)return{};let t=typeof e.governedPercent=="number"?e.governedPercent:null,n=typeof e.populatedLayerCount=="number"?e.populatedLayerCount:null;return n==null&&typeof e.classifiedFiles=="number"&&(n=e.classifiedFiles>0?1:0),{governedPercent:t,populatedLayerCount:n}}i(Kc,"normalizeExtraMergeTeethClassification");function Ar(e){let t=Kc(e),n=typeof t.governedPercent=="number"?t.governedPercent:null,r=typeof t.populatedLayerCount=="number"?t.populatedLayerCount:null;return n==null&&r==null?!0:(n??0)>=50&&(r??0)>=1}i(Ar,"extraMergeTeethAllowed");function Fi(e){let t=e.length,n=0,r=new Set;for(let o of e){let s=typeof o.layer=="string"&&o.layer.length>0?o.layer:null;s&&(n+=1,r.add(s))}return{governedPercent:t>0?Math.round(n/t*100):0,populatedLayerCount:r.size}}i(Fi,"classifyResolvedLayerCoverage");var Hc=["createArkKernel","createStrictArkKernel","createArkKernelFromConfig","createStrictArkKernelFromConfig"];var dm=new Set(Hc);function $i(e){return e==="@arkgate/runtime"||e.startsWith("@arkgate/runtime/")||e==="arkgate/runtime"||e.startsWith("arkgate/runtime/")}i($i,"isArkRunKernelModuleSpecifier");var Uc=["events","node:events","eventemitter2","eventemitter3","emittery","kafkajs","kafka-node","amqplib","amqp","bull","bullmq","mqtt","nats","@aws-sdk/client-sqs","@aws-sdk/client-sns","@aws-sdk/client-eventbridge","@google-cloud/pubsub","@azure/service-bus"],No=new Set(Uc);function Mi(e){if(!e||e.startsWith(".")||e.startsWith("/"))return!1;if(No.has(e))return!0;let t=e.indexOf("/");if(t<0)return!1;let n=e.slice(0,t);if(No.has(n))return!0;let r=e.indexOf("/",t+1);return r<0?!1:No.has(e.slice(0,r))}i(Mi,"isArkRunTransportBypassSpecifier");var Gc=["arkrun-kernel-in-domain","arkrun-direct-new","arkrun-transport-bypass"],km=new Set(Gc);var Ki={"arkrun-missing-root":"ARKRUN_MISSING_ROOT","arkrun-kernel-in-domain":"ARKRUN_KERNEL_IN_DOMAIN","arkrun-direct-new":"ARKRUN_DIRECT_NEW","arkrun-undeclared-emit":"ARKRUN_UNDECLARED_EMIT","arkrun-undeclared-handle":"ARKRUN_UNDECLARED_HANDLE","arkrun-undeclared-depend":"ARKRUN_UNDECLARED_DEPEND","arkrun-transport-bypass":"ARKRUN_TRANSPORT_BYPASS"},Vc="ARKRUN_INTERACTION_NAME_INCOMPLETE";function Gi(e,t=[]){let n=e.trim();return/^domain(?:model)?$/i.test(n)||/^domain(?=[A-Z_\-\s])/i.test(n)||/^(?:entit(?:y|ies)|aggregates?)(?:$|(?=[A-Z_\-\s]))/i.test(n)?!0:t.some(r=>{let o=r.trim().replace(/\.+$/,"");return o==="Domain"||o.startsWith("Domain.")})}i(Gi,"isDomainRoleLayer");function jc(e,t){return e.file.localeCompare(t.file)||e.ruleId.localeCompare(t.ruleId)||e.line-t.line||e.message.localeCompare(t.message)}i(jc,"compareFindings");function Se(e,t,n,r,o,s,a){let l=e.mode==="enforced"&&a;return{ruleId:Ki[t],sensor:t,message:o,file:n,line:r,...s?.fromLayer?{fromLayer:s.fromLayer}:{},...s?.target?{target:s.target}:{},severity:l?"error":"warning",failsStrict:l,nextAction:ge({ruleId:Ki[t],fromLayer:s?.fromLayer,target:s?.target})}}i(Se,"finding");function Bc(e,t){let n=[],r=[],o=[],s=[];for(let a of e)a.file===t&&(n.push(...a.uses),r.push(...a.reactsTo),o.push(...a.raises),s.push(...a.sends));return{uses:new Set(n),reactsTo:new Set(r),raises:new Set(o),sends:new Set(s)}}i(Bc,"bagForFile");function Hi(e){return e==="publisher"||e==="publish"||e==="raise"||e==="send"}i(Hi,"emitKinds");function Ui(e){return e==="subscribe"||e==="register-handler"}i(Ui,"handleKinds");function Wc(e){return e==="resolve"||e==="resolve-singleton"}i(Wc,"dependKinds");function zc(e,t,n){let r=[],o=e.kernelRoots??e.compositionRoots;if(o.length===0)return r.push(Se(e,"arkrun-missing-root","ark.config.json",1,"ArkRun kernelRoots is empty; no createArkKernel factory site is declared.",void 0,n)),r;let s=new Map;for(let a of t){let l=s.get(a.matchedRoot)??[];l.push(a),s.set(a.matchedRoot,l)}for(let a of o){let l=[...s.get(a)??[]].sort((p,f)=>p.file.localeCompare(f.file));if(l.length===0){r.push(Se(e,"arkrun-missing-root","ark.config.json",1,`ArkRun kernel root ${JSON.stringify(a)} matched no governed files and has no createArkKernel factory.`,{target:a},n));continue}if(l.some(p=>p.hasKernelFactory))continue;let c=l[0];r.push(Se(e,"arkrun-missing-root",c.file,1,`ArkRun kernel root ${JSON.stringify(a)} has no createArkKernel / createStrictArkKernel factory.`,{target:a},n))}return r}i(zc,"evaluateMissingRoot");function qc(e,t,n,r,o){let s=new Map(t.map(l=>[l.name,l.intentPrefixes??[]])),a=[];for(let l of n){let c=l.specifier;if(!c||!$i(c))continue;let p=r(l.from);p&&Gi(p,s.get(p)??[])&&a.push(Se(e,"arkrun-kernel-in-domain",l.from,l.line,`${p} must not import kernel module ${JSON.stringify(c)}.`,{fromLayer:p,target:c},o))}return a}i(qc,"evaluateKernelInDomain");function Yc(e,t,n,r,o,s){let a=new Set(e.managedLayers);if(a.size===0)return[];let l=new Map(t.map(f=>[f.name,f.intentPrefixes??[]])),c=new Set(r.filter(f=>f.hasKernelFactory).map(f=>f.file)),p=[];for(let f of n){if(c.has(f.file))continue;let y=f.typeName;if(e.ignoreDirectNewForErrors!==!1&&(y.endsWith("Error")||y==="Error")||y.endsWith("DTO")||y.endsWith("VO"))continue;let u=o(f.file);!u||!a.has(u)||Gi(u,l.get(u)??[])||p.push(Se(e,"arkrun-direct-new",f.file,f.line,`${u} must not construct ${f.typeName} with new outside an ArkRun composition-root factory.`,{fromLayer:u,target:f.typeName},s))}return p}i(Yc,"evaluateDirectNew");function Xc(e,t,n,r,o){let s=[],a=[];if(e.requireDeclarations!==!0)return{findings:s,completenessReasons:a};let l=new Set(e.managedLayers);if(l.size===0)return{findings:s,completenessReasons:a};for(let c of t){if(!Hi(c.kind)&&!Ui(c.kind)&&!Wc(c.kind))continue;let p=r(c.file);if(!p||!l.has(p))continue;if(!c.nameLiteral){e.mode==="enforced"&&a.push({code:Vc,file:c.file,message:`ArkRun ${c.kind} call in ${c.file} has no string-literal name; enforced extra cannot prove the declaration.`});continue}let f=Bc(n,c.file);if(Hi(c.kind)){if(f.raises.has(c.nameLiteral)||f.sends.has(c.nameLiteral))continue;s.push(Se(e,"arkrun-undeclared-emit",c.file,c.line,`Emit ${JSON.stringify(c.nameLiteral)} is not declared in raises or sends.`,{fromLayer:p,target:c.nameLiteral},o));continue}if(Ui(c.kind)){if(f.reactsTo.has(c.nameLiteral))continue;s.push(Se(e,"arkrun-undeclared-handle",c.file,c.line,`Handle ${JSON.stringify(c.nameLiteral)} is not declared in reactsTo.`,{fromLayer:p,target:c.nameLiteral},o));continue}f.uses.has(c.nameLiteral)||s.push(Se(e,"arkrun-undeclared-depend",c.file,c.line,`Depend ${JSON.stringify(c.nameLiteral)} is not declared in uses.`,{fromLayer:p,target:c.nameLiteral},o))}return{findings:s,completenessReasons:a}}i(Xc,"evaluateUndeclared");function Zc(e,t,n,r){let o=new Set(e.managedLayers);if(o.size===0)return[];let s=[];for(let a of t){if(a.typeOnly)continue;let l=a.specifier;if(!l||!Mi(l))continue;let c=n(a.from);!c||!o.has(c)||s.push(Se(e,"arkrun-transport-bypass",a.from,a.line,`${c} must not import broker/queue/emitter ${JSON.stringify(l)}; use the ArkRun kernel transport.`,{fromLayer:c,target:l},r))}return s}i(Zc,"evaluateTransportBypass");function Vi(e){let t=e.arkRun;if(!t)return{findings:[],completenessReasons:[]};let n=Ar(e.classification),r=Xc(t,e.kernelCalls,e.declarations,e.layerForFile,n),o=[...zc(t,e.compositionRootHits,n),...qc(t,e.layers,e.dependencies,e.layerForFile,n),...Yc(t,e.layers,e.managedNews,e.compositionRootHits,e.layerForFile,n),...r.findings,...Zc(t,e.dependencies,e.layerForFile,n)].sort(jc),s=[...r.completenessReasons].sort((a,l)=>{let c=`${a.code}\0${a.file??""}\0${a.message}`,p=`${l.code}\0${l.file??""}\0${l.message}`;return c<p?-1:c>p?1:0});return{findings:o,completenessReasons:s}}i(Vi,"evaluateArkRunSensors");function ji(e){return e==="arkgate/order"||e.startsWith("arkgate/order/")}i(ji,"isArkOrderModuleSpecifier");var Bi=new Map;function Wi(e){return/[.*+?^${}()|[\]\\]/.test(e)?`\\${e}`:e}i(Wi,"escapeAppliesToLiteral");function Jc(e){let t="";for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"&&n+1<e.length){let o=e[n+1];if("*?{}[],".includes(o)||o==="\\"){t+="\\"+o,n+=1;continue}t+="/";continue}t+=r}return t}i(Jc,"normalizeAppliesToGlob");function Qc(e){let t=0;for(let n=0;n<e.length;n+=1){let r=e[n];if(r==="\\"){n+=1;continue}if(r==="{")t+=1;else if(r==="}"&&(t-=1,t<0))return!1}return t===0}i(Qc,"appliesToBracesBalanced");function ed(e){let t=Bi.get(e);if(t)return t;let n=Jc(e),r=Qc(n),o="",s=0;for(let l=0;l<n.length;l+=1){let c=n[l];c==="\\"&&l+1<n.length?(o+=Wi(n[l+1]),l+=1):c==="*"?n[l+1]==="*"?n[l+2]==="/"?(o+="(?:.*/)?",l+=2):(o+=".*",l+=1):o+="[^/]*":c==="?"?o+="[^/]":c==="{"&&r?(o+="(?:",s+=1):c==="}"&&r&&s>0?(o+=")",s-=1):c===","&&r&&s>0?o+="|":o+=Wi(c)}let a=new RegExp(`^${o}$`);return Bi.set(e,a),a}i(ed,"globToRegExp");var zi={"arkorder-missing-plane":"ARKORDER_MISSING_PLANE","arkorder-kernel-in-domain":"ARKORDER_KERNEL_IN_DOMAIN","arkorder-generic-update":"ARKORDER_GENERIC_UPDATE","arkorder-too-many-params":"ARKORDER_TOO_MANY_PARAMS","arkorder-ingest-writes-xi":"ARKORDER_INGEST_WRITES_XI","arkorder-xi-field-write":"ARKORDER_XI_FIELD_WRITE","arkorder-information-budget":"ARKORDER_INFORMATION_BUDGET","arkorder-xi-ttl":"ARKORDER_XI_TTL"};function td(e,t){return!t||t.length===0?!0:t.some(n=>ed(n).test(e))}i(td,"matchesArkOrderAppliesTo");function nd(e,t=[]){let n=e.trim();return/^domain(?:model)?$/i.test(n)||/^domain(?=[A-Z_\-\s])/i.test(n)?!0:t.some(r=>{let o=r.trim().replace(/\.+$/,"");return o==="Domain"||o.startsWith("Domain.")})}i(nd,"isDomainRoleLayer");function Te(e,t,n,r,o,s,a){let l=e.mode==="enforced"&&a;return{ruleId:zi[t],sensor:t,message:o,file:n,line:r,...s?.fromLayer?{fromLayer:s.fromLayer}:{},...s?.target?{target:s.target}:{},severity:l?"error":"warning",failsStrict:l,nextAction:ge({ruleId:zi[t],fromLayer:s?.fromLayer,target:s?.target})}}i(Te,"finding");function qi(e){let t=e.arkOrder;if(!t)return{findings:[],completenessReasons:[]};let n=Ar(e.classification),r=[],o=t.planeRoots;if(t.mode==="enforced"&&o.length===0)r.push(Te(t,"arkorder-missing-plane","ark.config.json",1,"ArkOrder planeRoots is empty; no createOrderPlane site is declared.",void 0,n));else{let c=new Map;for(let p of e.planeRootHits){let f=c.get(p.matchedRoot)??[];f.push(p),c.set(p.matchedRoot,f)}for(let p of o){let f=c.get(p)??[];if(f.length===0){r.push(Te(t,"arkorder-missing-plane","ark.config.json",1,`ArkOrder plane root ${JSON.stringify(p)} matched no governed files and has no createOrderPlane factory.`,{target:p},n));continue}f.some(y=>y.hasPlaneFactory)||r.push(Te(t,"arkorder-missing-plane",f[0].file,1,`ArkOrder plane root ${JSON.stringify(p)} has no createOrderPlane factory.`,{target:p},n))}}let s=new Map(e.layers.map(c=>[c.name,c.intentPrefixes??[]]));for(let c of e.dependencies){let p=c.specifier;if(!p||!ji(p))continue;let f=e.layerForFile(c.from);f&&nd(f,s.get(f)??[])&&r.push(Te(t,"arkorder-kernel-in-domain",c.from,c.line,"Domain-role layer imports arkgate/order; Domain stays plane-free.",{fromLayer:f,target:p},n))}for(let c of e.genericUpdates)r.push(Te(t,"arkorder-generic-update",c.file,c.line,`Generic ${c.method}() on the order plane rewrites \u03BE; Haken forbids it.`,{target:c.method},n));let a=t.xiKeys??[];for(let c of e.releaseKeyCounts??[])c.keyCount<=t.maxXiKeys||r.push(Te(t,"arkorder-too-many-params",c.file,c.line,`release() freezes ${c.keyCount} keys; maxXiKeys is ${t.maxXiKeys} (few slow modes).`,{target:String(c.keyCount)},n));for(let c of e.ingestWritesXi??[])r.push(Te(t,"arkorder-ingest-writes-xi",c.file,c.line,"ingest() result is assigned into a Release or \u03BE store; ingest may absorb or escalate, never mint a pattern.",void 0,n));let l=new Set(t.managedLayers);for(let c of a.length===0?[]:e.xiFieldWrites??[]){let p=e.layerForFile(c.file);!p||!l.has(p)||td(c.file,t.appliesTo)&&r.push(Te(t,"arkorder-xi-field-write",c.file,c.line,`This file writes ${JSON.stringify(c.key)} the same way it would write a seat count. Take the event in, or change that choice through the valve (propose, then apply).`,{fromLayer:p,target:c.key},n))}return r.sort((c,p)=>c.file.localeCompare(p.file)||c.ruleId.localeCompare(p.ruleId)||c.line-p.line),{findings:r,completenessReasons:[]}}i(qi,"evaluateArkOrderSensors");function Z(e,t,n={}){return{ruleId:e,message:t,...n}}i(Z,"configWarning");function En(e){let{config:t,rules:n,files:r,manifest:o}=e,s=[];if(t.dynamicImportAllowlist!==void 0&&(!Array.isArray(t.dynamicImportAllowlist)||t.dynamicImportAllowlist.some(d=>typeof d!="string"))&&s.push(Z("CONFIG_INVALID_DYNAMIC_IMPORT_ALLOWLIST","dynamicImportAllowlist must be an array of file globs.")),t.safety!==void 0&&(t.safety===null||typeof t.safety!="object"||Array.isArray(t.safety)))s.push(Z("CONFIG_INVALID_SAFETY","safety must be an object."));else if(t.safety)for(let d of["maxTsSuppressions","maxAnyCasts"]){let m=t.safety[d];m!==void 0&&(!Number.isInteger(m)||m<0)&&s.push(Z("CONFIG_INVALID_SAFETY_THRESHOLD",`safety.${d} must be a non-negative integer.`))}let a=Array.isArray(t.layers)?t.layers:[],l=Array.isArray(o?.architecture?.layers)?o.architecture.layers:[],c=new Set([...a.map(d=>d.name).filter(Boolean),...l.map(d=>d.name).filter(d=>!!d)]);a.length===0&&s.push(Z("CONFIG_NO_LAYERS","No file layers are configured; ark-check cannot classify files for import-boundary enforcement."));let p=new Set,f=new Set;for(let d of a){if(!d.name){s.push(Z("CONFIG_LAYER_WITHOUT_NAME","A configured layer is missing a name."));continue}p.has(d.name)&&f.add(d.name),p.add(d.name),d.forbiddenGlobals!==void 0&&(!Array.isArray(d.forbiddenGlobals)||d.forbiddenGlobals.some(v=>typeof v!="string"))&&s.push(Z("CONFIG_INVALID_FORBIDDEN_GLOBALS",`Layer "${d.name}" has an invalid forbiddenGlobals value; expected an array of strings (e.g. ["fetch", "Date.now"]). The entry is ignored.`,{layer:d.name}));let m=Array.isArray(d.patterns)?d.patterns:[];if(m.length===0){s.push(Z("CONFIG_LAYER_WITHOUT_PATTERNS",`Layer "${d.name}" has no file patterns and will never classify files.`,{layer:d.name}));continue}for(let v of m){let S;try{S=ke(v)}catch(E){s.push(Z("CONFIG_INVALID_LAYER_PATTERN",`Layer "${d.name}" has an invalid pattern "${v}": ${E instanceof Error?E.message:String(E)}`,{layer:d.name,pattern:v}));continue}let k=d.optional===!0||d.reserved===!0||d.allowEmpty===!0;!r.some(E=>S.test(E))&&!k&&s.push(Z("CONFIG_LAYER_PATTERN_NO_MATCHES",`Layer "${d.name}" pattern "${v}" matched no included files (possible typo). Mark the layer reserved/allowEmpty if this house is reserved for later.`,{layer:d.name,pattern:v,failsStrict:!1,reserved:!1}))}}for(let d of f)s.push(Z("CONFIG_DUPLICATE_LAYER",`Layer "${d}" is configured more than once.`,{layer:d}));if(c.size>0)for(let d of n??[])d.from&&!c.has(d.from)&&s.push(Z("CONFIG_RULE_UNKNOWN_FROM_LAYER",`Rule references unknown source layer "${d.from}".`,{fromLayer:d.from,toLayer:d.to})),d.to&&!c.has(d.to)&&s.push(Z("CONFIG_RULE_UNKNOWN_TO_LAYER",`Rule references unknown target layer "${d.to}".`,{fromLayer:d.from,toLayer:d.to}));let y=new Set;if(a.length>1)for(let d of r){let m=-1,v=[];for(let S of a)for(let k of S.patterns??[]){if(!ke(k).test(d))continue;let E=Jr(k,d);E>m?(m=E,v=[S.name]):E===m&&!v.includes(S.name)&&v.push(S.name)}v.length>1&&y.add([...v].sort().join(" + "))}y.size>0&&s.push(Z("CONFIG_AMBIGUOUS_LAYERS",`Some files match multiple layers at equal specificity; classification falls back to declaration order. Disambiguate the overlapping patterns: ${[...y].join(", ")}.`,{pairs:[...y]}));let u=r.filter(d=>!de(d,a));u.length>0&&s.push(Z("CONFIG_UNCLASSIFIED_FILES",`${u.length} included source file(s) are not matched by any configured layer; ark-check will not enforce import rules for those source files.`,{count:u.length,samples:u.slice(0,5)}));let g=Bs(t);if(g.length>0){let d=g[0]??"this layer";s.push(Z("CONFIG_LAYER_MISSING_OWNER",`${d} has no owner. Add a GitHub handle or email to layers[].owners so this house has a name on the door.`,{layers:g,nextAction:Ws(d)}))}return s}i(En,"collectAnalysisConfigWarnings");function Yi(e,t){let n=e.ruleId==="ARKRULE_STRUCTURE",r=e.ruleId==="ARKRULE_SCOPE_EMPTY",o=e.ruleId==="INVARIANT_CATALOG_EMPTY";return{ruleId:e.ruleId,file:e.file,line:e.line,message:e.message,fromLayer:e.fromLayer,arkruleId:e.arkruleId,arkruleSource:e.arkruleSource,...n?{sensor:e.sensor,code:e.code,target:Ei({sensor:e.sensor,code:e.code})}:{},...r||o?{freezable:!1}:{},nextAction:t}}i(Yi,"toArkRuleEngineViolation");function rd(e){let t=e.arkRules;return!!(t&&typeof t=="object"&&!Array.isArray(t)&&Object.keys(t).length>0)}i(rd,"arkRulesMapIsOn");function Xi(e,t){return e.ruleId==="INVARIANT_CATALOG_EMPTY"?t?`Add 1\u20132 short phrases to invariants[] in ${e.arkruleSource} so Domain has policies the code must preserve (advisory \u2014 does not fail the merge until a domain structure rule is enforced).`:`Add 1\u20132 short phrases to invariants[] in ${e.arkruleSource} so Domain has policies the code must preserve. Empty catalog fails --strict-merge because a domain structure rule is already enforced.`:e.ruleId==="ARKRULE_SCOPE_EMPTY"?t?`Review appliesTo for ${e.arkruleId} in ${e.arkruleSource} (zero-match scope; advisory). Empty scope is not freezable; promote only after the folder exists.`:`Fix appliesTo globs for ${e.arkruleId} in ${e.arkruleSource} so they match governed files, or remove the rule. ARKRULE_SCOPE_EMPTY is a config diagnostic and is not freezable (even with --force). Land the rule as advisory until the folder exists, then promote.`:t?`Review ArkRule ${e.arkruleId} in ${e.arkruleSource} (advisory).`:`Fix the structure or invariant for ${e.arkruleId} (declared in ${e.arkruleSource}), then preflight again.`}i(Xi,"arkRuleFindingNextAction");function od(e,t){return t.some(n=>{try{return ke(n).test(e)}catch{return!1}})}i(od,"matchesAny");function sd(e,t){let n=e.contract.config.safety??{},r=Number.isInteger(n.maxTsSuppressions)?Number(n.maxTsSuppressions):0,o=Number.isInteger(n.maxAnyCasts)?Number(n.maxAnyCasts):0,s=e.contract.config.dynamicImportAllowlist??[],a=t.safetyUses.filter(m=>m.kind==="ts-suppression").map(({file:m,line:v})=>({file:m,line:v})),l=t.safetyUses.filter(m=>m.kind==="any-cast").map(({file:m,line:v})=>({file:m,line:v})),c=t.safetyUses.filter(m=>(m.kind==="dynamic-import"||m.kind==="dynamic-require")&&!od(m.file,s)).map(m=>({file:m.file,line:m.line,kind:m.kind==="dynamic-require"?"require":"import"})),p=n.allowInMemory===!0||t.projectPackageName==="arkgate"?[]:t.safetyUses.filter(m=>m.kind==="in-memory-store").map(m=>({file:m.file,line:m.line,store:m.symbol??"in-memory store"})),f=n.allowDisabledPeerIsolation===!0?[]:(e.contract.config.rules??[]).filter(m=>m.peerIsolation===!1||m.allowed===!1&&!!m.from&&m.from===m.to&&m.peerIsolation!==!0).map(m=>({from:m.from,to:m.to})),y={tsSuppressions:a,anyCasts:l,nonLiteralDynamicImports:c,inMemoryProductionStores:p,disabledPeerIsolationRules:f,thresholds:{maxTsSuppressions:r,maxAnyCasts:o}},u=[],g=c.filter(m=>m.kind==="import");if(g.length>0){let m=g[0];u.push({ruleId:"DYNAMIC_IMPORT_NOT_ALLOWLISTED",file:m.file,line:m.line,message:`${g.length} non-literal dynamic import(s) cannot be resolved statically. Add only reviewed files to dynamicImportAllowlist.`})}let d=c.filter(m=>m.kind==="require");if(d.length>0){let m=d[0];u.push({ruleId:"DYNAMIC_REQUIRE_NOT_ALLOWLISTED",file:m.file,line:m.line,message:`${d.length} non-literal require call(s) cannot be resolved statically. Add only reviewed files to dynamicImportAllowlist.`})}if(a.length>r){let m=a[0];u.push({ruleId:"TS_SUPPRESSION_THRESHOLD_EXCEEDED",file:m.file,line:m.line,message:`${a.length} @ts-ignore/@ts-nocheck directive(s) exceed safety.maxTsSuppressions (${r}).`})}if(l.length>o){let m=l[0];u.push({ruleId:"ANY_CAST_THRESHOLD_EXCEEDED",file:m.file,line:m.line,message:`${l.length} explicit any cast(s) exceed safety.maxAnyCasts (${o}).`})}if(p.length>0){let m=p[0];u.push({ruleId:"IN_MEMORY_STORE_IN_PRODUCTION_SOURCE",file:m.file,line:m.line,message:`${p.length} ArkGate InMemory store risk(s) appear in governed production source. Provide durable stores or set safety.allowInMemory only for an explicitly ephemeral service.`})}return f.length>0&&u.push({ruleId:"PEER_ISOLATION_DISABLED",message:`${f.length} rule(s) disable or omit required peerIsolation. Restore peerIsolation: true or set safety.allowDisabledPeerIsolation only with a documented production exception.`}),{report:y,warnings:u}}i(sd,"evaluateSafety");function id(e,t){return[...t].filter(n=>e===n||e.startsWith(`${n}.`)).sort((n,r)=>r.length-n.length)[0]}i(id,"ambientForbiddenGlobal");function Zi(e,t){let n=t.config.layers.filter(r=>(r.intentPrefixes??[]).length>0);return bo(e,n.length>0?n:Io.map(r=>({name:r.layer,prefixes:r.prefixes})))}i(Zi,"intentLayer");function ad(e,t,n){let r=[],o=new Map(e.contract.config.layers.map(s=>[s.name,s]));for(let s of t.ambientUses){let a=n.get(s.file);!a||!id(s.symbol,o.get(a)?.forbiddenGlobals??[])||r.push({ruleId:"FORBIDDEN_GLOBAL",file:s.file,line:s.line,fromLayer:a,target:s.symbol,message:`${a} must not use the ambient global "${s.symbol}".`})}for(let s of t.capabilityUses){let a=n.get(s.file);if(!a)continue;let l=o.get(a),c=l?.forbiddenGlobals??[],p=s.source==="import-based"?t.dependencies.find(f=>f.from===s.file&&f.line===s.line&&f.specifier===s.symbol&&!f.typeOnly)?.kind:void 0;if(!(s.source==="ambient-global"&&pn(s.symbol,c))){if(s.source==="import-based"){let f=Oe(s.symbol,c);if(f){r.push({ruleId:"FORBIDDEN_GLOBAL",file:s.file,line:s.line,fromLayer:a,target:s.symbol,...p?{edgeKind:p}:{},message:`${a} must not use module "${s.symbol}" because it is the import form of forbidden global "${f}".`});continue}}ht(l).includes(s.capability)&&r.push({ruleId:"CAPABILITY_VIOLATION",file:s.file,line:s.line,fromLayer:a,target:s.symbol,capability:s.capability,...p?{edgeKind:p}:{},message:s.source==="import-based"?`${a} denies the ${s.capability} capability; found import of "${s.symbol}".`:`${a} denies the ${s.capability} capability; found ambient "${s.symbol}".`})}}for(let s of t.publishCalls){let a=n.get(s.file);if(!a)continue;for(let c of fn({publishCall:!0,rawIntentName:s.rawIntentName,objectHasIntent:s.objectHasIntent,arkPublishCandidate:s.arkPublishCandidate,hasSource:s.hasSource}))r.push({ruleId:c.ruleId,file:s.file,line:s.line,...c.ruleId==="PUBLISH_MISSING_SOURCE"?{fromLayer:a}:{},message:c.message});if(!s.sourceIntent)continue;let l=Zi(s.sourceIntent,e.contract);!l||l===a||r.push({ruleId:"PUBLISH_SOURCE_LAYER_MISMATCH",file:s.file,line:s.line,fromLayer:a,toLayer:l,target:s.sourceIntent,message:`Publish source "${s.sourceIntent}" resolves to ${l}, but the publishing file is classified as ${a}.`})}for(let s of t.intentReferences){let a=n.get(s.file);if(!a)continue;let l=Zi(s.intent,e.contract);if(!l)continue;let c=ze(e.contract.config.rules,a,l,{fromPath:s.file,layers:e.contract.config.layers});if(!c)continue;let p=c.rule.peerIsolation?ut(c.peerIsolationReason??"cross-slice",{fromPath:s.file,fromSlice:c.fromSlice,toSlice:c.toSlice}):void 0,f=`${a} must not reference ${l} intent ${s.intent}.`,y=p&&c.peerIsolationReason!=="cross-slice"?`${f} ${p}`:c.rule.message?p?`${c.rule.message} (${p})`:c.rule.message:f;r.push({ruleId:"LAYER_INTENT_REFERENCE_VIOLATION",file:s.file,line:s.line,fromLayer:a,toLayer:l,target:s.intent,...c.rule.peerIsolation?{peerIsolation:!0}:{},message:y})}return r}i(ad,"contentViolations");function ld(e){let{facts:t}=e,n=It(e.contract.config),r=t.evidenceRequirementsHash===n,o=r?t.completeness:"unavailable",s=r?t.completenessReasons:[...t.completenessReasons,{code:"EVIDENCE_REQUIREMENTS_MISMATCH",message:"Resolved facts were collected for different policy-controlled evidence requirements."}].sort((h,D)=>{let ie=`${h.code}\0${h.file??""}\0${h.message}`,fe=`${D.code}\0${D.file??""}\0${D.message}`;return ie<fe?-1:ie>fe?1:0}),a=t.files.map(h=>({...h,layer:de(h.path,e.contract.config.layers)??null})),l=new Map(a.map(h=>[h.path,h.layer])),c=t.dependencies.map(h=>{let D=h.target?l.get(h.target)??de(h.target,e.contract.config.layers):void 0;return{from:h.from,fromLayer:l.get(h.from)??null,...h.resolution==="resolved-project"&&h.target?{to:h.target,...D?{toLayer:D}:{}}:{},line:h.line,kind:h.kind,typeOnly:h.typeOnly,...h.targetTypeOnlyExports?{targetTypeOnlyExports:h.targetTypeOnlyExports}:{},...h.sourcePureTypeModule?{sourcePureTypeModule:h.sourcePureTypeModule}:{},...h.namedBindingsTypeOnly?{namedBindingsTypeOnly:h.namedBindingsTypeOnly}:{},...h.portProofEligible?{portProofEligible:h.portProofEligible}:{}}}),p=En({config:e.contract.config,rules:e.contract.config.rules,files:a.map(h=>h.path)}),f=sd(e,t),y=e.contract.arkRules??Rn(),u=a.map(h=>h.path),d={...e.coverageInputs?.fileContents&&Object.keys(e.coverageInputs.fileContents).length>0?Li(e.coverageInputs.fileContents):{},...e.fileHints??{}},m=i(h=>l.get(h)??de(h,e.contract.config.layers),"resolveLayer"),v=[...Ti({arkRules:y,classShapes:e.contract.classShapes??t.classShapes??[],files:u,layerForFile:m,fileHints:d}),...Ni(y,u),...Di({arkRulesActive:rd(e.contract.config),arkRules:y,layers:e.contract.config.layers??[],files:u.map(h=>({path:h,layer:m(h)}))})],S=v.filter(h=>h.failsStrict).map(h=>Yi(h,Xi(h,!1))),k=v.filter(h=>!h.failsStrict).map(h=>({...Yi(h,Xi(h,!0)),failsStrict:!1})),C=(y.invariants?.length??0)>0?pi({arkRules:y,fileContents:e.coverageInputs?.fileContents??{},testFiles:e.coverageInputs?.testFiles??[],testGlobsMissing:e.coverageInputs?.testGlobsMissing===!0||e.coverageInputs===void 0||(e.coverageInputs.testFiles?.length??0)===0,coverageBudgetExhausted:e.coverageInputs?.coverageBudgetExhausted===!0,...e.coverageInputs?.stats?{coverageStats:e.coverageInputs.stats}:{},...e.coverageInputs?.coverageRoots?{coverageRoots:e.coverageInputs.coverageRoots}:{}}):{coverage:[],violations:[],partial:!1},N=C.violations.filter(h=>h.failsStrict).map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,arkruleId:h.arkruleId,arkruleSource:h.arkruleSource,nextAction:`Add a test title or declared symbol covering ${h.arkruleId} (declared in ${h.arkruleSource}), then preflight again.`})),b=C.violations.filter(h=>!h.failsStrict).map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,arkruleId:h.arkruleId,arkruleSource:h.arkruleSource,failsStrict:!1,nextAction:h.ruleId==="INVARIANT_COVERAGE_OUTSIDE_ROOTS"?`Move ${h.file} under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json.`:`Cover invariant ${h.arkruleId} in ${h.arkruleSource} (advisory / partial).`})),T=Fi(a),Q=Vi({arkRun:e.contract.config.arkRun,layers:e.contract.config.layers,kernelCalls:t.arkRunKernelCalls,managedNews:t.arkRunManagedNews,compositionRootHits:t.arkRunCompositionRootHits,declarations:t.arkRunDeclarations,dependencies:t.dependencies,layerForFile:i(h=>l.get(h)??de(h,e.contract.config.layers),"layerForFile"),classification:T}),pe=e.contract.config.arkRun?.mode,it=Q.findings.filter(()=>pe==="enforced").map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,target:h.target,nextAction:h.nextAction,sensor:h.sensor,failsStrict:h.failsStrict,...h.severity?{severity:h.severity}:{}})),F=Q.findings.filter(()=>pe!=="enforced").map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,target:h.target,nextAction:h.nextAction,sensor:h.sensor,failsStrict:!1})),ce=qi({arkOrder:e.contract.config.arkOrder,layers:e.contract.config.layers,planeCalls:t.arkOrderPlaneCalls,genericUpdates:t.arkOrderGenericUpdates,planeRootHits:t.arkOrderRootHits,xiFieldWrites:t.arkOrderXiFieldWrites,ingestWritesXi:t.arkOrderIngestWritesXi,releaseKeyCounts:t.arkOrderReleaseKeyCounts,dependencies:t.dependencies,layerForFile:i(h=>l.get(h)??de(h,e.contract.config.layers),"layerForFile"),classification:T}),Y=e.contract.config.arkOrder?.mode,at=ce.findings.filter(()=>Y==="enforced").map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,target:h.target,nextAction:h.nextAction,sensor:h.sensor,failsStrict:h.failsStrict,...h.severity?{severity:h.severity}:{}})),lt=ce.findings.filter(()=>Y!=="enforced").map(h=>({ruleId:h.ruleId,file:h.file,line:h.line,message:h.message,fromLayer:h.fromLayer,target:h.target,nextAction:h.nextAction,sensor:h.sensor,failsStrict:!1})),Kt=[...C.partial&&C.coverage.some(h=>h.mode==="enforced"&&h.partial)?[{code:"INVARIANT_COVERAGE_PARTIAL",message:"Enforced ArkRules invariant coverage cannot be fully proven (missing test globs or empty test set); reporting partial, never covered."}]:[],...Q.completenessReasons,...ce.completenessReasons],Ht=tt({config:e.contract.config,rules:e.contract.config.rules,files:a.filter(h=>h.layer).map(h=>h.path),contentViolations:[...ad(e,t,l),...S,...N,...it,...at],edges:c,warnings:[...p,...f.warnings,...k,...b,...F,...lt],safety:f.report}),Ut=o==="complete"&&Kt.length>0?"partial":o,w=Ut==="complete"?s:[...s,...Kt].sort((h,D)=>{let ie=`${h.code}\0${h.file??""}\0${h.message}`,fe=`${D.code}\0${D.file??""}\0${D.message}`;return ie<fe?-1:ie>fe?1:0}),x=Ht.violations.filter(h=>h.failsStrict!==!1),R=Ut==="complete"&&x.length===0,A=R&&Ht.warnings.every(h=>h.failsStrict===!1);return{mode:"resolved-candidate-facts",completeness:Ut,completenessReasons:w,valid:R,strictValid:A,policyHash:e.contract.policyHash,factsHash:t.factsHash,resolverIdentity:t.resolverIdentity,candidateTreeHash:t.candidateTreeHash,safety:f.report,ir:{schemaVersion:"1.0",policyHash:e.contract.policyHash,compilerOptionsHash:t.compilerOptionsHash,files:a,layers:e.contract.config.layers.map(h=>h.name),edges:c,capabilityUses:t.capabilityUses,violations:Ht.violations,warnings:Ht.warnings}}}i(ld,"analyzeCanonicalResolvedProject");function vt(e){return ld({contract:e.contract,facts:ve(e.facts),coverageInputs:e.coverageInputs,fileHints:e.fileHints})}i(vt,"analyzeResolvedProject");function Ji(e){return W($(e.map(({path:t,contentHash:n})=>({path:t,contentHash:n}))))}i(Ji,"analysisTreeHash");function Do(e){let t=bt(e),n=new Map(t.ir.files.map(d=>[d.path,d])),r=[],o=new Set,s=[];for(let d of e.changes){let m=d.path.replace(/\\/g,"/"),v=et(d.path);if(!v||v===".."||v.startsWith("../")||m.startsWith("/")||/^[A-Za-z]:\//.test(m)||m.includes("\0")){s.push({ruleId:"INVALID_CHANGE_PATH",file:"<change-set>",line:1,message:"Every change requires a safe, non-empty project-relative path."});continue}if(o.has(v)){s.push({ruleId:"DUPLICATE_CHANGE_PATH",file:v,line:1,message:`The atomic change set contains more than one operation for ${v}.`});continue}o.add(v),"delete"in d&&d.delete&&!n.has(v)&&s.push({ruleId:"DELETE_TARGET_MISSING",file:v,line:1,message:`Cannot delete ${v} because it is not present in the supplied base tree.`}),r.push("delete"in d&&d.delete?{path:v,delete:!0}:{path:v,content:"content"in d?d.content:""})}e.changes.length===0&&s.push({ruleId:"CHANGE_SET_EMPTY",file:"<change-set>",line:1,message:"Atomic preflight requires at least one create, update, or delete."});let a=bn({...e,changes:r}),l=new Map(a.ir.files.map(d=>[d.path,d])),c=a.ir.violations.filter(d=>d.ruleId==="CAPABILITY_VIOLATION"||d.ruleId==="FORBIDDEN_GLOBAL").map(d=>{let m=l.get(d.evidence.file)?.layer;return{ruleId:d.ruleId,file:d.evidence.file,line:d.evidence.line,target:d.symbol,...d.capability?{capability:d.capability}:{},...m?{fromLayer:m}:{},edgeKind:"import",message:d.message}}),p=tt({config:e.contract.config,rules:e.contract.config.rules,files:a.ir.files.map(d=>d.path),contentViolations:c,edges:a.ir.edges.filter(d=>!!d.fromLayer).map(d=>({from:d.from,fromLayer:d.fromLayer,...d.to?{to:d.to}:{},...d.toLayer?{toLayer:d.toLayer}:{},line:d.evidence.line,kind:"import",...d.typeOnly?{typeOnly:!0}:{},...d.namedBindingsTypeOnly?{namedBindingsTypeOnly:!0}:{}}))}),f=r.map(d=>{let m=et(d.path),v=n.get(m),S=l.get(m);return{path:m,operation:"delete"in d&&d.delete?"delete":v?"update":"create",...v?{beforeContentHash:v.contentHash}:{},...S?{candidateContentHash:S.contentHash}:{}}}).sort((d,m)=>d.path.localeCompare(m.path)),y=[...s,...p.violations].map(d=>({...d,nextAction:ge(d)})),u=y.filter(d=>d.failsStrict!==!1),g=e.changeMap?Qe({changeMap:e.changeMap,changes:f,baseDependencies:t.ir.edges.flatMap(d=>d.to?[{from:d.from,to:d.to}]:[]),candidateDependencies:a.ir.edges.flatMap(d=>d.to?[{from:d.from,to:d.to}]:[])}):void 0;return{schemaVersion:"1.0",mode:"lexical-compatibility",valid:t.completeness==="complete"&&a.valid&&u.length===0&&(g?.structurallyConverged??!0),readOnly:!0,policyHash:e.contract.policyHash,compilerOptionsHash:a.ir.compilerOptionsHash,baseTreeHash:Ji(t.ir.files),candidateTreeHash:Ji(a.ir.files),baseCompleteness:t.completeness,candidateCompleteness:a.completeness,baseCompletenessReasons:t.completenessReasons,candidateCompletenessReasons:a.completenessReasons,...e.changeMap?{changeMapHash:e.changeMap.hash}:{},...g?{convergence:g}:{},changes:f,violations:y,warnings:p.warnings}}i(Do,"preflightChange");function cd(e){let t=e.replace(/\\/g,"/");if(!t||t.startsWith("/")||/^[A-Za-z]:\//.test(t)||t.includes("\0"))return;let n=[];for(let o of t.split("/"))if(!(!o||o==="."))if(o===".."){if(n.length===0)return;n.pop()}else n.push(o);let r=n.join("/");return r&&r===t?r:void 0}i(cd,"canonicalChangePath");function dd(e,t){return[["resolverIdentity",e.resolverIdentity,t.resolverIdentity],["compilerIdentity",e.compilerIdentity,t.compilerIdentity],["evidenceRequirementsHash",e.evidenceRequirementsHash,t.evidenceRequirementsHash],["projectPackageName",e.projectPackageName??"",t.projectPackageName??""]].filter(([,r,o])=>r!==o).map(([r,o,s])=>({ruleId:"FACTS_IDENTITY_MISMATCH",file:"<change-set>",line:1,field:r,before:o,candidate:s,message:`Base and candidate facts must use the same ${r}.`}))}i(dd,"identityViolations");function ud(e,t,n,r){let o=n.get(t),s=r.get(t);return{path:t,operation:"delete"in e&&e.delete?"delete":o?"update":"create",...o?{beforeContentHash:o.contentHash}:{},...s?{candidateContentHash:s.contentHash}:{}}}i(ud,"preparedChange");function Lo(e){let t=ve(e.baseFacts),n=ve(e.candidateFacts),r=vt({contract:e.contract,facts:t}),o=vt({contract:e.contract,facts:n}),s=new Map(t.files.map(g=>[g.path,g])),a=new Map(n.files.map(g=>[g.path,g])),l=dd(t,n),c=new Map,p=[];for(let g of e.changes){let d=cd(g.path);if(!d){l.push({ruleId:"INVALID_CHANGE_PATH",file:"<change-set>",line:1,message:"Every change requires a canonical project-relative path."});continue}if(c.has(d)){l.push({ruleId:"DUPLICATE_CHANGE_PATH",file:d,line:1,message:`The atomic change set contains more than one operation for ${d}.`});continue}c.set(d,g);let m=s.get(d),v=a.get(d);if("delete"in g&&g.delete)m||l.push({ruleId:"DELETE_TARGET_MISSING",file:d,line:1,message:`Cannot delete ${d} because it is not present in the supplied base facts.`}),v&&l.push({ruleId:"CANDIDATE_DELETE_NOT_APPLIED",file:d,line:1,message:`Candidate facts still contain deleted file ${d}.`});else{let S="content"in g?g.content:"",k=W(S);v?v.contentHash!==k&&l.push({ruleId:"CANDIDATE_CONTENT_HASH_MISMATCH",file:d,line:1,expectedContentHash:k,candidateContentHash:v.contentHash,message:`Candidate facts for ${d} do not match the declared content.`}):l.push({ruleId:"CANDIDATE_CHANGE_MISSING",file:d,line:1,message:`Candidate facts do not contain changed file ${d}.`})}p.push(ud(g,d,s,a))}e.changes.length===0&&l.push({ruleId:"CHANGE_SET_EMPTY",file:"<change-set>",line:1,message:"Atomic preflight requires at least one create, update, or delete."});for(let g of new Set([...s.keys(),...a.keys()])){if(c.has(g))continue;let d=s.get(g),m=a.get(g);d&&m&&$(d)===$(m)||l.push({ruleId:"UNDECLARED_CANDIDATE_CHANGE",file:g,line:1,message:`Candidate facts change ${g}, but the atomic change set does not declare it.`})}let f=e.changeMap?Qe({changeMap:e.changeMap,changes:p,baseDependencies:r.ir.edges.flatMap(g=>g.to?[{from:g.from,to:g.to}]:[]),candidateDependencies:o.ir.edges.flatMap(g=>g.to?[{from:g.from,to:g.to}]:[])}):void 0,y=[...l,...o.ir.violations].map(g=>({...g,nextAction:ge(g)})),u=y.filter(g=>g.failsStrict!==!1);return{schemaVersion:"1.0",mode:"resolved-candidate-facts",valid:r.completeness==="complete"&&o.strictValid&&u.length===0&&(f?.structurallyConverged??!0),readOnly:!0,policyHash:e.contract.policyHash,resolverIdentity:n.resolverIdentity,compilerIdentity:n.compilerIdentity,compilerOptionsHash:n.compilerOptionsHash,tsconfigHash:n.tsconfigHash,baseCompilerOptionsHash:t.compilerOptionsHash,candidateCompilerOptionsHash:n.compilerOptionsHash,baseTsconfigHash:t.tsconfigHash,candidateTsconfigHash:n.tsconfigHash,evidenceRequirementsHash:n.evidenceRequirementsHash,baseFactsHash:t.factsHash,candidateFactsHash:n.factsHash,baseTreeHash:t.candidateTreeHash,candidateTreeHash:n.candidateTreeHash,baseCompleteness:r.completeness,candidateCompleteness:o.completeness,baseCompletenessReasons:r.completenessReasons,candidateCompletenessReasons:o.completenessReasons,...e.changeMap?{changeMapHash:e.changeMap.hash}:{},...f?{convergence:f}:{},changes:p.sort((g,d)=>g.path<d.path?-1:g.path>d.path?1:0),violations:y,warnings:o.ir.warnings}}i(Lo,"preflightResolvedChange");var kr="docs/diagnostics.md",Qi="1.0";function I(e,t,n,r,o,s){return{ruleId:e,title:n,why:r,fix:o,docsAnchor:e,category:t,...s?.oftenAdvisory?{oftenAdvisory:!0}:{}}}i(I,"entry");var vn=Object.freeze([I("LAYER_IMPORT_VIOLATION","layer","This import is not allowed","This file imported a folder it may not reach. The write doesn\u2019t land. The same check fails the pull request.","Branch by import kind: constants/types/pure \u2192 adopt into DomainModel or SharedKernel (do not invent a port); kernel/events/bootstrap from Persistence \u2192 inject a port or move the map to SharedTypes (Persistence must not emit); define a port only when the target is a real use-case. Type-only edges use `import type`. Then preflight again. Do not weaken the layer rule without a hash-bound policy acknowledgement."),I("LAYER_INTENT_REFERENCE_VIOLATION","layer","Intent referenced across a blocked layer edge","A string intent (or intent-like reference) names a layer that the file\u2019s layer may not reach under the contract rules \u2014 the same plane as import edges, for event/intent coupling.","Reference that intent from a layer allowed to know about it (usually an adapter or application layer), or relocate the reference \u2014 then preflight again."),I("LAYER_REFERENCE_VIOLATION","layer","Layer reference blocked (snippet / AI gate)","Snippet analysis found an intent or string reference that would couple layers in a direction the architecture profile forbids.","Move the reference to an allowed layer or introduce a port/event boundary, then re-run the snippet gate."),I("CIRCULAR_DEPENDENCY","layer","Dependency cycle","Two or more modules import each other in a loop. Cycles make ownership unclear and break stable layer direction.","Extract the shared dependency into a third module, invert one edge behind a port, or merge units that are truly one \u2014 then preflight again."),I("FORBIDDEN_GLOBAL","capability","Forbidden ambient global or dual import","The file\u2019s layer lists this ambient (or its exact import dual, e.g. process / node:process) in forbiddenGlobals. Pure layers must not reach wall-clock, network, process, or similar effects directly.","Inject the capability through a small port (Clock, HttpPort, Config, \u2026), bind the implementation outside the walled layer, then preflight again."),I("CAPABILITY_VIOLATION","capability","Denied effect capability","The layer denies an effect capability (network, filesystem, clock, randomness, environment, process, persistence) and the candidate uses that effect via ambient or import evidence.","Define a capability port in the walled layer, bind the implementation in an adapter layer, then preflight again. Never mechanical-safe \u2014 port shape is a design decision."),I("RAW_EVENT_PUBLISH","publish","Raw event publish","Publish went through a raw string or object instead of a registered intent creator, bypassing Ark intent contracts and tooling.","Publish through a registered intent creator, then run Ark again."),I("PUBLISH_MISSING_SOURCE","publish","Publish missing metadata.source","A strict Ark publish call omitted metadata.source, so the publishing layer cannot be verified.","Add metadata.source to the publish call, then run Ark again."),I("PUBLISH_SOURCE_LAYER_MISMATCH","publish","Publish source layer mismatch","metadata.source resolves to a different layer than the file performing the publish.","Use a source intent owned by the same layer as this file, or move the publish call to the owning layer."),I("UNKNOWN_INTENT","publish","Unknown intent reference","Snippet analysis saw an intent string that is not registered in the intent registry / profile under check.","Register the intent or use a known intent name from the project registry, then re-run the gate."),I("DYNAMIC_IMPORT_NOT_ALLOWLISTED","safety","Non-literal dynamic import","A dynamic import(expr) cannot be resolved statically and the file is not on dynamicImportAllowlist. Unresolved dynamics can hide layer edges.","Rewrite to a static import when possible, or add only reviewed files to dynamicImportAllowlist after human sign-off."),I("DYNAMIC_REQUIRE_NOT_ALLOWLISTED","safety","Non-literal require","A require(expr) cannot be resolved statically and is not allowlisted \u2014 same hide-the-edge risk as dynamic import.","Prefer static import, or allowlist only reviewed files after sign-off."),I("TS_SUPPRESSION_THRESHOLD_EXCEEDED","safety","@ts-ignore / @ts-nocheck threshold","Count of TypeScript suppressions in governed production source exceeds safety.maxTsSuppressions.","Remove suppressions by fixing types, or raise the threshold only with an explicit production exception in ark.config.json."),I("ANY_CAST_THRESHOLD_EXCEEDED","safety","Explicit any cast threshold","Count of explicit any casts exceeds safety.maxAnyCasts.","Replace any with precise types, or raise the threshold only with a documented exception."),I("IN_MEMORY_STORE_IN_PRODUCTION_SOURCE","safety","In-memory store in production source","Governed production source references an Ark InMemory* store without safety.allowInMemory \u2014 durable systems should not ship ephemeral stores by accident.","Provide a durable store implementation, or set safety.allowInMemory only for an explicitly ephemeral service."),I("PEER_ISOLATION_DISABLED","safety","peerIsolation disabled on a rule","A same-layer or peer rule disables peerIsolation (or omits it where required), which allows cross-slice coupling the contract otherwise blocks.","Restore peerIsolation: true, or set safety.allowDisabledPeerIsolation only with a documented production exception."),I("ARKRULE_STRUCTURE","arkrules","ArkRule structure sensor failed","An opt-in ArkRules structure sensor (private state, factory shape, event publish, persistence write outside an aggregate, \u2026) failed on a governed file for a declared arkruleId.","Restore the declared structure for the ArkRule (see arkruleSource), then preflight again. Do not demote the rule without a hash-bound policy acknowledgement."),I("ARKRULE_INVARIANT","arkrules","ArkRule invariant failed","Reserved / remediation-recognized code for invariant-plane failures bound to an ArkRule id (coverage path also emits INVARIANT_UNCOVERED).","Fix the invariant for the ArkRule declared in arkrules/<Layer>.json, then preflight again. Do not demote without acknowledgement."),I("ARKRULE_SCOPE_EMPTY","arkrules","ArkRule appliesTo matched zero files","An ArkRule\u2019s appliesTo globs matched no governed files \u2014 the rule cannot observe what it claims to protect.","Fix appliesTo globs so they match governed files, or remove the rule. Enforced empty scope fails; advisory empty scope warns.",{oftenAdvisory:!0}),I("ARKRULE_HINT_BUDGET_EXHAUSTED","arkrules","Structural-hint budget exhausted","orchestration-only, thin-adapter, and writes-via-aggregate only evaluate files the hint loader preloaded. When eligible governed files exceed that budget (coverage.maxFiles, default 400 \u2014 there is no arkrules.hintBudget), those sensors never saw the rest of their scope. Enforced + unreviewed is not green. The finding names exact hinted/governed counts and per-sensor reviewed N/M of scope.","Raise coverage.maxFiles in ark.config.json (this cap also bounds structural-hint preload; --doctor names the coupling) so hinted/governed counts match, then re-run with --strict-config. An enforced hint sensor that cannot see its scope fails strict."),I("INVARIANT_CATALOG_EMPTY","arkrules","Domain invariant catalog is empty","ArkRules is on and a Domain-role layer has code, but invariants[] has no phrases the code must preserve. Empty looks like \u201Cdone\u201D until someone fills the catalog.","Add 1\u20132 short phrases to invariants[] in arkrules/<Domain>.json (or the mapped file). Starters show the shape. Advisory unless a domain structure rule is already enforced \u2014 then --strict-merge can refuse. Do not freeze this finding.",{oftenAdvisory:!0}),I("INVARIANT_UNCOVERED","arkrules","Invariant without coverage evidence","An ArkRules invariant is under contract but no covering test title or declared symbol evidence was found (or coverage is partial). Kind is never-had-tests (adopt residual) vs tests-disappeared (suite exists).","Add a test title or declared symbol covering the arkruleId, then preflight again. Treat never-had-tests as adopt residual; treat tests-disappeared as a regression. Missing test globs report partial \u2014 never fake green. When the message reports an exhausted file budget, raise coverage.maxFiles (or narrow coverage.testGlobs) in ark.config.json."),I("INVARIANT_COVERAGE_OUTSIDE_ROOTS","arkrules","Covering test outside the declared coverage roots","The only test naming this invariant sits outside coverage.coverageRoots \u2014 the places the project declares its runner executes. ArkGate matches declared text and never executes tests, so it cannot tell whether that file is ever run: coverage there is a test that exists, not a test that runs.","Move the test under a declared coverage root, or add its root to coverage.coverageRoots in ark.config.json. Advisory: it never fails strict, but promotion to enforced refuses on it.",{oftenAdvisory:!0}),I("ARKRUN_MISSING_ROOT","arkrun","No kernel factory in composition roots","The ArkRun extra is on but no createArkKernel / createStrictArkKernel / createArkKernelFromConfig / createStrictArkKernelFromConfig factory was found in arkRun.compositionRoots, so agents can skip the kernel while the write gate stays green.","Import createStrictArkKernel from arkgate/runtime (same npm package; @arkgate/runtime is deprecated) and call it in a composition root listed in arkRun.compositionRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision."),I("ARKRUN_KERNEL_IN_DOMAIN","arkrun","Domain-role layer imports the kernel","A Domain-role layer imports arkgate/runtime, @arkgate/runtime, or kernel types. Domain stays kernel-free; composition roots and adapters own the factory.","Move the kernel import out of the Domain-role layer into a composition root or adapter. Import from arkgate/runtime (same npm package; @arkgate/runtime is deprecated), then preflight again. Never mechanical-safe."),I("ARKRUN_DIRECT_NEW","arkrun","Managed type constructed with new","A managed non-Domain file constructs an admitted type with new outside an ArkRun composition-root factory, skipping kernel resolve/registration.","Resolve the type from the kernel instead of constructing it with new, then preflight again. Never mechanical-safe \u2014 rewiring construction is a design decision."),I("ARKRUN_UNDECLARED_EMIT","arkrun","Emit name not in raises/sends","A publisher / publish / raise / send call-site literal is not listed in the file\u2019s raises or sends declaration.","Add the existing call-site name to raises or sends on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new emit stays judgment."),I("ARKRUN_UNDECLARED_HANDLE","arkrun","Handle name not in reactsTo","A subscribe / registerHandler call-site literal is not listed in the file\u2019s reactsTo declaration.","Add the existing call-site name to reactsTo on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new handle stays judgment."),I("ARKRUN_UNDECLARED_DEPEND","arkrun","Depend name not in uses","A resolve / resolveSingleton call-site literal is not listed in the file\u2019s uses declaration.","Add the existing call-site name to uses on the managed component, then preflight again. Mechanical-safe only when that literal already exists and the edit is the declaration list; inventing a new depend stays judgment."),I("ARKRUN_TRANSPORT_BYPASS","arkrun","Homemade broker or emitter import","A managed layer imports a closed broker/queue/emitter specifier (EventEmitter, queue clients, \u2026) instead of the ArkRun kernel transport.","Send through the ArkRun kernel transport instead of importing that broker or emitter, then preflight again. Never mechanical-safe \u2014 homemade buses stay judgment."),I("ARKORDER_MISSING_PLANE","arkorder","No createOrderPlane in plane roots","The ArkOrder extra is on but no createOrderPlane factory was found in arkOrder.planeRoots, so agents can skip the pattern plane while the write gate stays green.","Import createOrderPlane from arkgate/order and call it in a plane root listed in arkOrder.planeRoots, then preflight again. Never mechanical-safe \u2014 factory placement is a design decision."),I("ARKORDER_KERNEL_IN_DOMAIN","arkorder","Domain-role layer imports the order plane","A Domain-role layer imports arkgate/order. Domain stays plane-free; planeRoots own the factory.","Move the arkgate/order import out of the Domain-role layer into a plane root or adapter, then preflight again. Never mechanical-safe."),I("ARKORDER_GENERIC_UPDATE","arkorder","Generic update of a big product choice","A call to update/patch/set rewrites a named product choice (like billing plan) as if it were a seat count.","Don't use a generic update. First freeze with release(). Later, propose the change, then apply it."),I("ARKORDER_TOO_MANY_PARAMS","arkorder","Too many slow keys","\u03BE has more keys than arkOrder.maxXiKeys. Haken requires a few slow modes, not a dump of microstate.","Cut \u03BE to the slow keys that actually slave the rest, then preflight again. Never mechanical-safe."),I("ARKORDER_INGEST_WRITES_XI","arkorder","ingest assigned into \u03BE","An ingest() result is written into a Release or \u03BE store. ingest may absorb, escalate_up, or hold; it never mints a pattern.","Keep ingest results as absorb/escalate_up/hold only. Change \u03BE with proposeRelease then apply(ProposeResult). Never mechanical-safe."),I("ARKORDER_XI_FIELD_WRITE","arkorder","Big product choice written like a seat count","A use-case writes a named product choice (like billing plan) through a database update. Invoices and seats can flow. That choice cannot.","Keep invoices and seats as events. Change the choice through the valve (proposeRelease then apply), not a generic update."),I("ARKORDER_INFORMATION_BUDGET","arkorder","Projection observes a forbidden kind","h(\u03BE) allowedKinds includes a kind listed in informationBudget.cannotObserve. A scale may not look at what it was told not to see.","Cut that kind from the projector or from cannotObserve, then preflight again. Never mechanical-safe."),I("ARKORDER_XI_TTL","arkorder","Slow key carries a freshness field","\u03BE named ttl/freshUntil/maxAge. Freshness belongs on \u03C3. A slow parameter that expires per transaction is not slow.","Move freshness onto \u03C3 (freshUntil) and keep \u03BE stable, then preflight again. Never mechanical-safe."),I("ARKORDER_STALE_SIGMA","arkorder","\u03C3 is stale","ingest ran after \u03C3.freshUntil (or sigmaMaxAgeMs). \u03BE does not TTL.","Call refreshSigma and ingest again, or proposeRelease then apply(ProposeResult) if the pattern changed. Never mechanical-safe."),I("ARKORDER_UNVALVED_RELEASE","arkorder","Second freeze without the valve","release() already froze the big choice. A later release() with a different value does not land. First freeze is release(); later change is proposeRelease then apply.","Change the choice with proposeRelease then apply. release() is only the first freeze. Never mechanical-safe."),I("INVALID_CHANGE_PATH","preflight","Unsafe change path","A change set entry is not a safe, non-empty project-relative path (absolute, escape, empty, or NUL).","Use canonical project-relative paths only in the atomic change set, then preflight again."),I("DUPLICATE_CHANGE_PATH","preflight","Duplicate path in change set","The atomic change set lists more than one operation for the same path.","Collapse to one create/update/delete per path, then preflight again."),I("DELETE_TARGET_MISSING","preflight","Delete target missing","A delete operation targets a path that is not present in the supplied base tree.","Remove the delete, or include the file in the base tree facts, then preflight again."),I("CHANGE_SET_EMPTY","preflight","Empty change set","Atomic preflight was invoked with no create, update, or delete operations.","Provide at least one change operation, then preflight again."),I("FACTS_IDENTITY_MISMATCH","preflight","Base/candidate facts identity mismatch","Base and candidate resolved facts disagree on resolver, compiler, evidence requirements, or package identity \u2014 verdicts would not be comparable.","Regenerate both fact snapshots with the same resolver/compiler/evidence requirements, then preflight again."),I("CANDIDATE_DELETE_NOT_APPLIED","preflight","Candidate still contains deleted path","Facts claim a delete, but the candidate tree still includes the path.","Ensure the candidate facts apply the delete (path absent), then preflight again."),I("CANDIDATE_CHANGE_MISSING","preflight","Declared change missing from candidate","The change set declares a create/update whose path is missing from candidate facts.","Include the new content in the candidate facts (or drop the operation), then preflight again."),I("CANDIDATE_CONTENT_HASH_MISMATCH","preflight","Candidate content hash mismatch","The candidate file content hash does not match the hash expected for the declared change.","Rebuild candidate facts from the exact proposed content, then preflight again."),I("UNDECLARED_CANDIDATE_CHANGE","preflight","Undeclared candidate change","Candidate facts differ from base for a path that was not listed in the explicit change set.","Declare every path that changes in the atomic change set, then preflight again."),I("ATOMIC_PREFLIGHT_UNAVAILABLE","preflight","Atomic preflight unavailable","The host/MCP path could not run the atomic preflight engine (missing facts, incomplete setup, or unsupported mode).","Use resolved-candidate facts / ark_prepare_change with a complete batch, or fall back to ark-check on disk. Do not treat missing preflight as green."),I("DESIGN_SMELL_REGRESSION","preflight","Design smell regression on base-relative ratchet","Compared to the base ref, the candidate introduces a created-path domain-logic-in-ui file under --strict-merge, or introduces or worsens a blocking design-smell class under --fail-on-new-smells.","Move the new UI business rule out of the created file (or revert a --fail-on-new-smells regression), then re-run with the same base ref."),I("ANALYSIS_PARSE_INCOMPLETE","analysis","Parse incomplete","Governed source could not be fully parsed; evidence includes the TypeScript diagnostic (line + message). Incremental mid-edit parse is normal for agents. Contract exclude paths skip the write hook.","Finish the source or fix the reported syntax error, then re-run `npx arkgate-check`. The write hook does not deny solely on mid-edit parse. Partial never means pass."),I("LEXICAL_EVIDENCE_INCOMPLETE","analysis","Lexical evidence incomplete","This check only saw one file, so it cannot fully prove how the import resolves. The result is provisional \u2014 `ark-check` on the project is the authority.","Run `npx arkgate-check --root . --config ark.config.json` to confirm. Do not call ark_prepare_change from a hook deny."),I("ANALYSIS_COVERS_NO_FILES","analysis","Analysis covered no files","No file matched the contract include and layer patterns under the analyzed root, so the run had nothing to check. Every rule is vacuously satisfied on an empty set: a green here would read exactly like a green over a governed tree while certifying nothing. Usual causes are a --root that is not the tree the contract describes (including a contract found outside the requested root, whose directory is then adopted as the project root), include / exclude patterns that match nothing, or layer patterns written for a different layout.","Point --root at the tree the contract describes, or keep the contract inside that tree, or fix the include / exclude / layer patterns so they match real files \u2014 then re-run `npx arkgate-check --root . --config ark.config.json`. This is a refusal about ArkGate\u2019s own inputs, not a finding about your code; no baseline or policy acknowledgement can suppress it."),I("ANALYSIS_HOST_UNAVAILABLE","analysis","Analysis host unavailable","No usable TypeScript / analysis host was available for this invocation.","Install a supported TypeScript version visible to the project, then re-run. Unavailable analysis is fail-closed."),I("ADAPTER_NOT_ALLOWED_FOR_PORT","adapter","Adapter not allowed for port","Runtime/port wiring selected an adapter implementation that the architecture profile does not allow for that port.","Bind an allowed adapter for the port, or adjust the profile with an explicit policy decision \u2014 then re-run."),I("FORBIDDEN_PATTERN","snippet-policy","Forbidden regex pattern","Snippet content matched a project or profile forbiddenPatterns rule.","Remove or rewrite the matching code so the pattern no longer matches, then re-run the snippet gate."),I("FORBIDDEN_SUBSTRING","snippet-policy","Forbidden substring","Snippet content contained a forbidden substring from the AI gate options/profile.","Remove the forbidden substring, then re-run the snippet gate."),I("FORBIDDEN_IMPORT","snippet-policy","Forbidden import target","Snippet imported or required a module listed as forbidden for the active profile.","Import an allowed module or inject the dependency behind a port, then re-run."),I("POLICY_VIOLATION","snippet-policy","Policy engine violation","A registered Policy failed on the snippet or generated code under evaluation.","Adjust the code to satisfy the named policy, or change the policy only through an explicit contract decision."),I("EXTENSION_ERROR","snippet-policy","AI gate extension error","A registered AICodeGate extension threw while analyzing the snippet.","Fix or remove the failing extension; do not ignore extension failures as pass."),I("AST_ANALYZER_ERROR","snippet-policy","AST analyzer error","Built-in AST/symbol analysis failed (host error or unexpected analyzer exception).","Ensure TypeScript host and snippet are valid; re-run. If the analyzer crashes on valid input, file a bug with a minimal fixture."),I("CONFIG_INVALID_DYNAMIC_IMPORT_ALLOWLIST","config","Invalid dynamicImportAllowlist","dynamicImportAllowlist is present but not an array of file globs.","Set dynamicImportAllowlist to an array of project-relative globs (or omit it).",{oftenAdvisory:!0}),I("CONFIG_INVALID_SAFETY","config","Invalid safety object","The safety field is present but not an object.","Use a safety object with optional maxTsSuppressions, maxAnyCasts, allowInMemory, allowDisabledPeerIsolation.",{oftenAdvisory:!0}),I("CONFIG_INVALID_SAFETY_THRESHOLD","config","Invalid safety threshold","A safety threshold (maxTsSuppressions / maxAnyCasts) is not a non-negative integer.","Set each threshold to a non-negative integer.",{oftenAdvisory:!0}),I("CONFIG_NO_LAYERS","config","No layers configured","ark.config.json has no file layers, so import-boundary enforcement cannot classify files.","Declare at least one layer with name + patterns (or run ark start / a preset).",{oftenAdvisory:!0}),I("CONFIG_LAYER_WITHOUT_NAME","config","Layer missing name","A configured layer entry has no name.","Give every layer a unique non-empty name.",{oftenAdvisory:!0}),I("CONFIG_INVALID_FORBIDDEN_GLOBALS","config","Invalid forbiddenGlobals","A layer\u2019s forbiddenGlobals is not an array of strings; the entry is ignored.",'Use an array of strings (e.g. ["fetch", "Date.now"]).',{oftenAdvisory:!0}),I("CONFIG_LAYER_WITHOUT_PATTERNS","config","Layer without patterns","A named layer has no file patterns and will never classify files.","Add patterns globs that match the layer\u2019s source tree.",{oftenAdvisory:!0}),I("CONFIG_INVALID_LAYER_PATTERN","config","Invalid layer pattern","A layer pattern is not a valid glob / failed to compile.","Fix the pattern syntax for that layer.",{oftenAdvisory:!0}),I("CONFIG_LAYER_PATTERN_NO_MATCHES","config","Layer pattern matched no files","A layer pattern matched zero included files (often a typo or include mismatch). Reserved/allowEmpty houses do not emit this.","Adjust the pattern or include roots, or mark the layer reserved/allowEmpty if the glob is a future house.",{oftenAdvisory:!0}),I("CONFIG_DUPLICATE_LAYER","config","Duplicate layer name","The same layer name appears more than once in configuration.","Rename or merge duplicate layer entries.",{oftenAdvisory:!0}),I("CONFIG_RULE_UNKNOWN_FROM_LAYER","config","Rule unknown from layer","A dependency rule references a source layer name that is not declared.","Fix the rule\u2019s from field to a declared layer name.",{oftenAdvisory:!0}),I("CONFIG_RULE_UNKNOWN_TO_LAYER","config","Rule unknown to layer","A dependency rule references a target layer name that is not declared.","Fix the rule\u2019s to field to a declared layer name.",{oftenAdvisory:!0}),I("CONFIG_AMBIGUOUS_LAYERS","config","Ambiguous layer classification","Some files match multiple layers at equal specificity; classification falls back to declaration order.","Disambiguate overlapping patterns so each file has one clear layer owner.",{oftenAdvisory:!0}),I("CONFIG_UNCLASSIFIED_FILES","config","Unclassified included files","Included source files match no layer pattern; import rules will not enforce on them.","Extend layer patterns or narrow include so every governed file is classified.",{oftenAdvisory:!0}),I("CONFIG_LAYER_MISSING_OWNER","config","Layer missing owner","requireLayerOwners is on and this layer has no owners. Writes to that house fail closed, like a folder with no name on the door.","Add a GitHub handle or email to that layer\u2019s owners in ark.config.json (/ark-adopt), then re-run. Reserved/allowEmpty houses may stay unnamed. Turn the flag off only if you no longer want owners required."),I("LITERAL_PATH_DRIFT","drift","Literal path moved by a rename","A repo path written inside a string, a comment or a docstring no longer resolves, and the rename set says where it went. Nothing in the gate sees this class: `tsc` resolves imports, not strings, and ESLint does not either, so the rename compiles green and the reference lies afterwards. It appears in four forms \u2014 the tsconfig alias, a relative literal, a path written without the include-root prefix, and prose \u2014 and a hand sweep reliably covers one of them.","Apply the suggested replacement, or re-run `npx arkgate-check --path-drift --base-ref <ref> --write` to apply every writable anchored replacement at once. The rewrite is mechanical and one-directional: the destination comes from the rename, it must itself resolve and be path-shaped, and the token is rewritten in the form the author wrote it in. A destination that leaves the alias root of the literal is reported with the target only and must be rewritten by hand."),I("LITERAL_PATH_UNRESOLVED","drift","Literal path does not resolve","A literal that looks like a repo path does not resolve under this root, and no rename explains where it went. Unlike LITERAL_PATH_DRIFT this is a candidate, not a verdict: with nothing to anchor it, ArkGate cannot tell a dead reference from an illustrative path in a comment, an example in documentation, or a path belonging to another tree.","Read the candidate and decide: fix the path, or leave it. Advisory only \u2014 it never fails a run and is never rewritten by --write, because there is no destination to propose. Run `--path-drift --all` to list the sweep.",{oftenAdvisory:!0}),I("ARK_UNKNOWN","meta","Unknown diagnostic","A diagnostic lacked a stable ruleId/code; adapters may emit this fallback so agents never see an empty id.","Resolve the underlying finding without weakening ark.config.json, then run Ark again. Prefer fixing the producer to emit a catalogued ruleId.")]),Fo=new Map(vn.map(e=>[e.ruleId,e])),ea=Object.freeze(vn.map(e=>e.ruleId));function ta(e){return typeof e=="string"&&e.length>0&&Fo.has(e)}i(ta,"isKnownDiagnosticCode");function na(e){return typeof e!="string"||e.length===0?!1:Fo.has(e)?!0:e.startsWith("ARKRULE_")}i(na,"isCataloguedOrArkRuleFamily");function Sn(e){if(!(typeof e!="string"||e.length===0))return Fo.get(e)}i(Sn,"getDiagnosticCatalogEntry");function $o(e){return`#${Sn(e)?.docsAnchor??e}`}i($o,"diagnosticDocsFragment");function ra(e){return`${kr}${$o(e)}`}i(ra,"diagnosticDocsPath");function oa(){return{schemaVersion:"1.0",docsPath:kr,codes:vn}}i(oa,"serializeDiagnosticCatalog");function sa(e){return Sn(e)?.fix}i(sa,"catalogFixForRuleId");function ia(e){return Sn(e)?.why}i(ia,"catalogWhyForRuleId");var aa="1.1";var la="1.0";var St=class{static{i(this,"InMemoryReadModelStore")}states=new Map;load(t){return this.states.get(t)}save(t,n){this.states.set(t,n)}clear(t){t?this.states.delete(t):this.states.clear()}};function pd(e){return typeof e.initialState=="function"?e.initialState():e.initialState}i(pd,"initialState");var Ir=class{static{i(this,"ProjectionRegistryImpl")}definitions=new Map;checkpoints=new Map;store;auditTrail;constructor(t={}){this.store=t.store??new St,this.auditTrail=t.auditTrail}register(t){if(this.definitions.has(t.name))throw new Error(`Projection "${t.name}" is already registered.`);this.definitions.set(t.name,t),this.checkpoints.set(t.name,{projection:t.name,appliedCount:0})}list(){return Array.from(this.definitions.values())}async apply(t){let n=[];for(let r of this.definitions.values()){if(!r.sourceIntents.includes(t.intent))continue;let o=await this.store.load(r.name)??pd(r),s=await r.project(t,o);await this.store.save(r.name,s);let a=this.checkpoints.get(r.name);this.checkpoints.set(r.name,{projection:r.name,appliedCount:(a?.appliedCount??0)+1,lastIntent:t.intent,lastCorrelationId:t.metadata.correlationId,updatedAt:new Date().toISOString()}),await this.auditTrail?.record({type:"projection.applied",source:"Kernel.ProjectionRegistry",intent:t.intent,correlationId:t.metadata.correlationId,causationId:t.metadata.causationId,subject:r.name,details:{projection:r.name}}),n.push(r.name)}return n}async getState(t){return this.store.load(t)}getCheckpoint(t){return this.checkpoints.get(t)}getCheckpoints(){return Array.from(this.checkpoints.values())}async clear(){await this.store.clear();for(let t of this.definitions.values())this.checkpoints.set(t.name,{projection:t.name,appliedCount:0})}};function wn(e){return new Ir(e)}i(wn,"createProjectionRegistry");var Cn="1.0";function fd(e){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-|-$/g,"")}i(fd,"policyId");var Mo=class{constructor(t){this.data=t}data;static{i(this,"ArkManifestImpl")}toJSON(){return{...this.data}}};function xn(e={}){let t=e.registry,n=e.policyEngine,r=e.metadata,o=e.graph,s=e.profile,a=e.projections,l=e.eventContracts,c=e.observability,p=t?t.list().map(S=>({name:S.name,dependencies:t.getDependencies(S.name),productions:t.getProductions(S.name)})):[],f=t?t.getAllRelationships():[],y=n?n.getPolicies().map(S=>({id:fd(S.name),name:S.name,severity:S.severity,tags:S.tags?[...S.tags]:void 0,owner:S.owner,version:S.version,rationale:S.rationale,enforcementMode:S.enforcementMode,deprecated:S.deprecated,replacedBy:S.replacedBy,description:S.tags?.includes("layer")?"Enforces clean-architecture layer dependency rules on declared relationships.":void 0})):[],u=r?r.toJSON():[],g=o?o.toJSON():{nodes:[],edges:[]},d=u.filter(S=>(S.emits?.length??0)>0||(S.consumes?.length??0)>0).map(S=>({entity:S.name,emits:S.emits,consumes:S.consumes})),m=a?a.list().map(S=>({name:S.name,sourceIntents:S.sourceIntents,checkpoint:a.getCheckpoint(S.name)})):[],v={schemaVersion:"1.0",version:Bn,exportedAt:new Date().toISOString(),intents:p,relationships:f,policies:y,entities:u,graph:g,architecture:s?{profile:s.name,layers:s.layers,rules:s.rules}:void 0,projections:m,eventContracts:l?.list()??[],observability:c?.report(),links:{entityIntents:d}};return new Mo(v)}i(xn,"createArkManifest");var ca=0;function da(e){return ca+=1,`${e}-${Date.now()}-${ca}`}i(da,"createWorkflowId");function Ko(e){return e instanceof Error?e.message:String(e)}i(Ko,"errorMessage");function gd(e){return new Promise(t=>{setTimeout(t,e)})}i(gd,"sleep");async function md(e,t,n){let r=new AbortController;if(t===void 0)return e(r.signal);let o,s=new Promise((a,l)=>{o=setTimeout(()=>{let c=new Error(`Workflow step "${n}" timed out after ${t}ms.`);r.abort(c),l(c)},t)});try{return await Promise.race([e(r.signal),s])}finally{o&&clearTimeout(o)}}i(md,"withTimeout");var wt=class{static{i(this,"InMemoryWorkflowStore")}snapshots=new Map;save(t,n){let r=this.snapshots.get(t.id);if(r&&r.version!==t.version)throw new Error(`Optimistic concurrency conflict for workflow ${t.id}`);let o=(t.version??0)+1;this.snapshots.set(t.id,{...t,version:o,context:{...t.context}}),t.version=o}get(t,n){let r=this.snapshots.get(t);return r?{...r,context:{...r.context}}:void 0}list(t){return Array.from(this.snapshots.values()).filter(n=>!t||n.workflowName===t).map(n=>({...n,context:{...n.context}}))}claim(t,n,r){let o=Date.now();for(let s of this.snapshots.values()){if(r&&s.workflowName!==r||s.status!=="running"&&s.status!=="compensating")continue;let a=s.expiresAt?new Date(s.expiresAt).getTime()<o:!0;if(!s.ownerId||a){s.ownerId=t,s.expiresAt=new Date(o+n).toISOString();let l=(s.version??0)+1;return s.version=l,this.snapshots.set(s.id,{...s,context:{...s.context}}),{...s,context:{...s.context}}}}}clear(){this.snapshots.clear()}},Ho=class{constructor(t,n={}){this.bus=t;this.options=n;this.store=n.store??new wt}bus;options;static{i(this,"WorkflowEngineImpl")}definitions=new Map;store;register(t){if(this.definitions.has(t.name))throw new Error(`Workflow "${t.name}" is already registered.`);let n=new Set;for(let r of t.steps){if(n.has(r.name))throw new Error(`Workflow "${t.name}" has duplicate step name "${r.name}".`);n.add(r.name)}if(this.definitions.set(t.name,t),t.startOn){let r=t.startOn;this.bus.subscribe(r.intent,async o=>{await this.start(t.name,r.mapEventToPayload(o))})}}async start(t,n,r={}){let o=this.definitions.get(t);if(!o)throw new Error(`Workflow "${t}" is not registered.`);let s=new Date().toISOString(),a={id:r.id??da(t),version:0,workflowName:t,status:"running",context:{...n},completedSteps:[],attempts:{},startedAt:s,updatedAt:s};return await this.store.save(a,r.tx),await this.audit("workflow.started",a,{workflowName:t}),this.executeSnapshot(a,o,r.tx)}async resume(t,n={}){let r=await this.get(t,n.tx);if(!r)return;if(r.status!=="running"&&r.status!=="compensating")return r;let o=this.definitions.get(r.workflowName);if(!o)throw new Error(`Workflow "${r.workflowName}" is not registered.`);return this.executeSnapshot(r,o,n.tx)}async executeSnapshot(t,n,r){try{let o=n.steps.filter(s=>!t.completedSteps.includes(s.name));for(let s of o)await this.runStep(t,s,r);return t.status="completed",t.currentStep=void 0,t.completedAt=new Date().toISOString(),t.updatedAt=t.completedAt,await this.store.save(t,r),await this.audit("workflow.completed",t,{workflowName:t.workflowName}),{...t,context:{...t.context}}}catch(o){throw await this.compensate(t,n.steps,o,r),t.status="failed",t.currentStep=void 0,t.error=Ko(o),t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.failed",t,{workflowName:t.workflowName,error:t.error,failedStep:t.failedStep}),o}}async get(t,n){return this.store.get(t,n)}async list(t){return this.store.list(t)}async runStep(t,n,r){let o=n.retry??this.options.defaultRetry??{attempts:1},s=Math.max(1,o.attempts);t.currentStep=n.name,t.updatedAt=new Date().toISOString(),await this.store.save(t,r);for(let a=1;a<=s;a+=1){t.attempts[n.name]=a,await this.store.save(t,r);let l;try{l=await md(c=>Promise.resolve(n.execute(t.context,this.bus,c)),n.timeoutMs,n.name)}catch(c){if(a<s){o.delayMs&&await gd(o.delayMs);continue}throw t.failedStep=n.name,t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.step.failed",t,{step:n.name,attempt:a,error:Ko(c)}),c}l&&Object.assign(t.context,l),t.completedSteps.push(n.name),t.currentStep=void 0,t.updatedAt=new Date().toISOString(),await this.store.save(t,r),await this.audit("workflow.step.completed",t,{step:n.name,attempt:a});return}throw new Error(`Workflow step "${n.name}" did not complete.`)}async compensate(t,n,r,o){t.status="compensating",t.updatedAt=new Date().toISOString(),await this.store.save(t,o);let s=n.filter(a=>t.completedSteps.includes(a.name));for(let a=s.length-1;a>=0;a-=1){let l=s[a];if(l.compensate)try{await Promise.resolve(l.compensate(t.context,this.bus,r)),await this.audit("workflow.compensation.completed",t,{step:l.name})}catch(c){await this.audit("workflow.step.failed",t,{step:l.name,compensation:!0,error:Ko(c)})}}}async audit(t,n,r){await this.options.auditTrail?.record({type:t,source:"Kernel.WorkflowEngine",subject:n.id,details:r})}};function Ct(e,t){return new Ho(e,t)}i(Ct,"createWorkflowEngine");function Uo(e,t,n={}){let r=Ct(t,n),o={name:e.name,steps:e.steps};r.register(o);let s=n.id??da(e.name),a="idle",l=[];return{id:s,definition:e,get status(){return a},get completedSteps(){return[...l]},async run(c){a="running",l=[];try{let p=await r.start(e.name,c,{id:s});a=p.status==="waiting"?"idle":p.status,l=[...p.completedSteps]}catch(p){let f=await r.get(s);throw a=f?.status==="waiting"?"idle":f?.status??"failed",l=f?.completedSteps??[],p}}}}i(Uo,"createSaga");xt();function fa(e){return Object.keys(e).sort()}i(fa,"sortedKeys");function Wo(e,t,n,r){if(e===t)return;if(e===null||t===null||typeof e!=typeof t){r.push({path:n,left:e,right:t});return}if(typeof e!="object"||typeof t!="object"){e!==t&&r.push({path:n,left:e,right:t});return}if(Array.isArray(e)||Array.isArray(t)){let l=Array.isArray(e)?e:[],c=Array.isArray(t)?t:[],p=Math.max(l.length,c.length);for(let f=0;f<p;f+=1)Wo(l[f],c[f],`${n}[${f}]`,r);return}let o=e,s=t,a=new Set([...fa(o),...fa(s)]);for(let l of[...a].sort())Wo(o[l],s[l],n?`${n}.${l}`:l,r)}i(Wo,"walk");function zo(e){return{schemaVersion:e.schemaVersion,kernelInstanceId:e.kernelInstanceId,components:e.components.map(t=>({id:t.id,lifetime:t.lifetime,uses:[...t.uses],reactsTo:[...t.reactsTo],raises:[...t.raises],sends:[...t.sends],...t.extendedInfo?{extendedInfo:{...t.extendedInfo}}:{}})),...e.decisionTape?{decisionTape:e.decisionTape.map(t=>({xiHash:t.xiHash,event:{kind:t.event.kind,...t.event.payload?{payload:{...t.event.payload}}:{}},residual:{...t.residual}}))}:{}}}i(zo,"shadowInformationPackage");function Er(e,t){let n=[];return Wo(e,t,"",n),{equal:n.length===0,diffs:n}}i(Er,"compareInformationPackages");function qo(e){let t=[];for(let n=1;n<e.length;n+=1)t.push(Er(e[n-1],e[n]));return t}i(qo,"replayInformationPackages");Pr();Kn();Vn();Vn();async function jn(e,t={}){let n=Lt({host:t.host,port:t.port,nodeEnv:t.nodeEnv,processNodeEnv:process.env.NODE_ENV}),{listenArkRunInspector:r}=await Promise.resolve().then(()=>(va(),Ea));return r(e,{bind:n,sseIntervalMs:t.sseIntervalMs})}i(jn,"startArkRunInspector");Pr();Vn();xt();Kn();xt();var Qd=new Set(["singleton","transient"]);function Sa(e){let t={id:e.id,lifetime:e.lifetime,uses:[...e.uses],reactsTo:[...e.reactsTo],raises:[...e.raises],sends:[...e.sends]};if(e.extendedInfo){let n=e.extendedInfo;t.extendedInfo={...n.label?{label:n.label}:{},...n.architectureKind?{architectureKind:n.architectureKind}:{},...n.tags?{tags:[...n.tags]}:{},...n.group?{group:n.group}:{},...n.metadata?{metadata:{...n.metadata}}:{}}}return t}i(Sa,"cloneComponent");function eu(e){if(e===void 0)return"singleton";if(typeof e=="string"&&Qd.has(e))return e;throw new Error('ArkRun component lifetime must be "singleton" or "transient".')}i(eu,"closedLifetime");function wa(){let e=new Map,t=new Map,n=new Set;function r(a){let l=e.get(a);if(!l)throw new Error(`ArkRun component "${a}" is not registered.`);return l}i(r,"mustRecord");function o(a,l){if(!l.factory)throw new Error(`ArkRun component "${a}" has no factory; declarations-only registrations cannot be resolved.`);if(n.has(a))throw new Error(`ArkRun component "${a}" has a circular resolve.`);n.add(a);try{return l.factory()}finally{n.delete(a)}}i(o,"instantiate");function s(a,l){if(t.has(a))return t.get(a);let c=o(a,l);return t.set(a,c),c}return i(s,"singleton"),{register(a){let l=typeof a?.id=="string"?a.id.trim():"";if(!l)throw new Error("ArkRun component id must be a non-empty string.");if(e.has(l))throw new Error(`ArkRun component "${l}" is already registered.`);let c=eu(a.lifetime),p=Vo({id:l,lifetime:c,uses:a.uses,reactsTo:a.reactsTo,raises:a.raises,sends:a.sends,extendedInfo:a.extendedInfo});if(!p)throw new Error("ArkRun component id must be a non-empty string.");let f=typeof a.factory=="function"?a.factory:void 0;return e.set(l,{component:p,factory:f}),Sa(p)},resolve(a){let l=r(a);return l.component.lifetime==="transient"?o(a,l):s(a,l)},resolveSingleton(a){let l=r(a);if(l.component.lifetime==="transient")throw new Error(`ArkRun component "${a}" is transient; resolveSingleton requires lifetime "singleton".`);return s(a,l)},snapshotComponents(){return[...e.values()].map(a=>Sa(a.component))}}}i(wa,"createComponentRegistry");Kn();function tu(e){let t={...e.metadata??{}};if(e.source===void 0)return t;if(t.source&&t.source!==e.source)throw new Ae(e.source,t.source);return t.source=e.source,t}i(tu,"stampMetadata");function nu(){}i(nu,"ignoreDetachedFailure");async function es(e,t,n,r={}){let o=Mn({transport:r.transport,ephemeral:r.ephemeral??e.defaultEphemeral,brokerBound:typeof e.broker?.send=="function"}),s=tu(r),a=await e.eventBus.dispatch(t,n,s,{notifySubscribers:o.notifySubscribers,awaitHandlers:o.awaitHandlers});if(o.deliveredVia==="broker"&&e.broker){let l=Promise.resolve(e.broker.send(a));o.awaitHandoff?await l:l.then(void 0,nu)}return o}i(es,"sendOnArkRunTransport");var Mr=1e3,Ca=0;function ru(){return Ca+=1,`ark-kernel-${Date.now()}-${Ca}`}i(ru,"nextKernelInstanceId");function xa(e,t){let n=e.constructor?.name;return typeof n=="string"&&n.length>0?n:t}i(xa,"portConstructorId");function Mt(e={}){let t=e.strict??!0,n=e.instanceId??ru(),r=e.profile??Ye,o=e.maxHistorySize??Mr,s=Bt(),a=rn(),l=e.metadata??dn(),c=e.auditTrail===void 0,p=e.auditTrail??nn({maxRecords:o}),f=e.eventContracts??en(),y=e.eventBuffer===void 0&&e.outbox===void 0,u=e.eventBuffer??e.outbox??new xe,g=e.projections??wn({auditTrail:p}),d=new we([Yt(r),...e.policies??[]]),m=i(()=>{on(s,a,{requireRegisteredTargets:!0})},"syncGraph"),v=e.ephemeral??!0,S=e.broker,k=new ft({intentRegistry:s,dependencyGraph:a,policyEngine:d,strictRegistry:!0,validateIntentNaming:!0,auditTrail:p,eventContracts:f,strictEventContracts:e.strictEventContracts??t,requireKnownSource:e.requireKnownSource??!0,architectureProfile:r,enforceObservedLayerFlow:e.enforceObservedLayerFlow??(t?"hard":"off"),eventBuffer:u,instanceId:n,maxHistorySize:o,onPublish:e.autoApplyProjections===!1?void 0:async F=>{await g.apply(F)}}),E=Ct(k,{auditTrail:p}),C=tn({registry:s,eventBus:k,graph:a}),N=wa(),b=typeof S?.send=="function",T=y?"InMemoryEventBuffer":xa(u,"EventBufferStore"),Q=c?"InMemoryAuditStore":xa(p,"AuditTrail"),pe=Ft({stores:[Fe(T,"outbox"),Fe(Q,"audit"),Fe("InMemoryWorkflowStore","workflow")]}),it={instanceId:n,profile:r,registry:s,graph:a,metadata:l,auditTrail:p,eventContracts:f,eventBuffer:u,outbox:u,projections:g,policyEngine:d,eventBus:k,workflowEngine:E,observability:C,publisher(F){let ce=k.createPublisher(F);return{source:ce.source,publish:ce.publish,send(Y,at,lt={}){return es({eventBus:k,broker:S,defaultEphemeral:v},Y,at,{...lt,source:ce.source})}}},send(F,ce,Y={}){return es({eventBus:k,broker:S,defaultEphemeral:v},F,ce,Y)},register(F){return N.register(F)},resolve(F){return N.resolve(F)},resolveSingleton(F){return N.resolveSingleton(F)},getDependencyInformationPackage(){return me({kernelInstanceId:n,components:N.snapshotComponents()})},requestGraph(F){return $n({kernelInstanceId:n,components:N.snapshotComponents()},F)},getInspectorSnapshot(F){return Gn({kernelInstanceId:n,host:F?.host,port:F?.port,package:{kernelInstanceId:n,components:N.snapshotComponents()},observability:C.report(),ephemeralDefault:v,brokerBound:b,hardening:pe})},startInspector(F){return jn({getInspectorSnapshot:i(Y=>it.getInspectorSnapshot(Y),"getInspectorSnapshot"),requestGraph:i(Y=>it.requestGraph(Y),"requestGraph"),async listInspectorOutbox(){let[Y,at]=await Promise.all([u.list("pending"),u.list("failed")]);return $e([...Y,...at],{sampleLimit:te})},async listInspectorWorkflows(){return Me(await E.list(),{sampleLimit:te})}},F)},syncGraph:m,manifest(){return m(),xn({registry:s,policyEngine:d,metadata:l,graph:a,profile:r,projections:g,eventContracts:f,observability:C})}};return it}i(Mt,"createArkKernel");function Kr(e={}){return Mt({...e,strict:!0,strictEventContracts:e.strictEventContracts??!0,requireKnownSource:e.requireKnownSource??!0,enforceObservedLayerFlow:e.enforceObservedLayerFlow??"hard"})}i(Kr,"createStrictArkKernel");function ts(e,t={}){let{profileName:n,...r}=t;return{...r,profile:cn(e,{name:n})}}i(ts,"createOptionsFromConfig");function ns(e,t={}){return Mt(ts(e,t))}i(ns,"createArkKernelFromConfig");function rs(e,t={}){return Kr(ts(e,t))}i(rs,"createStrictArkKernelFromConfig");function os(e,t={}){return Hr(ts(e,t))}i(os,"createLenientArkKernelFromConfig");function Hr(e={}){return Mt({...e,strict:!1,strictEventContracts:e.strictEventContracts??!1,enforceObservedLayerFlow:e.enforceObservedLayerFlow??"off"})}i(Hr,"createLenientArkKernel");0&&(module.exports={ANALYSIS_IR_SCHEMA_VERSION,ARK_ANALYSIS_RESULT_SCHEMA,ARK_ANALYSIS_RESULT_SCHEMA_VERSION,ARK_DESIGN_DELTA_SCHEMA_VERSION,ARK_ENFORCEMENT_STATE_SCHEMA_VERSION,ARK_RUN_COMPONENT_LIFETIMES,ARK_RUN_EPHEMERAL_DEFAULT,ARK_RUN_GRAPH_DEFAULT_SLICE,ARK_RUN_GRAPH_NODE_KINDS,ARK_RUN_GRAPH_PROCESS_EDGE_KINDS,ARK_RUN_GRAPH_SCHEMA_VERSION,ARK_RUN_GRAPH_SLICES,ARK_RUN_GRAPH_TECHNICAL_EDGE_KINDS,ARK_RUN_INFORMATION_PACKAGE_SCHEMA_VERSION,ARK_RUN_INSPECTOR_DEFAULT_HOST,ARK_RUN_INSPECTOR_DEFAULT_PORT,ARK_RUN_INSPECTOR_EVENTS_PATH,ARK_RUN_INSPECTOR_GRAPH_PATH,ARK_RUN_INSPECTOR_MONITOR_SAMPLE_LIMIT,ARK_RUN_INSPECTOR_OUTBOX_PATH,ARK_RUN_INSPECTOR_SCHEMA_VERSION,ARK_RUN_INSPECTOR_SNAPSHOT_PATH,ARK_RUN_INSPECTOR_SSE_EVENT,ARK_RUN_INSPECTOR_TRANSPORT_FALLBACK,ARK_RUN_INSPECTOR_WORKFLOWS_PATH,ARK_RUN_TRANSPORT_KINDS,ArkRunInspectorBindError,ArkRunInspectorProductionError,DEFAULT_MAX_HISTORY_SIZE,DIAGNOSTIC_CATALOG,DIAGNOSTIC_CATALOG_SCHEMA_VERSION,DIAGNOSTIC_DOCS_RELATIVE_PATH,DIAGNOSTIC_RULE_IDS,EventContractRegistryImpl,EventContractViolationError,InMemoryAuditStore,InMemoryEventBuffer,InMemoryOutboxStore,InMemoryReadModelStore,InMemoryWorkflowStore,IntentRegistry,InvalidArkRunGraphQueryError,InvalidArkRunSendOptionError,InvalidIntentNameError,LayerPolicyContextError,MANIFEST_SCHEMA_VERSION,ObservedLayerFlowViolationError,POLICY_DELTA_SCHEMA_VERSION,PolicyEngine,PolicyViolationError,RESOLVED_CANDIDATE_FACTS_SCHEMA,RESOLVED_CANDIDATE_FACTS_SCHEMA_VERSION,SourceMetadataOverrideError,UnknownEventSourceError,UnregisteredIntentError,analyzeArchitectureConvergence,analyzeChange,analyzePolicyDelta,analyzeProject,analyzeResolvedProject,appendDecisionTape,architecturalPolicies,arkRunGraphQueryFromSearchParams,arkRunInspectorUrl,buildArkRunInspectorHardening,buildArkRunInspectorOutboxMonitor,buildArkRunInspectorSnapshot,buildArkRunInspectorWorkflowsMonitor,buildDependencyInformationPackage,buildPublishPolicyContext,catalogFixForRuleId,catalogWhyForRuleId,checkAdapterGovernance,checkContract,classifyArkPolicyDelta,classifyArkRunInspectorStoreDurability,closeArkRunGraphQuery,closedArkRunEphemeral,closedArkRunTransportKind,collectAnalysisConfigWarnings,collectForbiddenCapabilityUses,compareInformationPackages,createAICodeGate,createAdapter,createAdapterResult,createArchitectureProfile,createArchitectureProfileFromArkConfig,createArkKernel,createArkKernelFromConfig,createArkManifest,createArkTestHarness,createAuditTrail,createDependencyGraph,createElevenLayerArkConfig,createEventBus,createEventContractRegistry,createIntentRegistry,createLenientArkKernel,createLenientArkKernelFromConfig,createMetadataRegistry,createObservabilityReporter,createProjectionRegistry,createResolvedCandidateFacts,createSaga,createStrictArkKernel,createStrictArkKernelFromConfig,createWorkflowEngine,defaultIntentRegistry,defineArchitectureProfilePolicy,defineIntent,defineLayerPolicy,definePolicy,definePort,definePublishPolicy,detectArchitectureCycles,deterministicHash,diagnosticDocsFragment,diagnosticDocsPath,elevenLayerProfile,evaluateArchitectureGraph,explainViolation,extractSemanticDependencies,formatArkRunGraphMermaid,formatArkRunInspectorSseEvent,getDiagnosticCatalogEntry,isArkRunInspectorLoopbackHost,isArkRunInspectorProductionEnv,isCataloguedOrArkRuleFamily,isKnownDiagnosticCode,isLayerPolicy,loadContract,loadResolvedCandidateFacts,policyDeltaAcknowledgementMatches,preflightChange,preflightResolvedChange,replayInformationPackages,requestArkRunGraph,resolveArkRunInspectorBind,resolveArkRunSendPlan,resolvedFactsEvidenceRequirementsHash,serializeDiagnosticCatalog,shadowInformationPackage,stableSerialize,startArkRunInspector,syncRegistryToGraph,toAdapterDiagnostic,unavailableArkRunInspectorOutboxMonitor,unavailableArkRunInspectorWorkflowsMonitor,validateIntentName,version});
|