@ornexus/neocortex 4.60.22 → 4.60.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sbom.cdx.json +24 -24
- package/install.js +67 -10
- package/install.ps1 +39 -8
- package/install.sh +18 -6
- package/package.json +9 -3
- package/packages/client/dist/adapters/adapter-registry.d.ts +2 -2
- package/packages/client/dist/adapters/adapter-registry.js +1 -1
- package/packages/client/dist/adapters/grok-adapter.d.ts +11 -0
- package/packages/client/dist/adapters/grok-adapter.js +2 -0
- package/packages/client/dist/adapters/index.d.ts +1 -0
- package/packages/client/dist/adapters/index.js +1 -1
- package/packages/client/dist/adapters/platform-detector.d.ts +1 -1
- package/packages/client/dist/adapters/platform-detector.js +1 -1
- package/packages/client/dist/agent/refresh-stubs.js +2 -2
- package/packages/client/dist/cli.js +21 -2
- package/packages/client/dist/commands/invoke.d.ts +39 -26
- package/packages/client/dist/commands/invoke.js +56 -50
- package/packages/client/dist/commands/story-checkpoint.d.ts +15 -0
- package/packages/client/dist/commands/story-checkpoint.js +1 -0
- package/packages/client/dist/config.js +1 -1
- package/packages/client/dist/continuity/invoke-hooks.js +1 -1
- package/packages/client/dist/fs/atomic-state-replace.d.ts +16 -0
- package/packages/client/dist/fs/atomic-state-replace.js +1 -0
- package/packages/client/dist/generated/command-registry.generated.d.ts +51 -51
- package/packages/client/dist/generated/command-registry.generated.js +1 -1
- package/packages/client/dist/git/direct-yolo-checkpoint.d.ts +67 -0
- package/packages/client/dist/git/direct-yolo-checkpoint.js +3 -0
- package/packages/client/dist/git/git-lifecycle-store.d.ts +198 -0
- package/packages/client/dist/git/git-lifecycle-store.js +4 -0
- package/packages/client/dist/git/secure-filesystem-boundary.d.ts +26 -0
- package/packages/client/dist/git/secure-filesystem-boundary.js +123 -0
- package/packages/client/dist/graph-retrieval/pre-command-hook.d.ts +11 -0
- package/packages/client/dist/graph-retrieval/pre-command-hook.js +1 -1
- package/packages/client/dist/graph-retrieval/shared-graph-retrieval-contract.js +1 -1
- package/packages/client/dist/index.d.ts +2 -0
- package/packages/client/dist/index.js +1 -1
- package/packages/client/dist/invocation/invoke-input.d.ts +9 -0
- package/packages/client/dist/invocation/invoke-input.js +1 -0
- package/packages/client/dist/memory/shared-project-memory-types.d.ts +29 -2
- package/packages/client/dist/memory/shared-project-memory-types.js +2 -2
- package/packages/client/dist/migrations/project-identity-capability.d.ts +13 -0
- package/packages/client/dist/migrations/project-identity-capability.js +1 -0
- package/packages/client/dist/migrations/project-identity.d.ts +41 -0
- package/packages/client/dist/migrations/project-identity.js +7 -0
- package/packages/client/dist/policy/subagent-approval-policy.js +1 -1
- package/packages/client/dist/runner/headless/continuous-story-workspace.d.ts +131 -0
- package/packages/client/dist/runner/headless/continuous-story-workspace.js +58 -0
- package/packages/client/dist/runner/headless/epic-git-reconciliation-inventory.d.ts +23 -0
- package/packages/client/dist/runner/headless/epic-git-reconciliation-inventory.js +1 -0
- package/packages/client/dist/runner/headless/epic-merge-candidate-qa.d.ts +15 -0
- package/packages/client/dist/runner/headless/epic-merge-candidate-qa.js +28 -0
- package/packages/client/dist/runner/headless/epic-terminal-git-cli-adapter.d.ts +12 -0
- package/packages/client/dist/runner/headless/epic-terminal-git-cli-adapter.js +8 -0
- package/packages/client/dist/runner/headless/epic-terminal-git-runner.d.ts +134 -0
- package/packages/client/dist/runner/headless/epic-terminal-git-runner.js +2 -0
- package/packages/client/dist/runner/headless/prepared-story-bundle.js +1 -1
- package/packages/client/dist/runner/headless/run-yolo.js +1 -1
- package/packages/client/dist/runner/headless/run-yoloop.d.ts +7 -2
- package/packages/client/dist/runner/headless/run-yoloop.js +8 -1
- package/packages/client/dist/runner/headless/types.d.ts +1 -1
- package/packages/client/dist/runner/headless/types.js +2 -2
- package/packages/client/dist/state/invocation-shape.d.ts +9 -0
- package/packages/client/dist/state/invocation-shape.js +1 -0
- package/packages/client/dist/state/project-state-snapshot.d.ts +9 -3
- package/packages/client/dist/state/project-state-snapshot.js +1 -1
- package/packages/client/dist/state/state-json-repair.d.ts +9 -0
- package/packages/client/dist/state/state-json-repair.js +3 -3
- package/packages/client/dist/state/structural-dag-projection.d.ts +24 -0
- package/packages/client/dist/state/structural-dag-projection.js +1 -0
- package/packages/client/dist/tier/tier-aware-client.js +1 -1
- package/packages/client/dist/yoloop/invoke-hooks.d.ts +13 -10
- package/packages/client/dist/yoloop/invoke-hooks.js +8 -5
- package/packages/client/dist/yoloop/shared-discover-epics.js +1 -1
- package/packages/shared/dist/generated/command-registry.generated.js +64 -65
- package/packages/shared/dist/generated/invocation-schema.generated.js +16 -24
- package/packages/shared/dist/invocation/index.d.ts +6 -2
- package/packages/shared/dist/invocation/index.js +5 -0
- package/packages/shared/dist/invocation/input-envelope.d.ts +37 -0
- package/packages/shared/dist/invocation/input-envelope.js +98 -0
- package/packages/shared/dist/invocation/project-identity-migration.d.ts +28 -0
- package/packages/shared/dist/invocation/project-identity-migration.js +83 -0
- package/packages/shared/dist/invocation/public-diagnostics.d.ts +87 -0
- package/packages/shared/dist/invocation/public-diagnostics.js +181 -0
- package/packages/shared/dist/invocation/state-projection.d.ts +21 -0
- package/packages/shared/dist/invocation/state-projection.js +1 -0
- package/packages/shared/dist/invocation/strict-effect-receipt.d.ts +12 -0
- package/packages/shared/dist/invocation/strict-effect-receipt.js +43 -0
- package/packages/shared/dist/yoloop/epic-terminal-git.js +227 -0
- package/packages/shared/dist/yoloop/planning-graph.js +119 -0
- package/packages/shared/dist/yoloop/public-story-write-set.js +27 -0
- package/packages/shared/dist/yoloop/wave-decision-receipt.js +19 -0
- package/targets-stubs/antigravity/gemini.md +1 -1
- package/targets-stubs/antigravity/neocortex.md +18 -0
- package/targets-stubs/antigravity/skill/SKILL.md +1 -1
- package/targets-stubs/claude-code/neocortex-root.agent.yaml +1 -1
- package/targets-stubs/claude-code/neocortex-root.md +21 -2
- package/targets-stubs/claude-code/neocortex.agent.yaml +1 -1
- package/targets-stubs/claude-code/neocortex.md +2 -2
- package/targets-stubs/codex/AGENTS.md +20 -1
- package/targets-stubs/cursor/agent.md +20 -2
- package/targets-stubs/gemini-cli/agent.md +2 -2
- package/targets-stubs/gemini-cli/gemini.md +18 -0
- package/targets-stubs/grok/README.md +13 -0
- package/targets-stubs/grok/SKILL.md +50 -0
- package/targets-stubs/grok/config-mcp.toml +22 -0
- package/targets-stubs/grok/install-grok.sh +31 -0
- package/targets-stubs/kimi/neocortex.md +18 -0
- package/targets-stubs/openclaw/SKILL.md +18 -0
- package/targets-stubs/opencode/neocortex-root.md +20 -1
- package/targets-stubs/vscode/neocortex.agent.md +20 -2
|
@@ -1,60 +1,64 @@
|
|
|
1
|
-
import{createHash as
|
|
2
|
-
`,{encoding:"utf8",mode:384,flag:"wx"}),
|
|
1
|
+
import{createHash as we,randomUUID as Ge}from"node:crypto";import{execFileSync as Oe}from"node:child_process";import{existsSync as Te,readFileSync as ye,renameSync as An,unlinkSync as Rn,writeFileSync as mt,mkdirSync as It,statSync as wn}from"node:fs";import{join as Z}from"node:path";import{homedir as Ne}from"node:os";import{LicenseClient as Tn}from"../license/license-client.js";import{EncryptedCache as Je}from"../cache/encrypted-cache.js";import{NoOpCache as yt}from"../types/index.js";import{resolveClientPreFlightTrigger as _t,TierAwareClient as bn}from"../tier/tier-aware-client.js";import{COMMAND_REGISTRY_CHECKSUM as ge,COMMAND_REGISTRY_VERSION as he,GENERATED_CLIENT_COMMANDS as vn}from"../generated/command-registry.generated.js";import{loadSecureConfig as Et}from"../config/secure-config.js";import{DEFAULT_SERVER_URL as On}from"../constants.js";import{detectFirstRunLocale as Nn,renderFirstRunMessage as kn}from"../i18n/first-run.js";import{humanizeError as Ct,formatHumanizedError as St,detectErrorLocale as At}from"../errors/error-messages.js";import{degradeStateSnapshotForPayloadLimit as Ln,projectStateSnapshotForInvoke as Rt,projectStateSnapshotResultV2ForInvoke as xn}from"../state/project-state-snapshot.js";import{isInlineYoloMaterialization as Dn,maybeRepairStateJsonBeforeInvoke as Pn,StateRepairHardStopError as jn}from"../state/state-json-repair.js";import{StructuralDagError as wt}from"../state/structural-dag-projection.js";import{RUNNER_BOOTSTRAP_POLICY_REASON_CODES as Mn,classifyRunnerBootstrapPolicyFromArgs as Un}from"../continuity/runner-bootstrap-policy.js";import{RUNNER_SCHEDULER_BOOTSTRAP_REASON_CODES as Vn,ensureRunnerSchedulerBootstrap as Bn}from"../runner/scheduler.js";import{CONTINUITY_INVOKE_WATCH_DEFAULT_LIMIT as Tt,CONTINUITY_INVOKE_WATCH_DEFAULT_MAX_IDLE_POLLS as bt,CONTINUITY_INVOKE_WATCH_DEFAULT_MAX_POLLS as vt,CONTINUITY_INVOKE_WATCH_DEFAULT_POLL_INTERVAL_MS as Ot,openContinuityClientStateStore as $n}from"../continuity/continuity-client-state-store.js";import{isLocalJobsConsoleArgs as Wn,runLocalJobsConsoleCommand as Hn}from"../runner/local-console.js";import{detectPlatform as Fn}from"../adapters/platform-detector.js";import{signNxInvokeRequest as Gn}from"../../../shared/dist/nx-invoke-signature.js";import{CLIENT_VERSION as _e}from"../version.js";import{createCapabilityCache as Nt,executeInvokeQueryTransport as kt,executeSecondaryNetworkMutation as Jn}from"../effects/invoke-effect-gateways.js";import{STRICT_READ_ONLY_POLICY as zn,STRICT_READ_ONLY_CLIENT_PROJECTION as Lt,STRICT_READ_ONLY_SERVER_PROJECTION as Yn,StrictReadOnlyError as Ee,canonicalizeInvokeEffects as Kn,createInvokeEffectContext as qn,verifyStrictReadOnlyReceipt as Xn}from"../../../shared/dist/strict-readonly.js";import{admitInvocation as Qn,assertInvokeInputEnvelopeV2 as Zn,assertProjectIdentityMigrationReceiptV1 as er,buildProjectIdentityPublicDiagnostic as Ce,createInvocationAdmissionReceipt as tr,projectInvokeInputEvidenceV1 as nr,verifyStrictDiagnoseReceiptV1 as rr}from"../../../shared/dist/invocation/index.js";import{buildInvokeInputEnvelope as ze,InvokeInputDecodeError as or}from"../invocation/invoke-input.js";import{acknowledgeProjectIdentityMigration as ir,finalizeProjectIdentityMigration as sr,prepareProjectIdentityMigration as ar,ProjectIdentityMigrationError as Ye,readProjectIdentityMigrationPhase as cr}from"../migrations/project-identity.js";import{probeProjectIdentityMigrationCapability as dr}from"../migrations/project-identity-capability.js";import{normalizeYoloopStoryPlanningEvidence as ur}from"../../../shared/dist/yoloop/planning-graph.js";import{normalizeContinuousWriteRef as ke}from"../../../shared/dist/yoloop/wave-decision-receipt.js";import{applyGitLifecycleRuntimeOverlay as xt,executeP205TransientAuthority as lr,P205_COMPLETE_COMMAND as pr,gitLifecycleStoryWriteSet as Dt,readGitLifecycleRuntimeSync as Ke,verifyAcceptedGitLifecycleStoryCheckpointSync as fr,verifyLegacyCheckpointMigrationCandidateSync as gr}from"../git/git-lifecycle-store.js";const Le=Z(Ne(),".neocortex"),qe=Z(Le,"cache"),Pt=Z(qe,"menu-cache.json"),jt=1440*60*1e3,Mt=3e4,Ut=256*1024,Vt=Ut,Bt=.8,ce="[REDACTED]",hr=1e5,me=2e3,mr=200,Ir=200,yr=12,_r=/(?:promptBody|workflow|workflowGraph|stepBody|privateUrl|rawLog|secret|credential|licenseKey|apiKey|internalRouting|serverOnly|proprietary|protected)/i,Er=/(?:PRIVATE|PROTECTED|SERVER_ONLY)[-_\s]*(?:PROMPT|PROMPT_BODY|WORKFLOW|WORKFLOW_GRAPH|STEP_BODY|STEP|ROUTING)\s*[:=][^\n\r]*/gi,Cr=/(?:https?:\/\/(?:localhost|127\.0\.0\.1|0\.0\.0\.0|\[::1\]|private|internal)[^\s"'<>]*|raw[_-]?log|transcript|stack\s*trace|stderr:|stdout:|system prompt|prompt body|workflow body|step body|PROTECTED_|PRIVATE_INTERNALS|CUSTOMER_PII|VENDOR_CORPUS|P180[_-]?SYNTHETIC[_-]?CONTINUITY|P185[_-]?SYNTHETIC[_-]?CONTINUITY|P187[_-]?SYNTHETIC[_-]?(?:CONTINUITY|RUNNER|WATCH)|authorization\s*:|password\s*=|token\s*=|api[_-]?key\s*=|license[_-]?key\s*=)/gi,Xe=Math.floor(Ut*Bt),$t=Z(Le,".first-run-shown"),Sr="pending-epic-claims.json",Wt=64;function Ht(e){return Z(e,".neocortex",Sr)}function xe(e){const t=Ht(e);if(!Te(t))return{schemaVersion:1,operations:{}};const n=JSON.parse(ye(t,"utf8"));if(!n||typeof n!="object"||Array.isArray(n))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");const r=n;if(r.schemaVersion!==1||!r.operations||typeof r.operations!="object"||Array.isArray(r.operations))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");if(Object.keys(r.operations).length>Wt)throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");for(const[o,i]of Object.entries(r.operations)){if(!/^[a-f0-9]{64}$/.test(o)||!i||typeof i!="object"||Array.isArray(i))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");const s=i;if(typeof s.idempotencyKey!="string"||!/^[0-9a-f-]{36}$/.test(s.idempotencyKey)||typeof s.createdAt!="string")throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");if(s.claimId!==void 0&&(typeof s.claimId!="string"||!/^[0-9a-f-]{36}$/.test(s.claimId))||s.epicId!==void 0&&(typeof s.epicId!="string"||!/^P[1-9][0-9]*$/.test(s.epicId))||s.claimId===void 0!=(s.epicId===void 0))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE")}return n}function Qe(e,t){const n=Ht(e);It(Z(e,".neocortex"),{recursive:!0,mode:448});const r=`${n}.${process.pid}.${Ge()}.tmp`;mt(r,`${JSON.stringify(t)}
|
|
2
|
+
`,{encoding:"utf8",mode:384,flag:"wx"}),An(r,n)}function Ar(e){return we("sha256").update(`nx-epic-logical-operation-v1\0${JSON.stringify({command:"create-epic",args:e})}`,"utf8").digest("hex")}function Rr(e,t){const n=Ar(t),r=xe(e),o=r.operations[n];if(o)return{key:o.idempotencyKey,fingerprint:n};if(Object.keys(r.operations).length>=Wt)throw new Error("EPIC_CLAIM_CAPACITY_EXCEEDED");const i=Ge(),s={...r.operations,[n]:{idempotencyKey:i,createdAt:new Date().toISOString()}};return Qe(e,{schemaVersion:1,operations:s}),{key:i,fingerprint:n}}function wr(e,t){const n=xe(e);if(!n.operations[t])return;const r={...n.operations};delete r[t],Qe(e,{schemaVersion:1,operations:r})}function Tr(e,t,n,r){if(!/^[0-9a-f-]{36}$/.test(n)||!/^P[1-9][0-9]*$/.test(r))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");const o=xe(e),i=o.operations[t];if(!i)throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");Qe(e,{schemaVersion:1,operations:{...o.operations,[t]:{...i,claimId:n,epicId:r}}})}function br(){try{if(Te($t))return;const e=Nn(),t=kn(e);process.stderr.write(t);try{It(Le,{recursive:!0}),mt($t,new Date().toISOString(),"utf-8")}catch{}}catch{}}function Ze(e,t=process.cwd()){return e&&e.trim().length>0?e:t}function vr(e){return Qn(e,{registryVersion:he,registryChecksum:ge})}const Or=new Set(["completed","aborted","cancelled"]),Nr=new Set(["watch-target-missing","watch-target-malformed","watch-target-ambiguous","watch-target-multiple"]),U=Object.freeze({COMPLETED:"invoke-watch-completed",CANCELLED:"invoke-watch-cancelled",IDLE_TIMEOUT:"invoke-watch-idle-timeout",MAX_POLLS:"invoke-watch-max-polls",STORE_UNAVAILABLE:"invoke-watch-store-unavailable",TARGET_UNRESOLVED:"invoke-watch-target-unresolved"}),$=Object.freeze({MISSING:"watch-target-missing",MALFORMED:"watch-target-malformed",AMBIGUOUS:"watch-target-ambiguous",CONFLICT:"watch-target-conflicting-evidence",SERVER_HELD_STREAM:"watch-target-server-held-stream-unsupported"}),O=Object.freeze({OK:"continuity-ok",WATCH_NO_SUMMARIES_YET:"watch-no-summaries-yet",WATCH_CURSOR_ADVANCED:"watch-cursor-advanced",WATCH_CURSOR_UNCHANGED:"watch-cursor-unchanged",WATCH_RENDER_PENDING:"watch-render-pending",WATCH_STOP_IDLE_LIMIT_REACHED:"watch-stop-idle-limit-reached",WATCH_STOP_MAX_POLLS_REACHED:"watch-stop-max-polls-reached",WATCH_TARGET_UNRESOLVED:"watch-target-unresolved",WATCH_SNAPSHOT_UNAVAILABLE:"watch-snapshot-unavailable",WATCH_EVIDENCE_UNAVAILABLE:"watch-evidence-unavailable"}),Ft=240,kr=/(https?:\/\/\S+|ghp_[A-Za-z0-9_]+|sk-[A-Za-z0-9_-]+|-----BEGIN [A-Z ]*PRIVATE KEY-----|authorization\s*:|password\s*=|token\s*=|api[_-]?key\s*=|license[_-]?key\s*=|raw[_-]?log|transcript|stack\s*trace|stderr:|stdout:|system prompt|prompt body|workflow body|step body|PROTECTED_|PRIVATE_INTERNALS|CUSTOMER_PII|VENDOR_CORPUS|P180[_-]?SYNTHETIC[_-]?CONTINUITY|P185[_-]?SYNTHETIC[_-]?CONTINUITY|P187[_-]?SYNTHETIC[_-]?(?:CONTINUITY|RUNNER|WATCH))/i;function Lr(e){return e.replace(/[\w.+-]+@[\w-]+\.[\w.-]+/g,ce).replace(/(?:sk|pk|whsec|nxk)[-_](?:test|live|ant|proj|pro|free|enterprise)?[-_]?[A-Za-z0-9_-]{16,}/g,ce).replace(/NX-[FPE]-[a-f0-9]{24}-[a-f0-9]{4}/g,ce).replace(/eyJ[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+/g,ce).replace(Er,ce).replace(Cr,ce)}function q(e,t){const n=Lr(e);return n.length<=t?n:`${n.slice(0,t)}\u2026[TRUNCATED:${n.length-t}]`}function et(e,t=0,n=new WeakSet){if(t>yr)return"[MAX_DEPTH]";if(e==null)return e;if(typeof e=="string")return q(e,me);if(typeof e=="number")return Number.isFinite(e)?e:null;if(typeof e=="boolean")return e;if(typeof e=="bigint")return String(e);if(!(typeof e=="function"||typeof e=="symbol")&&typeof e=="object"){if(n.has(e))return"[CIRCULAR]";n.add(e);try{if(Array.isArray(e))return e.slice(0,mr).map(o=>et(o,t+1,n));const r={};for(const[o,i]of Object.entries(e).slice(0,Ir)){if(_r.test(o)){r[o]=ce;continue}const s=et(i,t+1,n);s!==void 0&&(r[o]=s)}return r}finally{n.delete(e)}}}function tt(e,t){return{instructions:q(e??"",hr),metadata:t?et(t):void 0}}class De extends Error{reason;source;byteLength;code;constructor(t,n,r,o,i){super(n),this.reason=r,this.source=o,this.byteLength=i,this.name="InvokeCliInputError",this.code=t}}function xr(e){return/^\s*\*?(?:arch-plan|ui-ux-review)(?:\s|$)/i.test(e)&&Dr(e,"--project-evidence")}function Dr(e,t){let n=null,r=-1,o=!1,i=!1;for(let s=0;s<=e.length;s+=1){const c=e[s];if(s===e.length||!n&&/\s/.test(c??"")){if(r>=0&&!o&&e.slice(r,s)===t)return!0;r=-1,o=!1,i=!1;continue}if(r<0&&(r=s),i){i=!1;continue}if(c==="\\"){i=!0;continue}(c==='"'||c==="'")&&(o=!0,n=n===c?null:n??c)}return!1}class nt extends Error{code="PAYLOAD_TOO_LARGE";telemetry;constructor(t){super(`PAYLOAD_TOO_LARGE: invoke request is ${t.payloadBytes} bytes after deterministic degradation; limit is ${t.limitBytes}. Reduce command input or local state context and retry.`),this.name="InvokePayloadTooLargeError",this.telemetry=t}}class rt extends Error{code="STRUCTURAL_CONTEXT_TOO_LARGE";telemetry;constructor(t){super(`STRUCTURAL_CONTEXT_TOO_LARGE: the bounded structural projection is ${t.payloadBytes} bytes; the request limit is strictly below ${t.limitBytes}. Select an explicit epic/story target or split the dependency graph.`),this.name="InvokeStructuralContextTooLargeError",this.telemetry=t}}let ot=!1;function Pr(e){const t=[];if(!e||typeof e!="object")return t;const n=e,r=n.planning;if(r&&(r.current!==void 0||Array.isArray(r.history))&&t.push({code:"PLANNING_LEGACY",message:"legacy `planning.current`/`planning.history` detected (not read by v1 orchestrator)"}),Array.isArray(n.stories)&&t.push({code:"STORIES_AS_ARRAY",message:"`stories` is an Array (expected Object keyed by story ID)"}),n.epics&&typeof n.epics=="object"&&!Array.isArray(n.epics))for(const[i,s]of Object.entries(n.epics)){const c=s;if(c&&c.stories!==void 0&&!Array.isArray(c.stories)){t.push({code:"EPIC_STORIES_NOT_ARRAY",message:`epic "${i}" has non-array \`stories\` field (expected string[] of story IDs)`});break}}const o=n.epics&&typeof n.epics=="object"&&Object.keys(n.epics).length>0||n.stories&&typeof n.stories=="object"&&!Array.isArray(n.stories)&&Object.keys(n.stories).length>0||Array.isArray(n.stories)||r&&r.current!==void 0;return n.schema_version===void 0?o&&t.push({code:"SCHEMA_VERSION_MISSING",message:"`schema_version` field missing (expected: `schema_version: 1`)"}):n.schema_version!==1&&t.push({code:"SCHEMA_VERSION_OUTDATED",message:`schema_version=${String(n.schema_version)} (expected: 1)`}),t}function jr(e){if(!(ot||e.length===0)){ot=!0;try{const t=e.map(n=>` - ${n.message}`).join(`
|
|
3
3
|
`);process.stderr.write(`[Neocortex] state.json schema drift detected:
|
|
4
4
|
${t}
|
|
5
5
|
Run \`neocortex *migrate-state --preview\` to inspect or \`neocortex *migrate-state --apply\` to migrate.
|
|
6
6
|
See docs/arquitetura-software/STATE-JSON-SCHEMA.md for the schema contract.
|
|
7
|
-
`)}catch{}}}function Po(){xe=!1}function It(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&t.length>0):[]}function Hr(e){return e==="active"||e==="archived"||e==="rolled-back"||e==="synthetic"||e==="orphan"?e:void 0}function ce(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&t.length>0):[]}function _(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}function re(e){return typeof e=="number"&&Number.isFinite(e)&&e>0?e:void 0}function w(e){if(typeof e!="string")return;const t=e.trim();if(t)return t.replace(/[^a-z0-9_.:-]+/gi,"_").slice(0,120)}function ne(e){if(typeof e!="string")return;const t=e.trim(),r=w(e);return r===t?r:void 0}function de(e){if(typeof e!="string")return;const t=e.trim();if(!(!t||t.length>240)&&/^[A-Za-z0-9][A-Za-z0-9._/-]*$/.test(t)&&!(t.includes("..")||t.includes("//")||t.includes("@{")||t.endsWith("/")||t.endsWith("."))&&!t.split("/").some(r=>!r||r.startsWith(".")||r.endsWith(".lock")))return t}function Pe(e){return typeof e=="string"&&/^[0-9a-f]{7,64}$/i.test(e)?e:void 0}function je(e){if(!(typeof e!="string"||e.length>64)&&/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d{1,9})?(?:Z|[+-]\d{2}:\d{2})$/.test(e))return Number.isFinite(Date.parse(e))?e:void 0}function _t(e){if(typeof e!="string")return;const t=e.trim();if(!(!t||t.length>240||t.includes("..")))return/^[A-Za-z0-9._:/#\-[\]]+$/.test(t)?t:void 0}function he(e,t){if(!_(e))return;const r={};for(const n of t){const o=e[n];if(typeof o=="boolean")r[n]=o;else if(typeof o=="number"&&Number.isFinite(o))r[n]=o;else if(typeof o=="string"){const s=w(o);s&&(r[n]=s)}}return Object.keys(r).length>0?r:void 0}function Ie(e){return e==="epic"||e==="story"?e:void 0}function Et(e){if(!_(e)||e.schemaVersion!==1)return;const t=ne(e.ownerStoryId),r=ne(e.sessionId),n=ne(e.idempotencyKey),o=je(e.acquiredAt),s=je(e.expiresAt);if(!(!t||!r||!n||!o||!s||Date.parse(s)<=Date.parse(o)))return{schemaVersion:1,ownerStoryId:t,sessionId:r,idempotencyKey:n,acquiredAt:o,expiresAt:s}}function yt(e){if(!_(e)||e.schemaVersion!==1)return;const t=ne(e.storyId),r=ne(e.epicId),n=de(e.branch),o=Pe(e.baseSha),s=Pe(e.headSha),i=ne(e.idempotencyKey),c=je(e.recordedAt),l=ce(e.commits).map(Pe).filter(f=>!!f).slice(0,256),p=ce(e.receiptRefs).map(_t).filter(f=>!!f).slice(0,256);if(!(!t||!r||!t.startsWith(`${r}.`)||!n||!o||!s||o===s||!i||!c||l.length===0||p.length===0||!Array.isArray(e.commits)||l.length!==e.commits.length||e.commits.length>256||!Array.isArray(e.receiptRefs)||p.length!==e.receiptRefs.length||e.receiptRefs.length>256||e.qaVerdict!=="passed"&&e.qaVerdict!=="blocked"||!["approved","changes-requested","pending"].includes(String(e.reviewVerdict))))return{schemaVersion:1,storyId:t,epicId:r,branch:n,baseSha:o,headSha:s,idempotencyKey:i,qaVerdict:e.qaVerdict,reviewVerdict:e.reviewVerdict,recordedAt:c,commits:l,receiptRefs:p}}function _e(e){if(!_(e)||e.schemaVersion!==1)return;const t=he(e,["schemaVersion","kind","storyId","epicId","baseSha","headSha","originalBaseSha","originalHeadSha","gitPullRequest","preservesLaterCommits","historyRewrite","recordedAt"])??{},r=ce(e.receiptRefs).map(_t).filter(o=>!!o).slice(0,256),n=ce(e.revertCommits).map(w).filter(o=>!!o).slice(0,256);return{...t,...r.length?{receiptRefs:r}:{},...n.length?{revertCommits:n}:{}}}function Gr(e){if(!_(e))return;const t={...w(e.active_epic_id??e.activeEpicId)?{active_epic_id:w(e.active_epic_id??e.activeEpicId)}:{},...w(e.active_story_id??e.activeStoryId)?{active_story_id:w(e.active_story_id??e.activeStoryId)}:{},...w(e.active_step_id??e.activeStepId)?{active_step_id:w(e.active_step_id??e.activeStepId)}:{},...w(e.session_id??e.sessionId)?{session_id:w(e.session_id??e.sessionId)}:{},...w(e.started_at??e.startedAt)?{started_at:w(e.started_at??e.startedAt)}:{}};return Object.keys(t).length>0?t:void 0}function Jr(e){const t=he(e.completionEvidence??e.completion_evidence,["prNumber","pr_number","prState","pr_state","pullRequestState","merged","mergedAt","issueNumber","issue_number","issueState","issue_state","closedAt"]),r=he(e.issueCloseAudit??e.issue_close_audit,["schema_version","event","storyId","epicId","issueNumber","closedAt","publicSafe","rawLogStorage"]),n=he(e.scopedCiEvidence??e.scoped_ci_evidence,["schema_version","storyId","epicId","prNumber","finalState","publicSafe","rawLogStorage"]);return{...typeof e.merged=="boolean"?{merged:e.merged}:{},...typeof e.safeToContinueYoloop=="boolean"?{safeToContinueYoloop:e.safeToContinueYoloop}:{},...typeof e.mergeBlockedRemotely=="boolean"?{mergeBlockedRemotely:e.mergeBlockedRemotely}:{},...w(e.physicalMergeStatus)?{physicalMergeStatus:w(e.physicalMergeStatus)}:{},...w(e.pr_state??e.prState??e.pull_request_state??e.pullRequestState)?{pr_state:w(e.pr_state??e.prState??e.pull_request_state??e.pullRequestState)}:{},...w(e.issue_state??e.issueState??e.workflow_issue_state)?{issue_state:w(e.issue_state??e.issueState??e.workflow_issue_state)}:{},...re(e.issue_number??e.issueNumber)?{issue_number:re(e.issue_number??e.issueNumber)}:{},...t?{completionEvidence:t}:{},...r?{issueCloseAudit:r}:{},...n?{scopedCiEvidence:n}:{}}}function Kr(e){const t=M(e,".neocortex","state.json");if(!X(t))return{config:{project_name:"unknown",default_branch:"main",language:"pt-BR"},stories:{},epics:{}};let r;try{const m=ae(t,"utf-8");r=JSON.parse(m)}catch{return{config:{project_name:"unknown",default_branch:"main",language:"pt-BR"},stories:{},epics:{}}}try{const m=Br(r);m.length>0&&Fr(m)}catch{}const n=r.config??r.project??{},o=r.stories??{},s={};for(const[m,d]of Object.entries(o))s[m]={id:d.id??m,title:d.title,epic_id:d.epic_id,status:d.status??"backlog",steps_completed:d.steps_completed??[],last_step:d.last_step??null,branch_name:d.branch_name??null,pr_number:d.pr_number,...Ie(d.branch_mode)?{branch_mode:Ie(d.branch_mode)}:{},...yt(d.checkpoint)?{checkpoint:yt(d.checkpoint)}:{},..._e(d.review_request)?{review_request:_e(d.review_request)}:{},..._e(d.rollback_receipt)?{rollback_receipt:_e(d.rollback_receipt)}:{},...re(d.workflow_issue)?{workflow_issue:re(d.workflow_issue)}:{},...Jr(d),depends_on:It(d.depends_on),files_to_modify:ce(d.files_to_modify),risk:typeof d.risk=="string"?d.risk:void 0,blast_radius:typeof d.blast_radius=="number"?d.blast_radius:void 0};const i=r.epics??{},c={};for(const[m,d]of Object.entries(i)){const S=Hr(d.lifecycle_classification);c[m]={id:d.id??m,title:d.title,status:d.status,stories:d.stories,total_stories:d.total_stories,completed_stories:d.completed_stories,depends_on:It(d.depends_on),...Ie(d.branch_mode)?{branch_mode:Ie(d.branch_mode)}:{},...de(d.execution_branch)?{execution_branch:de(d.execution_branch)}:{},...de(d.origin_branch)?{origin_branch:de(d.origin_branch)}:{},...Et(d.branch_lease)?{branch_lease:Et(d.branch_lease)}:{},...re(d.pr_number)?{pr_number:re(d.pr_number)}:{},...w(d.physicalMergeStatus)?{physicalMergeStatus:w(d.physicalMergeStatus)}:{},...S?{lifecycle_classification:S}:{}}}const l=Gr(r.current_session??r.currentSession),p=r.epic_id_ledger,f=Array.isArray(p?.reserved_ids)?[...new Set(p.reserved_ids.filter(m=>typeof m=="string"&&/^P\d+$/.test(m)))].slice(0,2048):[];return{schema_version:typeof r.schema_version=="number"?r.schema_version:void 0,config:{project_name:n.project_name??n.name??"unknown",default_branch:n.default_branch??"main",language:n.language??"pt-BR",yolo_mode:n.yolo_mode,user_name:n.user_name,worktree_base:n.worktree_base,max_parallel_stories:n.max_parallel_stories,project_id:typeof n.project_id=="string"?n.project_id:void 0},stories:s,epics:c,...f.length>0?{epic_id_ledger:{schema_version:1,reserved_ids:f}}:{},...l?{current_session:l}:{}}}function jo(e,t){return{kind:"full",trigger:e,targetEpicId:null,targetStoryId:null,includedStoryCount:Object.keys(t.stories).length,includedEpicCount:Object.keys(t.epics).length,omittedStoryCount:0,omittedEpicCount:0,reason:"full-state",projectionMode:"full-compatible"}}const Ct="neocortex:menu:cache";async function Yr(e){try{const t=await e.get(Ct);if(!t)return null;const r=JSON.parse(t);return r.version!==ee||Date.now()-r.cachedAt>it?null:r}catch{return null}}async function zr(e,t,r){try{const n={instructions:t,metadata:r,cachedAt:Date.now(),version:ee};await e.set(Ct,JSON.stringify(n),it),qr()}catch{}}function qr(){try{X(at)&&Bt(at)}catch{}}function Xr(e){return e.execute({phase:"client-preflight",domain:"client-persistence",category:"state-repair",operation:"update"},()=>qe(),()=>qe({strictReadOnly:!0}))}async function Qr(e,t,r){try{let n;const o=r.mode==="strict";if(o&&t)n=new Te({cacheDir:be,passphrase:t,strictReadOnly:!0});else if(o)n=new Ye;else if(t){const f=M(fe,"cache");n=new Te({cacheDir:f,passphrase:t})}else process.stderr.write(`[neocortex] Warning: No license key in config. Run "neocortex activate" to re-authenticate.
|
|
8
|
-
`)
|
|
9
|
-
`),t}function
|
|
10
|
-
`)}
|
|
11
|
-
`);return}r.write(
|
|
12
|
-
`)
|
|
13
|
-
`);return}r.write(
|
|
14
|
-
`)}function Ve(e){return Dr.has(e.status)}function Cn(e,t,r){if(t){const o=e.find(s=>s.jobId===t);return!!(o&&Ve(o))}return r<=0?!1:e.filter(o=>!Ve(o)).length===0}function Sn(e,t,r,n){return r<n?!1:t?!e.some(o=>o.jobId===t&&!Ve(o)):e.length===0}function An(e,t){return t?.aborted?Promise.resolve():new Promise(r=>{const n=setTimeout(o,e);function o(){clearTimeout(n),t?.removeEventListener("abort",o),r()}t?.addEventListener("abort",o,{once:!0})})}function Rn(e){return e.includes(k.MALFORMED)?"malformed":e.includes(k.AMBIGUOUS)?"ambiguous":e.includes("watch-target-multiple")?"multiple":e.includes("watch-evidence-unsafe")?"unsafe":e.includes(k.MISSING)||e.includes(O.TARGET_UNRESOLVED)?"unresolved":"unavailable"}function Nt(e,t){const r=t?ue(t):void 0,n=P([...e,O.TARGET_UNRESOLVED,y.WATCH_TARGET_UNRESOLVED]),o=$e(r,r?.targetId,Rn(n),n),s=F({generatedAt:new Date().toISOString()},[],!1,0,[y.WATCH_TARGET_UNRESOLVED]),i=$(void 0,void 0,void 0,[],[y.WATCH_TARGET_UNRESOLVED],"unavailable");return V({watchStatus:"blocked",active:!1,targetEvidence:o,snapshotEvidence:s,cursorEvidence:i,stopReason:"target_unresolved",reasonCodes:n,generatedAt:s.generatedAt})}function wn(e,t,r,n){const o=Nt(e,kt(t));return W(o,r,n),H("target-unresolved",0,0,o)}async function Tn(e){if(e.signal?.aborted){const v=$e(e.target??ue(e.targetJobId),e.targetJobId,e.target??e.targetJobId?"resolved":"unresolved",[O.CANCELLED]),E=F(void 0,[],!1,0),R=$(e.initialCursor,e.initialCursor,e.initialCursor,[],[O.CANCELLED],"unavailable"),Y=V({watchStatus:"stopped",active:!1,targetEvidence:v,snapshotEvidence:E,cursorEvidence:R,stopReason:"cancelled",reasonCodes:[O.CANCELLED]});return H("cancelled",0,0,Y)}const t=e.target??ue(e.targetJobId),r=e.targetJobId??t?.targetId,n=e.stdout??process.stdout;if(!t){const v=Nt([k.MISSING,O.TARGET_UNRESOLVED]);return W(v,e.format,n),H("target-unresolved",0,0,v)}const o=ye(e.limit??Ce("NEOCORTEX_INVOKE_WATCH_LIMIT",et),et,50),s=Math.max(50,ye(e.pollIntervalMs??Ce("NEOCORTEX_INVOKE_WATCH_POLL_INTERVAL_MS",nt),nt,6e4)),i=ye(e.maxIdlePolls??Ce("NEOCORTEX_INVOKE_WATCH_MAX_IDLE_POLLS",tt),tt,120),c=ye(e.maxPolls??Ce("NEOCORTEX_INVOKE_WATCH_MAX_POLLS",rt),rt,86400),l=e.sleep??An;let p=e.initialCursor,f=0,m=0,d=0;const S=$e(t,r,"resolved",[y.OK]),g={schemaVersion:1,contractVersion:"continuity-v1",snapshotStatus:"pending",renderedSummaryCount:0,reasonCodes:[y.WATCH_RENDER_PENDING],publicSafe:!0},h=$(e.initialCursor,p,p,[],e.initialCursor?[y.WATCH_CURSOR_UNCHANGED]:[y.WATCH_NO_SUMMARIES_YET],e.initialCursor?"unchanged":"not_started");W(V({watchStatus:"active",active:!0,targetEvidence:S,snapshotEvidence:g,cursorEvidence:h,stopReason:"not_stopped",reasonCodes:[y.OK]}),e.format,n);let A;try{A=await sr({projectRoot:e.projectRoot,strictReadOnly:e.strictReadOnly})}catch{const v=F(void 0,[],!1,f,[y.WATCH_SNAPSHOT_UNAVAILABLE]),E=$(e.initialCursor,p,p,[],[y.WATCH_EVIDENCE_UNAVAILABLE],"unavailable"),R=V({watchStatus:"blocked",active:!1,targetEvidence:S,snapshotEvidence:v,cursorEvidence:E,stopReason:"unavailable_evidence",reasonCodes:[O.STORE_UNAVAILABLE]});return W(R,e.format,n),H("store-unavailable",f,d,R)}try{for(;!e.signal?.aborted&&d<c;){d+=1;const v=p,E=A.collectProcessingOutputSummaryCursor({...p?{cursor:p}:{},...t?{target:t}:{},...r?{jobId:r}:{},limit:o}),R=A.collectSnapshot({jobLimit:50,processingSummaryLimit:1}),Y=R.jobs;if(E.summaries.length>0){for(const z of E.summaries)yn(z,e.format,n),f+=1;p=E.nextCursor??E.summaries[E.summaries.length-1]?.cursor??p,m=0}else p=E.nextCursor??p,m+=1;const q=F(R,E.summaries,!0,E.summaries.length),D=$(e.initialCursor,v,p,E.summaries,E.summaries.length>0?[y.WATCH_CURSOR_ADVANCED]:[y.WATCH_NO_SUMMARIES_YET]);if(W(V({watchStatus:E.summaries.length>0?"polling":"waiting",active:!0,targetEvidence:S,snapshotEvidence:q,cursorEvidence:D,stopReason:"not_stopped",reasonCodes:E.summaries.length>0?[y.WATCH_CURSOR_ADVANCED]:[y.WATCH_NO_SUMMARIES_YET],generatedAt:R.generatedAt}),e.format,n),!E.hasMore&&Cn(Y,r,f)){const z=F(R,E.summaries,!1,f,[O.COMPLETED]),I=$(e.initialCursor,v,p,E.summaries,[O.COMPLETED],"exhausted"),G=V({watchStatus:"stopped",active:!1,targetEvidence:S,snapshotEvidence:z,cursorEvidence:I,stopReason:"not_stopped",reasonCodes:[O.COMPLETED],generatedAt:R.generatedAt});return W(G,e.format,n),H("completed",f,d,G)}if(!E.hasMore&&Sn(Y,r,m,i)){const z=F(R,E.summaries,!1,f,[y.WATCH_STOP_IDLE_LIMIT_REACHED]),I=$(e.initialCursor,v,p,E.summaries,[y.WATCH_STOP_IDLE_LIMIT_REACHED],"exhausted"),G=V({watchStatus:"stopped",active:!1,targetEvidence:S,snapshotEvidence:z,cursorEvidence:I,stopReason:"idle_limit_reached",reasonCodes:[O.IDLE_TIMEOUT,y.WATCH_STOP_IDLE_LIMIT_REACHED],generatedAt:R.generatedAt});return W(G,e.format,n),H("idle-timeout",f,d,G)}E.hasMore||await l(s,e.signal)}}catch{const v=F(void 0,[],!1,f,[y.WATCH_SNAPSHOT_UNAVAILABLE]),E=$(e.initialCursor,p,p,[],[y.WATCH_EVIDENCE_UNAVAILABLE],"unavailable"),R=V({watchStatus:"blocked",active:!1,targetEvidence:S,snapshotEvidence:v,cursorEvidence:E,stopReason:"unavailable_evidence",reasonCodes:[O.STORE_UNAVAILABLE]});return W(R,e.format,n),H("store-unavailable",f,d,R)}finally{A.close()}if(e.signal?.aborted){const v=F(void 0,[],!1,f,[O.CANCELLED]),E=$(e.initialCursor,p,p,[],[O.CANCELLED],"unavailable"),R=V({watchStatus:"stopped",active:!1,targetEvidence:S,snapshotEvidence:v,cursorEvidence:E,stopReason:"cancelled",reasonCodes:[O.CANCELLED]});return W(R,e.format,n),H("cancelled",f,d,R)}const L=F(void 0,[],!1,f,[y.WATCH_STOP_MAX_POLLS_REACHED]),T=$(e.initialCursor,p,p,[],[y.WATCH_STOP_MAX_POLLS_REACHED],"exhausted"),B=V({watchStatus:"stopped",active:!1,targetEvidence:S,snapshotEvidence:L,cursorEvidence:T,stopReason:"max_polls_reached",reasonCodes:[O.MAX_POLLS,y.WATCH_STOP_MAX_POLLS_REACHED]});return W(B,e.format,n),H("max-polls",f,d,B)}function j(e){const t=e.trim().replace(/^@/,"").match(/^(job|goal|loop)-([JGL])(\d{3,})$/i);if(!t)return;const r=t[1].toLowerCase(),n=t[2].toUpperCase();if(!(r==="job"&&n!=="J"||r==="goal"&&n!=="G"||r==="loop"&&n!=="L"))return`${r}-${n}${t[3]}`}function We(e){if(e.startsWith("job-J"))return"job";if(e.startsWith("goal-G"))return"goal";if(e.startsWith("loop-L"))return"loop"}function Lt(e){const t=[],r=/(?:^|[\s"'([,{])@?(job-[Jj]\d{3,}|goal-[Gg]\d{3,}|loop-[Ll]\d{3,})(?=$|[\s"')\]},.;:!?])/g;let n;for(;(n=r.exec(e))!==null;){const o=j(n[1]);o&&t.push(o)}return P(t)}function kt(e){return Lt(e)[0]}function ue(e){const t=e?j(e):void 0;if(t){if(t.startsWith("job-J"))return{selectorKind:"job",targetId:t,jobId:t,publicSafe:!0};if(t.startsWith("goal-G"))return{selectorKind:"goal",targetId:t,goalId:t,publicSafe:!0};if(t.startsWith("loop-L"))return{selectorKind:"loop",targetId:t,loopId:t,publicSafe:!0}}}function Be(e){return P(e.filter(t=>typeof t=="string").map(t=>j(t)).filter(t=>!!t?.startsWith("job-J")))}function bn(e,t){const r=Be(t).filter(n=>n!==e.targetId&&n!==e.jobId);return r.length>0?{...e,relatedJobIds:r}:e}function vn(e){if(!e)return;const t=_(e.target)?e.target:void 0,r=typeof e.selectorKind=="string"?e.selectorKind:typeof t?.selectorKind=="string"?t.selectorKind:void 0,n=typeof e.targetId=="string"?j(e.targetId):typeof t?.targetId=="string"?j(t.targetId):typeof e.targetJobId=="string"?j(e.targetJobId):void 0,o=ue(n);if(!o||r&&r!==o.selectorKind)return;const s=Array.isArray(e.relatedJobIds)?e.relatedJobIds:Array.isArray(t?.relatedJobIds)?t.relatedJobIds:void 0,i=Be([...s??[],e.jobId,t?.jobId,e.targetJobId,t?.targetJobId]).filter(c=>c!==o.targetId&&c!==o.jobId);return{...o,...typeof(e.jobId??t?.jobId)=="string"?{jobId:j(e.jobId??t?.jobId)??o.jobId}:{},...typeof(e.goalId??t?.goalId)=="string"?{goalId:j(e.goalId??t?.goalId)??o.goalId}:{},...typeof(e.loopId??t?.loopId)=="string"?{loopId:j(e.loopId??t?.loopId)??o.loopId}:{},...i.length>0?{relatedJobIds:i}:{}}}function xt(e){const t=e.trim().split(/\s+/).filter(Boolean),r=t[0]?.replace(/^\*/,"").toLowerCase(),n=t[1]?.replace(/^--/,"").toLowerCase();return(r==="jobs"||r==="job"||r==="continuity-jobs"||r==="61")&&n==="watch"}const N=Object.freeze({ACTIVE:"command-level-watch-active",INACTIVE:"command-level-watch-inactive",DUPLICATE:"command-level-watch-duplicate",AMBIGUOUS:"command-level-watch-ambiguous",QUOTED:"command-level-watch-quoted",MALFORMED:"command-level-watch-malformed",NON_FINAL:"command-level-watch-non-final",UNRESOLVED:"command-level-watch-unresolved",UNSUPPORTED:"command-level-watch-unsupported",TARGET_INVALID:"command-level-watch-target-invalid"}),On=new Set(["create","start","resume"]),Nn=new Set(["create","resume","run-once"]);function Fe(e,t,r,n,o){return{schemaVersion:1,contractVersion:"continuity-v1",...r?{command:r}:{},...n?{operation:n}:{},active:e,...o?{watchToken:o}:{},reasonCodes:P(t),serverHeldStream:!1,allJobsPolling:!1,targetResolution:e?"required-after-dispatch":"inactive",publicSafe:!0}}function x(e,t=[],r,n){const o=t.length>0?t:[N.INACTIVE];return{args:e,watch:!1,reasonCodes:o,metadata:Fe(!1,o,r,n),publicSafe:!0}}function Ln(e){const t=e.trim().split(/\s+/).filter(Boolean),r=t.slice(2).filter(s=>s==="--watch").length;if(r===0)return x(e,[],"jobs","watch");if(r!==1)return x(e,[N.AMBIGUOUS],"jobs","watch");const n=t.filter((s,i)=>i<2||s!=="--watch").join(" ");return xt(n)?n.trim().split(/\s+/).filter(Boolean).slice(2).length!==1?x(e,[N.AMBIGUOUS],"jobs","watch"):kt(n)?{args:n,watch:!0,reasonCodes:[N.ACTIVE],metadata:Fe(!0,[N.ACTIVE],"jobs","watch"),publicSafe:!0}:x(e,[N.TARGET_INVALID],"jobs","watch"):x(e,[N.UNSUPPORTED],"jobs","watch")}function kn(e){const t=[];let r=!1,n=0;for(;n<e.length;){for(;n<e.length&&/\s/.test(e[n]);)n+=1;if(n>=e.length)break;const o=n;let s="",i=!1,c=null;for(;n<e.length;){const l=e[n];if(c){if(l===c){i=!0,c=null,n+=1;continue}if(l==="\\"&&n+1<e.length){s+=e[n+1],n+=2;continue}s+=l,n+=1;continue}if(/\s/.test(l))break;if(l==='"'||l==="'"){i=!0,c=l,n+=1;continue}s+=l,n+=1}c&&(r=!0),t.push({value:s,start:o,end:n,quoted:i})}return{tokens:t,malformed:r}}function xn(e){if(!e||e.quoted)return;const t=e.value.replace(/^\*/,"").toLowerCase();return t==="goal"||t==="loop"?t:void 0}function Pn(e,t){if(!e||e==="jobs"||!t||t.quoted)return;const r=t.value.toLowerCase();return(e==="goal"?On:Nn).has(r)?r:void 0}function jn(e){return!e.quoted&&e.value!=="--watch"&&e.value.toLowerCase().startsWith("--watch")}function Dn(e){const{tokens:t,malformed:r}=kn(e),n=xn(t[0]),o=Pn(n,t[1]);if(r)return x(e,[N.MALFORMED],n,o);const s=t.filter(d=>d.value==="--watch"&&!d.quoted),i=t.filter(d=>d.value==="--watch"&&d.quoted),c=t.filter(jn);if(!(s.length>0||i.length>0||c.length>0))return x(e,[],n,o);if(s.length>1)return x(e,[N.DUPLICATE],n,o);if(s.length===1&&(i.length>0||c.length>0))return x(e,[N.AMBIGUOUS],n,o);if(i.length>0)return x(e,[N.QUOTED],n,o);if(c.length>0)return x(e,[N.MALFORMED],n,o);const p=s[0];if(!p)return x(e,[],n,o);if(t[t.length-1]!==p)return x(e,[N.NON_FINAL],n,o);if(!n||!o)return x(e,[N.UNRESOLVED],n,o);const f=`${e.slice(0,p.start)}${e.slice(p.end)}`.trim(),m={literal:"--watch",position:"final",start:p.start,end:p.end,quoted:!1,publicSafe:!0};return{args:f,watch:!0,reasonCodes:[N.ACTIVE],metadata:Fe(!0,[N.ACTIVE],n,o,m),publicSafe:!0}}function Mn(e){return xt(e)?Ln(e):Dn(e)}function Un(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&Mr.has(t)):[]}function se(e){return{disabled:!0,reasonCodes:P(e.length>0?e:[k.MISSING])}}function He(e,t,r=[],n){const o=ue(t);if(o)return{source:e,target:bn(o,r),targetJobId:o.targetId,...n?{initialCursor:n}:{},serverHeldStream:!1}}function $n(e){const t=new Map;for(const r of e){const n=`${r.target.selectorKind}:${r.target.targetId}`,o=t.get(n);if(!o){t.set(n,r);continue}const s=P([...o.target.relatedJobIds??[],...r.target.relatedJobIds??[]]);t.set(n,{...o,target:s.length>0?{...o.target,relatedJobIds:s}:o.target,initialCursor:o.initialCursor??r.initialCursor})}return Array.from(t.values())}function K(e,t,r,n){return{source:e,hasEvidence:t,candidates:$n(r.filter(o=>!!o)),...n&&n.length>0?{disabledReasonCodes:P(n)}:{}}}function Vn(e,t){return e.target.selectorKind===t.target.selectorKind&&e.target.targetId===t.target.targetId}function le(e,t){const r=P(e.filter(n=>typeof n=="string").map(n=>j(n)).filter(n=>!!n));if(t){const n=r.find(o=>We(o)===t);if(n)return n}return r[0]}function Se(e,t){return P(e.filter(r=>typeof r=="string").map(r=>j(r)).filter(r=>!!r)).find(r=>We(r)===t)}function Wn(e){const t=_(e?.continuity)?e.continuity:void 0,r=_(t?.jobs)?t.jobs:void 0,n=_(r?.watcher)?r.watcher:void 0,o=Un(n?.reasonCodes??r?.reasonCodes);if(!n)return K("watcher-metadata",o.length>0,[],o);if(n.active===!1||o.length>0)return K("watcher-metadata",!0,[],o.length>0?o:[k.MALFORMED]);if(n.serverHeldStream!==!1)return K("watcher-metadata",!0,[],[k.SERVER_HELD_STREAM]);const s=vn(n);if(!s)return K("watcher-metadata",!0,[],[k.MISSING]);const i=typeof n.initialCursor=="string"?n.initialCursor:void 0;return K("watcher-metadata",!0,[{source:"watcher-metadata",target:s,targetJobId:s.targetId,...i?{initialCursor:i}:{},serverHeldStream:!1}])}function Pt(e,t){const r=_(e.loopJobPlan)?e.loopJobPlan:void 0,n=_(r?.metadata)?r.metadata:void 0,o=_(e.metadata)?e.metadata:void 0,i=(t==="goal"?le([e.goalId,e.targetGoalId,e.campaignId,e.jobId,e.targetJobId,o?.goalId,o?.campaignId,o?.jobId],"goal"):le([e.loopId,e.targetLoopId,e.jobId,e.targetJobId,o?.loopId,o?.jobId,n?.loopId,n?.jobId],"loop"))??le([e.jobId,e.targetJobId,o?.jobId,n?.jobId]);return He("goal-loop-continuity-metadata",i,[e.jobId,e.targetJobId,o?.jobId,n?.jobId])}function Bn(e){const t=_(e?.continuity)?e.continuity:void 0,r=_(t?.goal)?t.goal:void 0,n=_(t?.loop)?t.loop:void 0,o=[r?Pt(r,"goal"):void 0,n?Pt(n,"loop"):void 0],s=!!(r||n);return K("goal-loop-continuity-metadata",s,o,s&&o.every(i=>!i)?[k.MISSING]:void 0)}function Fn(e){return Array.isArray(e)?e.filter(_):_(e)?Array.isArray(e.operationLogs)?e.operationLogs.filter(_):_(e.operationLog)?[e.operationLog]:Array.isArray(e.operations)?[e]:[]:[]}function jt(e,t){const r=_(t.metadata)?t.metadata:void 0,n=Se([t.goalId,t.targetGoalId,t.campaignId,r?.goalId,r?.campaignId,t.jobId,r?.jobId],"goal"),o=Se([t.loopId,t.targetLoopId,r?.loopId,t.jobId,r?.jobId],"loop"),s=le([t.jobId,t.targetJobId,r?.jobId],"job"),i=n??o??s;if(!i)return;const c=e.get(i)??{targetId:i,relatedJobIds:[]};c.relatedJobIds.push(...Be([s,t.jobId,t.targetJobId,r?.jobId])),e.set(i,c)}function Hn(e){const t=_(e.metadata)?e.metadata:void 0;return!!(Se([e.goalId,e.targetGoalId,e.campaignId,t?.goalId,t?.campaignId,e.jobId,t?.jobId],"goal")??Se([e.loopId,e.targetLoopId,t?.loopId,e.jobId,t?.jobId],"loop"))}function Gn(e){const t=_(e.metadata)?e.metadata:void 0;return!!le([e.goalId,e.targetGoalId,e.campaignId,e.loopId,e.targetLoopId,e.jobId,e.targetJobId,t?.goalId,t?.campaignId,t?.loopId,t?.jobId])}function Dt(e,t){const r=[];for(const i of["metadata","job","event","receipt","processingOutputSummary"]){const c=t[i];_(c)&&r.push(c)}const n=_(t.event)?t.event:void 0;_(n?.metadata)&&r.push(n.metadata),_(n?.processingOutputSummary)&&r.push(n.processingOutputSummary);const o=_(t.receipt)?t.receipt:void 0;_(o?.metadata)&&r.push(o.metadata);const s=r.some(Gn);for(const i of r)jt(e,i);(!s||Hn(t))&&jt(e,t)}function Jn(e){const t=Fn(e?.continuityStateUpdate),r=new Map;for(const o of t){Dt(r,o);const s=Array.isArray(o.operations)?o.operations.filter(_):[];for(const i of s)Dt(r,i)}const n=Array.from(r.values()).map(o=>He("continuity-state-update-operation-log",o.targetId,o.relatedJobIds));return K("continuity-state-update-operation-log",t.length>0,n,t.length>0&&n.every(o=>!o)?[k.MISSING]:void 0)}function Kn(e){const t=Lt(e);return K("explicit-args",t.length>0,t.map(r=>He("explicit-args",r)))}function Yn(e,t){const r=[Wn(e),Bn(e),Jn(e),Kn(t)];for(let n=0;n<r.length;n+=1){const o=r[n];if(!o.hasEvidence)continue;if(o.disabledReasonCodes&&o.disabledReasonCodes.length>0)return se(o.disabledReasonCodes);if(o.candidates.length!==1)return se([o.candidates.length>1?k.AMBIGUOUS:k.MISSING]);const s=o.candidates[0];for(const i of r.slice(n+1)){if(!i.hasEvidence)continue;if(i.disabledReasonCodes&&i.disabledReasonCodes.length>0)return se(i.disabledReasonCodes);if(i.candidates.length>1)return se([k.AMBIGUOUS]);const c=i.candidates[0];if(c&&!Vn(s,c))return se([k.CONFLICT])}return{target:s.target,targetJobId:s.targetJobId,...s.initialCursor?{initialCursor:s.initialCursor}:{},source:s.source,serverHeldStream:!1}}return se([k.MISSING])}async function zn(e,t,r,n={}){const s=await De(e,"/api/v1/invoke",t,r,n);if(s.networkFailure||!s.response)return{ok:!1,status:0,error:"Network error after bounded retries"};const{response:i,text:c,parsed:l}=s;try{if(!i.ok)return{ok:!1,status:i.status,error:Object.keys(l).length>0?`${l.error_code??"ERROR"}: ${l.message??c}`:`HTTP ${i.status}: ${c}`,errorBody:Object.keys(l).length>0?l:void 0};const p=l,f=i.headers.get("X-Client-Version-Warning");return f&&!St&&(St=!0,process.stderr.write(`
|
|
15
|
-
[Neocortex] ${f}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
`),{
|
|
7
|
+
`)}catch{}}}function Mi(){ot=!1}function Gt(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&t.length>0):[]}function Mr(e){return e==="active"||e==="archived"||e==="rolled-back"||e==="synthetic"||e==="orphan"?e:void 0}function z(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&t.length>0):[]}function Ur(e){const t={};let n=!1;for(const r of["contracts","contract_refs","shared_surfaces","adr_refs","nfr_refs","acceptance_depends_on"]){if(e[r]===void 0)continue;const o=e[r];if(!Array.isArray(o)||o.length>128||o.some(i=>ke(i)===void 0)){n=!0;continue}t[r]=o.map(i=>ke(i))}if(e.planning!==void 0)try{if(!m(e.planning))throw new Error("planning-shape");const r=e.planning;for(const s of["claims","semanticArtifacts"]){if(r[s]===void 0)continue;const c=r[s];if(!Array.isArray(c)||c.length>128||c.some(p=>!m(p)||ke(p.ref)===void 0))throw new Error("planning-refs")}if(r.attempts!==void 0&&(!Array.isArray(r.attempts)||r.attempts.length>32))throw new Error("planning-attempts");for(const s of r.attempts??[]){if(!m(s)||!Array.isArray(s.reasonCodes)||s.reasonCodes.length>32||s.reasonCodes.some(c=>typeof c!="string"||!/^[A-Za-z0-9][A-Za-z0-9_.:-]{0,127}$/.test(c)))throw new Error("planning-attempt-reasons");if(s.discoveredClaims!==void 0&&(!Array.isArray(s.discoveredClaims)||s.discoveredClaims.length>128||s.discoveredClaims.some(c=>!m(c)||ke(c.ref)===void 0)))throw new Error("planning-attempt-claims")}const{graphRevision:o,...i}=ur(r);t.planning=i}catch{n=!0}return n&&(t.planning={schemaVersion:1,dependencyBasis:"unknown",claims:[],semanticArtifacts:[]}),t}function m(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}function de(e){return typeof e=="number"&&Number.isFinite(e)&&e>0?e:void 0}function x(e){if(typeof e!="string")return;const t=e.trim();if(t)return t.replace(/[^a-z0-9_.:-]+/gi,"_").slice(0,120)}function D(e){if(typeof e!="string")return;const t=e.trim(),n=x(e);return n===t?n:void 0}function W(e){if(typeof e!="string")return;const t=e.trim();if(!(!t||t.length>240)&&/^[A-Za-z0-9][A-Za-z0-9._/-]*$/.test(t)&&!(t.includes("..")||t.includes("//")||t.includes("@{")||t.endsWith("/")||t.endsWith("."))&&!t.split("/").some(n=>!n||n.startsWith(".")||n.endsWith(".lock")))return t}function R(e){return typeof e=="string"&&/^[0-9a-f]{7,64}$/i.test(e)?e:void 0}function Y(e){if(!(typeof e!="string"||e.length>64)&&/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d{1,9})?(?:Z|[+-]\d{2}:\d{2})$/.test(e))return Number.isFinite(Date.parse(e))?e:void 0}function ue(e){if(typeof e!="string")return;const t=e.trim();if(!(!t||t.length>240||t.includes("..")))return/^[A-Za-z0-9._:/#\-[\]]+$/.test(t)?t:void 0}function Pe(e,t){if(!m(e))return;const n={};for(const r of t){const o=e[r];if(typeof o=="boolean")n[r]=o;else if(typeof o=="number"&&Number.isFinite(o))n[r]=o;else if(typeof o=="string"){const i=x(o);i&&(n[r]=i)}}return Object.keys(n).length>0?n:void 0}function je(e){return e==="epic"||e==="story"?e:void 0}function Jt(e){if(!m(e)||e.schemaVersion!==1)return;const t=D(e.ownerStoryId),n=D(e.sessionId),r=D(e.idempotencyKey),o=Y(e.acquiredAt),i=Y(e.expiresAt);if(!(!t||!n||!r||!o||!i||Date.parse(i)<=Date.parse(o)))return{schemaVersion:1,ownerStoryId:t,sessionId:n,idempotencyKey:r,acquiredAt:o,expiresAt:i}}function zt(e){if(!m(e)||e.schemaVersion!==1)return;const t=D(e.storyId),n=D(e.epicId),r=W(e.branch),o=R(e.baseSha),i=R(e.headSha),s=D(e.idempotencyKey),c=Y(e.recordedAt),p=z(e.commits).map(R).filter(C=>!!C).slice(0,256),l=z(e.receiptRefs).map(ue).filter(C=>!!C).slice(0,256),h=e.dispatchId===void 0?void 0:D(e.dispatchId),g=e.bundleId===void 0?void 0:D(e.bundleId),f=e.bundleDigest===void 0?void 0:R(e.bundleDigest),u=e.graphRevision===void 0?void 0:R(e.graphRevision),I=e.claimRevision===void 0?void 0:D(e.claimRevision),_=Vr(e.qaReceipt),S=Br(e.reviewReceipt);if(!(!t||!n||!t.startsWith(`${n}.`)||!r||!o||!i||o===i||!s||!c||p.length===0||l.length===0||!Array.isArray(e.commits)||p.length!==e.commits.length||e.commits.length>256||!Array.isArray(e.receiptRefs)||l.length!==e.receiptRefs.length||e.receiptRefs.length>256||e.dispatchId!==void 0&&!h||e.bundleId!==void 0&&!g||e.bundleDigest!==void 0&&(!f||f.length!==64)||e.graphRevision!==void 0&&(!u||u.length!==64)||e.claimRevision!==void 0&&!I||e.qaVerdict!=="passed"&&e.qaVerdict!=="blocked"||!["approved","changes-requested","pending"].includes(String(e.reviewVerdict))||!_||e.reviewVerdict!=="pending"&&!S||e.reviewVerdict==="pending"&&S||_.verdict!==e.qaVerdict||S&&S.verdict!==e.reviewVerdict||!Kt(_,{storyId:t,epicId:n,baseSha:o,headSha:i,bundleDigest:f,graphRevision:u})||S&&(!Kt(S,{storyId:t,epicId:n,baseSha:o,headSha:i,bundleDigest:f,graphRevision:u})||S.qaReceiptRef!==_?.receiptRef||S.receiptRef===_?.receiptRef)||!l.includes(String(_.receiptRef))||S&&(!l.includes(String(S.receiptRef))||Date.parse(String(S.reviewedAt))<Date.parse(String(_.checkedAt)))))return{schemaVersion:1,storyId:t,epicId:n,branch:r,baseSha:o,headSha:i,idempotencyKey:s,...h?{dispatchId:h}:{},...g?{bundleId:g}:{},...f?{bundleDigest:f}:{},...u?{graphRevision:u}:{},...I?{claimRevision:I}:{},qaVerdict:e.qaVerdict,reviewVerdict:e.reviewVerdict,..._?{qaReceipt:_}:{},...S?{reviewReceipt:S}:{},recordedAt:c,commits:p,receiptRefs:l}}function Vr(e){if(!m(e)||e.schemaVersion!==1||e.kind!=="story_qa_evidence"||e.producer!=="local-yolo-tdd"||e.evidenceVersion!==void 0&&e.evidenceVersion!=="git-immutable-v1"&&e.evidenceVersion!=="p205-execution-v2"||!["passed","blocked"].includes(String(e.verdict)))return;const t=D(e.storyId),n=D(e.epicId),r=R(e.baseSha),o=R(e.headSha),i=R(e.bundleDigest),s=R(e.graphRevision),c=R(e.sourceEvidenceDigest),p=Y(e.checkedAt),l=ue(e.receiptRef),h=e.evidenceVersion==="p205-execution-v2"&&e.contract==="P205-CI-02"?e.contract:void 0,g=e.evidenceVersion==="p205-execution-v2"&&e.command==="node scripts/test-root.mjs --gate complete"?e.command:void 0,f=e.evidenceVersion==="p205-execution-v2"?R(e.manifestDigest):void 0,u=e.evidenceVersion==="p205-execution-v2"?R(e.resultDigest):void 0,I=e.evidenceVersion==="p205-execution-v2"?z(e.gateIds).map(D).filter(_=>!!_).slice(0,64):void 0;if(!(!t||!n||!r||!o||!i||i.length!==64||!s||s.length!==64||!c||c.length!==64||!p||!l||e.evidenceVersion==="p205-execution-v2"&&(!h||g!=="node scripts/test-root.mjs --gate complete"||!f||f.length!==64||!u||u.length!==64||!Array.isArray(e.gateIds)||!I||I.length===0||I.length!==e.gateIds.length)))return{schemaVersion:1,kind:"story_qa_evidence",producer:"local-yolo-tdd",...e.evidenceVersion?{evidenceVersion:e.evidenceVersion}:{},storyId:t,epicId:n,...e.evidenceVersion==="p205-execution-v2"?{contract:h,command:g,manifestDigest:f,gateIds:I,resultDigest:u}:{},baseSha:r,headSha:o,bundleDigest:i,graphRevision:s,sourceEvidenceDigest:c,verdict:e.verdict,checkedAt:p,receiptRef:l}}function Yt(e){if(!m(e)||e.schemaVersion!==1||e.kind!=="story_checkpoint_physical_verification"||e.producer!=="client-p205-transient-v1"||e.publicSafe!==!0||e.verdict!=="verified"&&e.verdict!=="rejected")return;const t=D(e.storyId),n=D(e.epicId),r=W(e.branch),o=R(e.baseSha),i=R(e.headSha),s=R(e.aggregateHeadSha),c=R(e.commitBodyDigest),p=R(e.changedPathsDigest),l=e.claimVerification==="canonical"||e.claimVerification==="legacy-migration"?e.claimVerification:void 0,h=R(e.effectiveClaimRevision),g=e.command==="node scripts/test-root.mjs --gate complete"?e.command:void 0,f=R(e.manifestDigest),u=z(e.gateIds).map(D).filter(E=>!!E).slice(0,64),I=R(e.resultDigest),_=R(e.graphRevision),S=R(e.executionEvidenceDigest),C=R(e.sourceEvidenceDigest),T=Y(e.verifiedAt),y=z(e.reasonCodes).map(D).filter(E=>!!E).slice(0,16);if(!(!t||!n||!r||!o||o.length<40||!i||i.length<40||!s||s.length<40||!c||c.length!==64||!p||p.length!==64||!l||!h||h.length!==64||!g||!f||f.length!==64||!Array.isArray(e.gateIds)||u.length!==e.gateIds.length||!I||I.length!==64||!_||_.length!==64||!S||S.length!==64||!C||C.length!==64||!T||y.length===0||e.verdict==="verified"&&(u.length===0||!y.includes("checkpoint-p205-transient-verified"))))return{schemaVersion:1,kind:"story_checkpoint_physical_verification",producer:"client-p205-transient-v1",storyId:t,epicId:n,branch:r,baseSha:o,headSha:i,aggregateHeadSha:s,commitBodyDigest:c,changedPathsDigest:p,claimVerification:l,effectiveClaimRevision:h,command:g,manifestDigest:f,gateIds:u,resultDigest:I,graphRevision:_,executionEvidenceDigest:S,sourceEvidenceDigest:C,verifiedAt:T,verdict:e.verdict,reasonCodes:y,publicSafe:!0}}function Br(e){if(!m(e)||e.schemaVersion!==1||e.kind!=="story_review_evidence"||e.producer!=="root-commit-range-review"||!["approved","changes-requested"].includes(String(e.verdict)))return;const t=D(e.storyId),n=D(e.epicId),r=R(e.baseSha),o=R(e.headSha),i=R(e.bundleDigest),s=R(e.graphRevision),c=R(e.sourceEvidenceDigest),p=ue(e.qaReceiptRef),l=Y(e.reviewedAt),h=ue(e.receiptRef);if(!(!t||!n||!r||!o||!i||i.length!==64||!s||s.length!==64||!c||c.length!==64||!p||!l||!h))return{schemaVersion:1,kind:"story_review_evidence",producer:"root-commit-range-review",storyId:t,epicId:n,baseSha:r,headSha:o,bundleDigest:i,graphRevision:s,sourceEvidenceDigest:c,qaReceiptRef:p,verdict:e.verdict,reviewedAt:l,receiptRef:h}}function Kt(e,t){return["storyId","epicId","baseSha","headSha","bundleDigest","graphRevision"].every(n=>e[n]===t[n])}function qt(e){if(!m(e)||e.schemaVersion!==1||e.capturedFromCurrentCheckout!==!0)return;const t=W(e.originBranch),n=R(e.originHeadSha),r=W(e.executionBranch),o=Y(e.capturedAt);if(!(!t||!n||n.length<40||!r||!o||t===r))return{schemaVersion:1,originBranch:t,originHeadSha:n,executionBranch:r,capturedFromCurrentCheckout:!0,capturedAt:o}}function Xt(e){if(!m(e)||e.schemaVersion!==1||e.verdict!=="passed")return;const t=R(e.executionHeadSha),n=R(e.graphRevision),r=Y(e.checkedAt),o=ue(e.receiptRef),i=z(e.gateIds).map(D).filter(h=>!!h).slice(0,128),s=e.evidenceVersion==="p205-execution-v2"&&e.producer==="local-yolo-tdd"&&e.contract==="P205-CI-02"&&e.command==="node scripts/test-root.mjs --gate complete",c=e.evidenceVersion===void 0&&e.producer===void 0&&e.contract===void 0&&e.command===void 0&&e.manifestDigest===void 0&&e.resultDigest===void 0,p=s?R(e.manifestDigest):void 0,l=s?R(e.resultDigest):void 0;if(!(!t||t.length<40||!n||n.length!==64||!r||!o||i.length===0||!Array.isArray(e.gateIds)||i.length!==e.gateIds.length||e.gateIds.length>128||!c&&!s||s&&(!p||p.length!==64||!l||l.length!==64)))return{schemaVersion:1,...s?{evidenceVersion:"p205-execution-v2",producer:"local-yolo-tdd",contract:"P205-CI-02",command:"node scripts/test-root.mjs --gate complete",manifestDigest:p,resultDigest:l}:{},verdict:"passed",executionHeadSha:t,graphRevision:n,checkedAt:r,receiptRef:o,gateIds:i}}function Me(e){if(!m(e)||e.schemaVersion!==1)return;const t=Pe(e,["schemaVersion","kind","storyId","epicId","baseSha","headSha","originalBaseSha","originalHeadSha","gitPullRequest","preservesLaterCommits","historyRewrite","recordedAt"])??{},n=z(e.receiptRefs).map(ue).filter(o=>!!o).slice(0,256),r=z(e.revertCommits).map(x).filter(o=>!!o).slice(0,256);return{...t,...n.length?{receiptRefs:n}:{},...r.length?{revertCommits:r}:{}}}function Qt(e){if(!m(e)||e.schemaVersion!==1||e.publicSafe!==!0)return;const t=D(e.epicId),n=W(e.executionBranch),r=W(e.originBranch),o=R(e.baseSha),i=R(e.executionHeadSha),s=e.mergeSha===void 0?void 0:R(e.mergeSha),c=e.pushedSha===void 0?void 0:R(e.pushedSha),p=D(e.idempotencyKey),l=Y(e.attemptStartedAt),h=e.completedAt===void 0?void 0:Y(e.completedAt),g=z(e.localGateReceiptRefs).map(ue).filter(_=>!!_).slice(0,256),f=z(e.reasonCodes).map(D).filter(_=>!!_).slice(0,64),u=Wr(e.candidateQa),I=$r(e.providerGuard);if(!(!t||!n||!r||!o||!i||!p||!l||g.length===0||f.length===0||!["direct","single_pr"].includes(String(e.strategy))||!["prepared","merged","pushed","denied_external_gate","blocked_local_or_repo"].includes(String(e.physicalStatus))||typeof e.retryEligible!="boolean"||e.providerGuard!==void 0&&!I||I&&(e.strategy!=="single_pr"||e.physicalStatus!=="pushed"||I.prHeadSha!==s||I.originHeadSha!==o)))return{schemaVersion:1,epicId:t,executionBranch:n,originBranch:r,baseSha:o,executionHeadSha:i,...s?{mergeSha:s}:{},...c?{pushedSha:c}:{},strategy:e.strategy,...de(e.prNumber)?{prNumber:de(e.prNumber)}:{},physicalStatus:e.physicalStatus,localGateReceiptRefs:g,idempotencyKey:p,attemptStartedAt:l,...u?{candidateQa:u}:{},...I?{providerGuard:I}:{},...h?{completedAt:h}:{},retryEligible:e.retryEligible,reasonCodes:f,publicSafe:!0}}function $r(e){if(!m(e)||e.schemaVersion!==1||e.provider!=="github"||e.publicSafe!==!0)return;const t=String(e.mode),n=String(e.source),r=t==="recovered_exact_tree"?n==="physical_recovery":t==="strict_up_to_date_expected_head"&&["branch_protection","ruleset","branch_protection_and_ruleset"].includes(n),o=R(e.prHeadSha),i=R(e.originHeadSha),s=Y(e.checkedAt);if(!(!r||!o||!i||!s))return{schemaVersion:1,provider:"github",mode:t,source:n,prHeadSha:o,originHeadSha:i,checkedAt:s,publicSafe:!0}}function Wr(e){if(!m(e)||e.schemaVersion!==1||e.kind!=="epic_merge_candidate_qa"||e.contract!=="P205-CI-02"||e.command!==pr)return;const n=Object.fromEntries(["originHeadSha","executionHeadSha","mergeSha","treeSha","graphRevision","manifestDigest","resultDigest"].map(s=>[s,R(e[s])])),r=Y(e.checkedAt),o=ue(e.receiptRef),i=z(e.gateIds).filter(s=>/^[a-z0-9-]+$/.test(s)).slice(0,128);if(!(Object.values(n).some(s=>!s)||!r||!o||i.length===0))return{schemaVersion:1,kind:e.kind,contract:e.contract,command:e.command,...n,checkedAt:r,receiptRef:o,gateIds:i}}function Hr(e){if(!m(e))return;const t={...x(e.active_epic_id??e.activeEpicId)?{active_epic_id:x(e.active_epic_id??e.activeEpicId)}:{},...x(e.active_story_id??e.activeStoryId)?{active_story_id:x(e.active_story_id??e.activeStoryId)}:{},...x(e.active_step_id??e.activeStepId)?{active_step_id:x(e.active_step_id??e.activeStepId)}:{},...x(e.session_id??e.sessionId)?{session_id:x(e.session_id??e.sessionId)}:{},...x(e.started_at??e.startedAt)?{started_at:x(e.started_at??e.startedAt)}:{}};return Object.keys(t).length>0?t:void 0}function Fr(e){const t=Pe(e.completionEvidence??e.completion_evidence,["prNumber","pr_number","prState","pr_state","pullRequestState","merged","mergedAt","issueNumber","issue_number","issueState","issue_state","closedAt"]),n=Pe(e.issueCloseAudit??e.issue_close_audit,["schema_version","event","storyId","epicId","issueNumber","closedAt","publicSafe","rawLogStorage"]),r=Pe(e.scopedCiEvidence??e.scoped_ci_evidence,["schema_version","storyId","epicId","prNumber","finalState","publicSafe","rawLogStorage"]);return{...typeof e.merged=="boolean"?{merged:e.merged}:{},...typeof e.safeToContinueYoloop=="boolean"?{safeToContinueYoloop:e.safeToContinueYoloop}:{},...typeof e.mergeBlockedRemotely=="boolean"?{mergeBlockedRemotely:e.mergeBlockedRemotely}:{},...x(e.physicalMergeStatus)?{physicalMergeStatus:x(e.physicalMergeStatus)}:{},...x(e.pr_state??e.prState??e.pull_request_state??e.pullRequestState)?{pr_state:x(e.pr_state??e.prState??e.pull_request_state??e.pullRequestState)}:{},...x(e.issue_state??e.issueState??e.workflow_issue_state)?{issue_state:x(e.issue_state??e.issueState??e.workflow_issue_state)}:{},...de(e.issue_number??e.issueNumber)?{issue_number:de(e.issue_number??e.issueNumber)}:{},...t?{completionEvidence:t}:{},...n?{issueCloseAudit:n}:{},...r?{scopedCiEvidence:r}:{}}}class le extends Error{reasonCode;constructor(t){super(t),this.name="StateSnapshotIntegrityError",this.reasonCode=t}}const Gr=new Set(["yolo","yoloop","finalize-epic","audit"]);function Zt(e){return typeof e=="string"&&Gr.has(e)}function Jr(e){const t=Z(e,".neocortex","state.json");if(!Te(t))throw new le("git-lifecycle-state-missing");let n;try{n=JSON.parse(ye(t,"utf8"))}catch{throw new le("git-lifecycle-state-corrupt")}if(!m(n)||!m(n.epics)||!m(n.stories))throw new le("git-lifecycle-state-shape-invalid");if(Object.values(n.epics).some(o=>m(o)&&(o.branch_mode==="epic"||W(o.execution_branch)!==void 0)))try{Ke(e,{required:!0})}catch(o){const i=o instanceof Error&&/^git-lifecycle-/.test(o.message)?o.message:"git-lifecycle-runtime-invalid";throw new le(i)}}function en(e,t={}){const n=Z(e,".neocortex","state.json");if(!Te(n)){if(t.epicAware&&!t.projectless)throw new le("git-lifecycle-state-missing");return{config:{project_name:"unknown",default_branch:"main",language:"pt-BR"},stories:{},epics:{}}}let r;try{const f=ye(n,"utf-8"),u=JSON.parse(f),I=m(u.epics)?u.epics:{},_=Object.values(I).some(E=>m(E)&&(E.branch_mode==="epic"||W(E.execution_branch)!==void 0)),S=Ke(e,{required:!!(t.epicAware&&_&&!t.projectless)});r=xt(u,S);const C=m(r.stories)?r.stories:{},T=m(r.epics)?r.epics:{},y=m(u.stories)?u.stories:{};for(const[E,w]of Object.entries(C)){const A=m(w)?w:void 0;if(!A?.checkpoint)continue;const k=typeof A.epic_id=="string"?A.epic_id:E.split(".")[0],F=m(T[k])?T[k]:void 0,L=W(F?.execution_branch);if(!L)continue;const P=fr(e,A.checkpoint,E,k,L,t.p205Authorities?.[E]??null,Dt(E,A,m(A.checkpoint)?A.checkpoint:void 0));if(A.checkpoint_verification=P,P.verdict==="rejected"){const j=m(y[E])?y[E]:void 0;if(j?.checkpoint?A.checkpoint=structuredClone(j.checkpoint):delete A.checkpoint,S.stories[E]?.checkpoint!==void 0)for(const V of["status","last_step","steps_completed"])j&&Object.prototype.hasOwnProperty.call(j,V)?A[V]=structuredClone(j[V]):delete A[V]}}}catch(f){if(t.epicAware&&!t.projectless){const u=f instanceof Error&&/^git-lifecycle-/.test(f.message)?f.message:"git-lifecycle-state-corrupt";throw new le(u)}return{config:{project_name:"unknown",default_branch:"main",language:"pt-BR"},stories:{},epics:{}}}try{const f=Pr(r);f.length>0&&jr(f)}catch{}const o=r.config??r.project??{},i=r.stories??{},s={};for(const[f,u]of Object.entries(i))s[f]={id:u.id??f,title:u.title,epic_id:u.epic_id,status:u.status??"backlog",steps_completed:u.steps_completed??[],last_step:u.last_step??null,branch_name:u.branch_name??null,pr_number:u.pr_number,...je(u.branch_mode)?{branch_mode:je(u.branch_mode)}:{},...zt(u.checkpoint)?{checkpoint:zt(u.checkpoint)}:{},...Yt(u.checkpoint_verification)?{checkpoint_verification:Yt(u.checkpoint_verification)}:{},...Me(u.review_request)?{review_request:Me(u.review_request)}:{},...Me(u.rollback_receipt)?{rollback_receipt:Me(u.rollback_receipt)}:{},...de(u.workflow_issue)?{workflow_issue:de(u.workflow_issue)}:{},...Fr(u),depends_on:Gt(u.depends_on),files_to_modify:z(u.files_to_modify),...Ur(u),risk:typeof u.risk=="string"?u.risk:void 0,blast_radius:typeof u.blast_radius=="number"?u.blast_radius:void 0};const c=r.epics??{},p={};for(const[f,u]of Object.entries(c)){const I=Mr(u.lifecycle_classification);p[f]={id:u.id??f,title:u.title,status:u.status,stories:u.stories,total_stories:u.total_stories,completed_stories:u.completed_stories,depends_on:Gt(u.depends_on),...je(u.branch_mode)?{branch_mode:je(u.branch_mode)}:{},...W(u.execution_branch)?{execution_branch:W(u.execution_branch)}:{},...W(u.origin_branch)?{origin_branch:W(u.origin_branch)}:{},...Jt(u.branch_lease)?{branch_lease:Jt(u.branch_lease)}:{},...qt(u.origin_binding)?{origin_binding:qt(u.origin_binding)}:{},...Xt(u.aggregate_qa_receipt)?{aggregate_qa_receipt:Xt(u.aggregate_qa_receipt)}:{},...de(u.pr_number)?{pr_number:de(u.pr_number)}:{},...x(u.physicalMergeStatus)?{physicalMergeStatus:x(u.physicalMergeStatus)}:{},...R(u.graph_revision)?{graph_revision:R(u.graph_revision)}:{},...Qt(u.terminal_git_receipt)?{terminal_git_receipt:Qt(u.terminal_git_receipt)}:{},...I?{lifecycle_classification:I}:{}}}const l=Hr(r.current_session??r.currentSession),h=r.epic_id_ledger,g=Array.isArray(h?.reserved_ids)?[...new Set(h.reserved_ids.filter(f=>typeof f=="string"&&/^P\d+$/.test(f)))].slice(0,2048):[];return{schema_version:typeof r.schema_version=="number"?r.schema_version:void 0,config:{project_name:o.project_name??o.name??"unknown",default_branch:o.default_branch??"main",language:o.language??"pt-BR",yolo_mode:o.yolo_mode,user_name:o.user_name,worktree_base:o.worktree_base,max_parallel_stories:o.max_parallel_stories,project_id:typeof o.project_id=="string"?o.project_id:void 0},stories:s,epics:p,...g.length>0?{epic_id_ledger:{schema_version:1,reserved_ids:g}}:{},...l?{current_session:l}:{}}}async function zr(e,t,n){if(!Zt(n))return{};if(Dn(t,n))return{};try{const r=JSON.parse(ye(Z(e,".neocortex","state.json"),"utf8")),o=Ke(e,{required:!0}),i=xt(r,o),s=m(i.stories)?i.stories:{},c=m(i.epics)?i.epics:{},p=Oe("git",["rev-parse","HEAD"],{cwd:e,encoding:"utf8"}).trim(),l=Oe("git",["symbolic-ref","--quiet","--short","HEAD"],{cwd:e,encoding:"utf8"}).trim(),h=Oe("git",["rev-list","--first-parent","--reverse",p],{cwd:e,encoding:"utf8",maxBuffer:32*1024*1024}).trim().split(`
|
|
8
|
+
`).filter(Boolean),g=new Map(h.map((T,y)=>[T,y])),f=t.match(/(?:^|\s)@?docs\/stories\/([A-Za-z][A-Za-z0-9._-]*)\.story\.md(?:\s|$)/)?.[1],u=new Set,I=Object.entries(s).flatMap(([T,y])=>{if(f&&T!==f)return[];const E=m(y)?y:void 0,w=m(E?.checkpoint)?E.checkpoint:void 0;if(!w)return[];const A=typeof E?.epic_id=="string"?E.epic_id:T.split(".")[0],k=R(w?.headSha);if(!k||k.length<40||g.get(k)===void 0)return u.add(A),[];const F=m(c[A])?c[A]:void 0;if(F?.branch_mode!=="epic"||W(F.execution_branch)!==l||W(w.branch)!==l)return u.add(A),[];const L=R(w.graphRevision);if(!L||L.length!==64)return u.add(A),[];const P=R(w.claimRevision),j=[...Dt(T,E,w)].sort(),V=gr(e,w,T,A,l,j);if(!V&&P){if(j.length===0)return u.add(A),[];const fe=Oe("git",["diff-tree","--no-commit-id","--name-only","-r","-z",k],{cwd:e,encoding:"utf8"}).split("\0").filter(Boolean);if(fe.length===0||fe.some(b=>!j.some(Ie=>Ie===b||Ie.endsWith("/")&&b.startsWith(Ie))))return u.add(A),[];const Q=we("sha256").update(j.join("\0")).digest("hex"),We=we("sha256").update(JSON.stringify(j)).digest("hex");if(P!==Q&&P!==We)return u.add(A),[]}else if(!V)return u.add(A),[];return L?.length===64?[{storyId:T,epicId:A,graphRevision:L,checkpointHead:k,position:g.get(k)}]:[]}),_=new Set(u);for(const[T,y]of Object.entries(c)){const E=m(y)?y:void 0,w=Array.isArray(E?.stories)?E.stories.filter(L=>typeof L=="string"):Object.keys(s).filter(L=>L.startsWith(`${T}.`)),A=I.filter(L=>L.epicId===T),k=w.filter(L=>A.some(P=>P.storyId===L)),F=[...A].sort((L,P)=>L.position-P.position).map(L=>L.storyId);(JSON.stringify(k)!==JSON.stringify(F)||new Set(F).size!==F.length)&&_.add(T)}const S={},C=new Map;for(const T of I){if(_.has(T.epicId))continue;let y=C.get(T.graphRevision);y||(y=await lr(e,{headSha:p,graphRevision:T.graphRevision}),C.set(T.graphRevision,y)),S[T.storyId]=y}return S}catch{return{}}}function Ui(e,t){return{kind:"full",trigger:e,targetEpicId:null,targetStoryId:null,includedStoryCount:Object.keys(t.stories).length,includedEpicCount:Object.keys(t.epics).length,omittedStoryCount:0,omittedEpicCount:0,reason:"full-state",projectionMode:"full-compatible"}}const tn="neocortex:menu:cache";async function Yr(e){try{const t=await e.get(tn);if(!t)return null;const n=JSON.parse(t);return n.version!==_e||Date.now()-n.cachedAt>jt?null:n}catch{return null}}async function Kr(e,t,n){try{const r={instructions:t,metadata:n,cachedAt:Date.now(),version:_e};await e.set(tn,JSON.stringify(r),jt),qr()}catch{}}function qr(){try{Te(Pt)&&Rn(Pt)}catch{}}function Xr(e){return e.execute({phase:"client-preflight",domain:"client-persistence",category:"state-repair",operation:"update"},()=>Et(),()=>Et({strictReadOnly:!0}))}async function nn(e,t,n){try{let r;const o=n.mode==="strict";if(o&&t)r=new Je({cacheDir:qe,passphrase:t,strictReadOnly:!0});else if(o)r=new yt;else if(t){const h=Z(Le,"cache");r=new Je({cacheDir:h,passphrase:t})}else process.stderr.write(`[neocortex] Warning: No license key in config. Run "neocortex activate" to re-authenticate.
|
|
9
|
+
`),r=new yt;const i=Nt(n,r,"auth-cache"),s=Nt(n,r,"tier-cache"),c=new Tn({serverUrl:e,licenseKey:t??"",cacheProvider:i,strictReadOnly:o}),p=await c.getToken();if(!p)return null;const l=new bn({cacheProvider:s,licenseClient:c});return{token:p,client:c,tierClient:l}}catch{return null}}let rn=!1;const on=3,Ue=50;function Qr(e){return new Promise(t=>setTimeout(t,e))}function Zr(e,t,n){return e.status>=500&&e.status<=599?!0:n&&e.status===409&&t.error_code==="SIGNATURE_REPLAYED"}async function it(e,t,n,r,o={}){const i=Math.max(1,Math.min(o.maxAttempts??on,on)),s=o.sleep??Qr;let c=r,p=!1,l=!1,h=0;for(let g=1;g<=i;g+=1){const f=Math.max(Math.floor(Date.now()/1e3),h+1);h=f;const u=eo(t,n,c,{nowSeconds:f}),I=new AbortController,_=setTimeout(()=>I.abort(),Mt);try{const S=await fetch(`${e}${t}`,{method:"POST",headers:u.headers,body:u.body,signal:I.signal}),C=await S.text().catch(()=>""),T=(()=>{try{return C?JSON.parse(C):{}}catch{return{}}})();if(S.status===401&&!p&&o.refreshToken&&(T.fallback_action==="refresh_token"||T.fallback_action==="re_authenticate")){p=!0;const y=await o.refreshToken();if(y&&g<i){c=y,o.onTokenChanged?.(y),await s(Ue*g);continue}}if(S.status===401&&T.error_code==="SIGNATURE_EXPIRED"&&!l&&g<i){l=!0,await s(Ue*g);continue}if(g<i&&Zr(S,T,o.allowReplayRetry===!0)){await s(Ue*g);continue}return{response:S,text:C,parsed:T,networkFailure:!1}}catch{if(g<i){await s(Ue*g);continue}return{text:"",parsed:{},networkFailure:!0}}finally{clearTimeout(_)}}return{text:"",parsed:{},networkFailure:!0}}function eo(e,t,n,r={}){const o=Buffer.from(JSON.stringify(t),"utf8"),i=Gn({method:"POST",target:e,body:o,bearerToken:n,clientVersion:_e,nowSeconds:r.nowSeconds,nonceBytes:r.nonceBytes});return{body:i.body,headers:{...i.headers,Authorization:`Bearer ${n}`}}}function sn(e){return we("sha256").update(e).digest("hex")}function to(){const e=Number(process.env.NEOCORTEX_INVOKE_CHUNK_BYTES??"49152");return Number.isFinite(e)&&e>=1024&&e<=98304?Math.floor(e):49152}function no(e,t,n){return`args-${we("sha256").update("invoke-materialization:v1").update(e).update(String(t)).update(JSON.stringify(n)).digest("hex")}`}async function an(e,t,n,r,o={}){const i=await it(e,t,n,r,{...o,allowReplayRetry:!0});if(i.networkFailure||!i.response)throw new Error("NETWORK_ERROR: materialization request failed after bounded retries");const{response:s,parsed:c}=i;if(!s.ok){const p=typeof c.error_code=="string"?c.error_code:`HTTP_${s.status}`,l=typeof c.message=="string"?c.message:"materialization upload failed";throw new Error(`${p}: ${l}`)}return c}async function ro(e,t,n,r){const o=Buffer.from(t,"utf8"),i=to(),s=[];for(let I=0,_=0;I<o.byteLength;I+=i,_++){const S=o.subarray(I,Math.min(I+i,o.byteLength));s.push({index:_,sha256:sn(S),byteLength:S.byteLength})}const c=sn(o),p=no(c,o.byteLength,s),l=Number(process.env.NEOCORTEX_INVOKE_CHUNK_TTL_SECONDS??"900");let h=n;const g={refreshToken:r,onTokenChanged(I){h=I}};for(const I of s){const _=I.index*i,S=o.subarray(_,_+I.byteLength);await an(e,"/api/v1/invoke/materialization/chunks",{manifestId:p,index:I.index,sha256:I.sha256,byteLength:I.byteLength,contentBase64:S.toString("base64"),ttlSeconds:l,idempotencyKey:`${p}:${I.index}:${I.sha256}`},h,g)}const u=(await an(e,"/api/v1/invoke/materialization/manifests",{manifestId:p,sha256:c,byteLength:o.byteLength,chunkCount:s.length,chunks:s,ttlSeconds:l,retry:{attempt:1,budget:3,idempotencyKey:p}},h,g)).argsRef;if(!u?.manifestId)throw new Error("MATERIALIZATION_RESPONSE_INVALID: missing argsRef");return{argsRef:u,chunks:s}}function Se(e){return Buffer.byteLength(JSON.stringify(e),"utf8")}function oo(...e){const t=new Set,n=[];for(const r of e)for(const o of r??[]){const i=x(o);if(!(!i||t.has(i))&&(t.add(i),n.push(i),n.length>=16))return n}return n}function io(e){const t=e.graphRetrieval;if(!m(t))return{accepted:!1,itemCount:0};const n=Array.isArray(t.items)?t.items.length:0;return{accepted:n>0||typeof t.retrievalId=="string"||t.accepted===!0,itemCount:n}}function st(e,t=Se(e),n=[],r={}){const o=e.stateSnapshot.scope,i=Object.keys(e.stateSnapshot.stories).length,s=Object.keys(e.stateSnapshot.epics).length,c=o?.kind??"full";return{schemaVersion:1,payloadBytes:t,limitBytes:r.limitBytes??Vt,warningThresholdBytes:r.warningThresholdBytes??Xe,scope:{kind:c,...o?.projectionMode?{projectionMode:o.projectionMode}:{},commandId:o?.commandId??null,stateProjectionPolicy:o?.stateProjectionPolicy??null},includedStories:o?.includedStoryCount??i,omittedStories:o?.omittedStoryCount??0,includedEpics:o?.includedEpicCount??s,omittedEpics:o?.omittedEpicCount??0,graphRetrieval:io(e.stateSnapshot),reasonCodes:oo(n,o?.reasonCodes),publicSafe:!0}}function so(e){const t=m(e.budget)?e.budget:void 0,n=typeof t?.maxPayloadBytes=="number"&&Number.isFinite(t.maxPayloadBytes)?t.maxPayloadBytes:12*1024;return Math.max(1024,Math.min(n,12*1024))}function ao(e){return m(e)?{stableId:x(e.stableId)??"unknown",...m(e.source)?{source:e.source}:{},reasonCode:"budget_exceeded"}:{stableId:"unknown",reasonCode:"budget_exceeded"}}function cn(e){const t=Array.isArray(e)?e.filter(n=>typeof n=="string"):[];return t.includes("budget_exceeded")?t:[...t,"budget_exceeded"]}function co(e){const t=e.graphRetrieval;if(!m(t)||!Array.isArray(t.items))return e;const n=so(t);let r=[...t.items],o=Array.isArray(t.skipped)?[...t.skipped]:[],i=t;for(;Buffer.byteLength(JSON.stringify(i),"utf8")>n&&r.length>0;){const s=r.pop();o=[...o,ao(s)].slice(-32),i={...t,items:r,skipped:o,warnings:cn(t.warnings)}}return Buffer.byteLength(JSON.stringify(i),"utf8")>n&&(i={...t,query:typeof t.query=="string"?t.query.slice(0,240):t.query,items:[],skipped:[],warnings:cn(t.warnings)}),i===t?e:{...e,graphRetrieval:i}}function dn(e,t={}){const n=t.limitBytes??Vt,r=t.warningThresholdBytes??Math.floor(n*Bt),o=Se(e);if(o<n)return{body:e,degraded:!1,telemetry:st(e,o,["payload-within-limit"],{limitBytes:n,warningThresholdBytes:r})};let i={...e,stateSnapshot:Ln(e.stateSnapshot)},s=["payload-size-guardrail","state-degraded"],c=Se(i);c>=n&&(i={...i,stateSnapshot:co(i.stateSnapshot)},s=[...s,"graph-retrieval-budget-enforced"],c=Se(i));const p=st(i,c,s,{limitBytes:n,warningThresholdBytes:r});if(c>=n){const l=i.stateSnapshot.scope?.projectionMode;throw l==="yolo-story"||l==="yoloop-target"||l==="yoloop-session"||l==="yoloop-discovery"||l==="structural-required"?new rt(p):new nt(p)}return{body:i,degraded:!0,telemetry:p}}function un(e){const t=e.stateSnapshot.scope?.commandId??"resolved-command";return e.args!==void 0?t:`${t}:argsRef`}function uo(e){const t=Se(e);if(t<Xe)return t;const n=st(e,t,["payload-warning-threshold"]);return process.stderr.write(`[Neocortex] invoke payload near server limit: trigger=${un(e)} scope=${n.scope.kind} mode=${n.scope.projectionMode??n.scope.kind} payloadBytes=${n.payloadBytes} limit=${n.limitBytes} includedStories=${n.includedStories} omittedStories=${n.omittedStories} includedEpics=${n.includedEpics} omittedEpics=${n.omittedEpics} graphRetrieval.accepted=${n.graphRetrieval.accepted} graphRetrieval.itemCount=${n.graphRetrieval.itemCount} reasonCodes=${n.reasonCodes.join(",")||"none"}
|
|
10
|
+
`),t}function ln(e,t){process.stderr.write(`[Neocortex] invoke payload guardrail: trigger=${un(e)} scope.kind=${t.scope.kind} payloadBytes=${t.payloadBytes} limit=${t.limitBytes} includedStories=${t.includedStories} omittedStories=${t.omittedStories} includedEpics=${t.includedEpics} omittedEpics=${t.omittedEpics} graphRetrieval.accepted=${t.graphRetrieval.accepted} graphRetrieval.itemCount=${t.graphRetrieval.itemCount} reasonCodes=${t.reasonCodes.join(",")||"none"}
|
|
11
|
+
`)}async function lo(e){const t=Un(e.args,{platformTarget:e.platformTarget,environment:e.environment??process.env});if(t.action==="skipped")return{shouldContinue:!0,attachToRequest:po(t),metadata:pn(t)};const n=e.bootstrapper??Bn;let r;try{r=await n({projectRoot:e.projectRoot,env:e.environment??process.env,effectAuthority:e.effectAuthority})}catch{r={ok:!1,attempted:!0,installed:!1,started:!1,cached:!1,projectKey:"unknown",reasonCodes:[Vn.UNEXPECTED_ERROR],publicSummary:"runner scheduler bootstrap stopped unexpectedly.",publicSafe:!0}}const o=pn(t,r);if(r.ok)return{shouldContinue:!0,attachToRequest:!0,metadata:o};const i=o.reasonCodes.slice(0,5).join(",");return t.failurePolicy==="fail-open"?{shouldContinue:!0,attachToRequest:!0,metadata:{...o,failOpenWarning:!0},warning:`Runner auto-bootstrap warning (${i}); continuing fail-open for operator command.`}:{shouldContinue:!1,attachToRequest:!1,metadata:o,errorCode:"RUNNER_BOOTSTRAP_REQUIRED_FAILED",error:`Runner auto-bootstrap required but failed (${i}). Run neocortex-runner doctor or retry after resolving scheduler setup.`,exitCode:1}}function po(e){return!e.reasonCodes.includes(Mn.SKIPPED_NON_CONTINUITY_COMMAND)}function pn(e,t){return{schemaVersion:1,action:e.action,failurePolicy:e.failurePolicy,command:e.command,operation:e.operation,attempted:t?.attempted??!1,ok:t?.ok??!0,cached:t?.cached??!1,installed:t?.installed??!1,started:t?.started??!1,...t?.projectKey?{projectKey:t.projectKey}:{},reasonCodes:G([...e.reasonCodes,...t?.reasonCodes??[]]),publicSummary:t?.publicSummary??e.publicSummary,publicSafe:!0}}function G(e){return Array.from(new Set(e.map(t=>t.slice(0,120))))}function Ve(e,t,n){const r=Math.floor(e??t);return Number.isFinite(r)?Math.max(1,Math.min(n,r)):t}function Be(e,t){const n=process.env[e];if(!n)return t;const r=Number(n);return Number.isFinite(r)?r:t}function N(e,t=Ft){const n=typeof e=="string"&&e.trim().length>0?e.trim():"unknown",r=q(n,t),o=kr.test(r)?ce:r;return o.length<=t?o:`${o.slice(0,t)}\u2026[TRUNCATED:${o.length-t}]`}function at(e,t=Ft){if(!(typeof e!="string"||e.trim().length===0))return N(e,t)}function ct(e,t,n,r){const o=at(e?.targetId??t,120),i=e?.selectorKind??(o?ut(o):void 0),s=(e?.relatedJobIds??[]).map(c=>at(c,120)).filter(c=>!!c);return{schemaVersion:1,contractVersion:"continuity-v1",targetResolutionState:n,...i?{targetKind:i}:{},...o?{targetId:o}:{},...t?{targetJobId:N(t,120)}:{},...e?.jobId?{jobId:N(e.jobId,120)}:{},...e?.goalId?{goalId:N(e.goalId,120)}:{},...e?.loopId?{loopId:N(e.loopId,120)}:{},...s.length>0?{relatedJobIds:s}:{},relatedJobCount:s.length,reasonCodes:G(r.length>0?r:[O.OK]),publicSafe:!0}}function ie(e,t,n,r,o=[]){const i=(e?.redactions?.length??0)>0,s=e?i?"unsafe":n&&r===0?"empty":"available":"unavailable",c=at(t[t.length-1]?.eventId,120),p=o.length>0?o:s==="unavailable"?[O.WATCH_SNAPSHOT_UNAVAILABLE]:s==="empty"?[O.WATCH_NO_SUMMARIES_YET]:[O.OK];return{schemaVersion:1,contractVersion:"continuity-v1",snapshotStatus:s,...e?.generatedAt?{generatedAt:N(e.generatedAt,80)}:{},renderedSummaryCount:r,...c?{latestEventId:c}:{},reasonCodes:G(p),publicSafe:!0}}function ee(e,t,n,r,o=[],i){const s=r[r.length-1],c=n??s?.cursor,p=!!(c&&c!==t&&r.length>0),l=i??(p?"advanced":t||c?"unchanged":"not_started"),h=o.length>0?o:l==="advanced"?[O.WATCH_CURSOR_ADVANCED]:l==="unavailable"?[O.WATCH_EVIDENCE_UNAVAILABLE]:[O.WATCH_CURSOR_UNCHANGED];return{schemaVersion:1,contractVersion:"continuity-v1",cursorState:l,...e?{initialCursor:N(e,200)}:{},...t?{currentCursor:N(t,200)}:{},...c?{nextCursor:N(c,200)}:{},cursorAdvanced:p,...s?.eventId?{eventId:N(s.eventId,120)}:{},reasonCodes:G(h),publicSafe:!0}}function te(e){const t=e.targetEvidence;return{type:"watch_status",schemaVersion:1,contractVersion:"continuity-v1",recordType:"watch_status",command:"invoke",operation:"watch",watchStatus:e.watchStatus,active:e.active,...t?.targetResolutionState?{targetResolutionState:t.targetResolutionState}:{},...t?.targetKind?{targetKind:t.targetKind}:{},...t?.targetId?{targetId:t.targetId}:{},...t?{targetEvidence:t}:{},...e.snapshotEvidence?{snapshotEvidence:e.snapshotEvidence}:{},...e.cursorEvidence?{cursorEvidence:e.cursorEvidence}:{},...e.stopReason?{stopReason:e.stopReason}:{},reasonCodes:G([...e.reasonCodes??[],...t?.reasonCodes??[],...e.snapshotEvidence?.reasonCodes??[],...e.cursorEvidence?.reasonCodes??[]]),generatedAt:N(e.generatedAt??new Date().toISOString(),80),publicSafe:!0}}function fo(e){const t=e.targetKind&&e.targetId?`${e.targetKind}/${e.targetId}`:e.targetId??"[unresolved]",n=e.snapshotEvidence?.renderedSummaryCount??0,r=e.targetEvidence?.relatedJobCount??0,o=e.cursorEvidence?.cursorState??"unavailable",i=e.cursorEvidence?.currentCursor??"[none]",s=e.cursorEvidence?.nextCursor??"[none]",c=e.snapshotEvidence?.snapshotStatus??"not_requested",p=e.snapshotEvidence?.generatedAt??e.generatedAt;return[`[watch-status] ${e.targetResolutionState==="unresolved"||e.stopReason==="target_unresolved"?"unresolved-target":n===0&&(e.watchStatus==="waiting"||e.watchStatus==="active")?"no-new-summary":e.watchStatus==="stopped"?"stopped":"lifecycle"}`,`status=${e.watchStatus}`,`active=${e.active}`,`target=${t}`,`resolution=${e.targetResolutionState??"unavailable"}`,`relatedJobs=${r}`,`summaries=${n}`,`snapshot=${c}`,`generatedAt=${p}`,`cursor=${o}`,`current=${N(i,200)}`,`next=${N(s,200)}`,`advanced=${e.cursorEvidence?.cursorAdvanced??!1}`,`stop=${e.stopReason??"not_stopped"}`,`reasons=${e.reasonCodes.join(",")}`].join(" ")}function ne(e,t,n){if(t==="json"){n.write(JSON.stringify(e)+`
|
|
12
|
+
`);return}n.write(fo(e)+`
|
|
13
|
+
`)}function go(e,t,n){return{continuityInvokeWatch:{schemaVersion:1,contractVersion:"continuity-v1",command:"invoke",operation:"watch",watchStatus:e.watchStatus,stopReason:e.stopReason??"not_stopped",targetResolutionState:e.targetResolutionState,targetKind:e.targetKind,targetId:e.targetId,snapshotStatus:e.snapshotEvidence?.snapshotStatus,snapshotGeneratedAt:e.snapshotEvidence?.generatedAt,renderedSummaryCount:e.snapshotEvidence?.renderedSummaryCount??t,cursorState:e.cursorEvidence?.cursorState,cursorAdvanced:e.cursorEvidence?.cursorAdvanced,summariesEmitted:t,polls:n,statusRecord:e,publicSafe:!0}}}function se(e,t,n,r){return{status:e,summariesEmitted:t,polls:n,reasonCodes:r.reasonCodes,watchStatus:r.watchStatus,stopReason:r.stopReason,targetEvidence:r.targetEvidence,snapshotEvidence:r.snapshotEvidence,cursorEvidence:r.cursorEvidence,statusRecord:r,metadata:go(r,t,n),publicSafe:!0}}function ho(e){const t=e.reasonCode?` reason=${N(e.reasonCode,80)}`:"",n=e.goalId?` goal=${N(e.goalId,100)}`:"",r=e.loopId?` loop=${N(e.loopId,100)}`:"";return`[watch] ${N(e.createdAt,80)} event=${N(e.eventId,120)} job=${N(e.jobId,100)}${n}${r} execution=${N(e.executionId,120)}${t} -- ${N(e.publicSummary)}`}function mo(e){return{type:"processing_summary",source:"local_continuity_sqlite",eventId:N(e.eventId,120),jobId:N(e.jobId,100),...e.goalId?{goalId:N(e.goalId,100)}:{},...e.loopId?{loopId:N(e.loopId,100)}:{},executionId:N(e.executionId,120),...e.reasonCode?{reasonCode:N(e.reasonCode,80)}:{},createdAt:N(e.createdAt,80),publicSummary:N(e.publicSummary),publicSafe:!0}}function Io(e,t,n){if(t==="json"){n.write(JSON.stringify(mo(e))+`
|
|
14
|
+
`);return}n.write(ho(e)+`
|
|
15
|
+
`)}function dt(e){return Or.has(e.status)}function yo(e,t,n){if(t){const o=e.find(i=>i.jobId===t);return!!(o&&dt(o))}return n<=0?!1:e.filter(o=>!dt(o)).length===0}function _o(e,t,n,r){return n<r?!1:t?!e.some(o=>o.jobId===t&&!dt(o)):e.length===0}function Eo(e,t){return t?.aborted?Promise.resolve():new Promise(n=>{const r=setTimeout(o,e);function o(){clearTimeout(r),t?.removeEventListener("abort",o),n()}t?.addEventListener("abort",o,{once:!0})})}function Co(e){return e.includes($.MALFORMED)?"malformed":e.includes($.AMBIGUOUS)?"ambiguous":e.includes("watch-target-multiple")?"multiple":e.includes("watch-evidence-unsafe")?"unsafe":e.includes($.MISSING)||e.includes(U.TARGET_UNRESOLVED)?"unresolved":"unavailable"}function fn(e,t){const n=t?be(t):void 0,r=G([...e,U.TARGET_UNRESOLVED,O.WATCH_TARGET_UNRESOLVED]),o=ct(n,n?.targetId,Co(r),r),i=ie({generatedAt:new Date().toISOString()},[],!1,0,[O.WATCH_TARGET_UNRESOLVED]),s=ee(void 0,void 0,void 0,[],[O.WATCH_TARGET_UNRESOLVED],"unavailable");return te({watchStatus:"blocked",active:!1,targetEvidence:o,snapshotEvidence:i,cursorEvidence:s,stopReason:"target_unresolved",reasonCodes:r,generatedAt:i.generatedAt})}function So(e,t,n,r){const o=fn(e,hn(t));return ne(o,n,r),se("target-unresolved",0,0,o)}async function Ao(e){if(e.signal?.aborted){const E=ct(e.target??be(e.targetJobId),e.targetJobId,e.target??e.targetJobId?"resolved":"unresolved",[U.CANCELLED]),w=ie(void 0,[],!1,0),A=ee(e.initialCursor,e.initialCursor,e.initialCursor,[],[U.CANCELLED],"unavailable"),k=te({watchStatus:"stopped",active:!1,targetEvidence:E,snapshotEvidence:w,cursorEvidence:A,stopReason:"cancelled",reasonCodes:[U.CANCELLED]});return se("cancelled",0,0,k)}const t=e.target??be(e.targetJobId),n=e.targetJobId??t?.targetId,r=e.stdout??process.stdout;if(!t){const E=fn([$.MISSING,U.TARGET_UNRESOLVED]);return ne(E,e.format,r),se("target-unresolved",0,0,E)}const o=Ve(e.limit??Be("NEOCORTEX_INVOKE_WATCH_LIMIT",Tt),Tt,50),i=Math.max(50,Ve(e.pollIntervalMs??Be("NEOCORTEX_INVOKE_WATCH_POLL_INTERVAL_MS",Ot),Ot,6e4)),s=Ve(e.maxIdlePolls??Be("NEOCORTEX_INVOKE_WATCH_MAX_IDLE_POLLS",bt),bt,120),c=Ve(e.maxPolls??Be("NEOCORTEX_INVOKE_WATCH_MAX_POLLS",vt),vt,86400),p=e.sleep??Eo;let l=e.initialCursor,h=0,g=0,f=0;const u=ct(t,n,"resolved",[O.OK]),I={schemaVersion:1,contractVersion:"continuity-v1",snapshotStatus:"pending",renderedSummaryCount:0,reasonCodes:[O.WATCH_RENDER_PENDING],publicSafe:!0},_=ee(e.initialCursor,l,l,[],e.initialCursor?[O.WATCH_CURSOR_UNCHANGED]:[O.WATCH_NO_SUMMARIES_YET],e.initialCursor?"unchanged":"not_started");ne(te({watchStatus:"active",active:!0,targetEvidence:u,snapshotEvidence:I,cursorEvidence:_,stopReason:"not_stopped",reasonCodes:[O.OK]}),e.format,r);let S;try{S=await $n({projectRoot:e.projectRoot,strictReadOnly:e.strictReadOnly})}catch{const E=ie(void 0,[],!1,h,[O.WATCH_SNAPSHOT_UNAVAILABLE]),w=ee(e.initialCursor,l,l,[],[O.WATCH_EVIDENCE_UNAVAILABLE],"unavailable"),A=te({watchStatus:"blocked",active:!1,targetEvidence:u,snapshotEvidence:E,cursorEvidence:w,stopReason:"unavailable_evidence",reasonCodes:[U.STORE_UNAVAILABLE]});return ne(A,e.format,r),se("store-unavailable",h,f,A)}try{for(;!e.signal?.aborted&&f<c;){f+=1;const E=l,w=S.collectProcessingOutputSummaryCursor({...l?{cursor:l}:{},...t?{target:t}:{},...n?{jobId:n}:{},limit:o}),A=S.collectSnapshot({jobLimit:50,processingSummaryLimit:1}),k=A.jobs;if(w.summaries.length>0){for(const P of w.summaries)Io(P,e.format,r),h+=1;l=w.nextCursor??w.summaries[w.summaries.length-1]?.cursor??l,g=0}else l=w.nextCursor??l,g+=1;const F=ie(A,w.summaries,!0,w.summaries.length),L=ee(e.initialCursor,E,l,w.summaries,w.summaries.length>0?[O.WATCH_CURSOR_ADVANCED]:[O.WATCH_NO_SUMMARIES_YET]);if(ne(te({watchStatus:w.summaries.length>0?"polling":"waiting",active:!0,targetEvidence:u,snapshotEvidence:F,cursorEvidence:L,stopReason:"not_stopped",reasonCodes:w.summaries.length>0?[O.WATCH_CURSOR_ADVANCED]:[O.WATCH_NO_SUMMARIES_YET],generatedAt:A.generatedAt}),e.format,r),!w.hasMore&&yo(k,n,h)){const P=ie(A,w.summaries,!1,h,[U.COMPLETED]),j=ee(e.initialCursor,E,l,w.summaries,[U.COMPLETED],"exhausted"),V=te({watchStatus:"stopped",active:!1,targetEvidence:u,snapshotEvidence:P,cursorEvidence:j,stopReason:"not_stopped",reasonCodes:[U.COMPLETED],generatedAt:A.generatedAt});return ne(V,e.format,r),se("completed",h,f,V)}if(!w.hasMore&&_o(k,n,g,s)){const P=ie(A,w.summaries,!1,h,[O.WATCH_STOP_IDLE_LIMIT_REACHED]),j=ee(e.initialCursor,E,l,w.summaries,[O.WATCH_STOP_IDLE_LIMIT_REACHED],"exhausted"),V=te({watchStatus:"stopped",active:!1,targetEvidence:u,snapshotEvidence:P,cursorEvidence:j,stopReason:"idle_limit_reached",reasonCodes:[U.IDLE_TIMEOUT,O.WATCH_STOP_IDLE_LIMIT_REACHED],generatedAt:A.generatedAt});return ne(V,e.format,r),se("idle-timeout",h,f,V)}w.hasMore||await p(i,e.signal)}}catch{const E=ie(void 0,[],!1,h,[O.WATCH_SNAPSHOT_UNAVAILABLE]),w=ee(e.initialCursor,l,l,[],[O.WATCH_EVIDENCE_UNAVAILABLE],"unavailable"),A=te({watchStatus:"blocked",active:!1,targetEvidence:u,snapshotEvidence:E,cursorEvidence:w,stopReason:"unavailable_evidence",reasonCodes:[U.STORE_UNAVAILABLE]});return ne(A,e.format,r),se("store-unavailable",h,f,A)}finally{S.close()}if(e.signal?.aborted){const E=ie(void 0,[],!1,h,[U.CANCELLED]),w=ee(e.initialCursor,l,l,[],[U.CANCELLED],"unavailable"),A=te({watchStatus:"stopped",active:!1,targetEvidence:u,snapshotEvidence:E,cursorEvidence:w,stopReason:"cancelled",reasonCodes:[U.CANCELLED]});return ne(A,e.format,r),se("cancelled",h,f,A)}const C=ie(void 0,[],!1,h,[O.WATCH_STOP_MAX_POLLS_REACHED]),T=ee(e.initialCursor,l,l,[],[O.WATCH_STOP_MAX_POLLS_REACHED],"exhausted"),y=te({watchStatus:"stopped",active:!1,targetEvidence:u,snapshotEvidence:C,cursorEvidence:T,stopReason:"max_polls_reached",reasonCodes:[U.MAX_POLLS,O.WATCH_STOP_MAX_POLLS_REACHED]});return ne(y,e.format,r),se("max-polls",h,f,y)}function X(e){const t=e.trim().replace(/^@/,"").match(/^(job|goal|loop)-([JGL])(\d{3,})$/i);if(!t)return;const n=t[1].toLowerCase(),r=t[2].toUpperCase();if(!(n==="job"&&r!=="J"||n==="goal"&&r!=="G"||n==="loop"&&r!=="L"))return`${n}-${r}${t[3]}`}function ut(e){if(e.startsWith("job-J"))return"job";if(e.startsWith("goal-G"))return"goal";if(e.startsWith("loop-L"))return"loop"}function gn(e){const t=[],n=/(?:^|[\s"'([,{])@?(job-[Jj]\d{3,}|goal-[Gg]\d{3,}|loop-[Ll]\d{3,})(?=$|[\s"')\]},.;:!?])/g;let r;for(;(r=n.exec(e))!==null;){const o=X(r[1]);o&&t.push(o)}return G(t)}function hn(e){return gn(e)[0]}function be(e){const t=e?X(e):void 0;if(t){if(t.startsWith("job-J"))return{selectorKind:"job",targetId:t,jobId:t,publicSafe:!0};if(t.startsWith("goal-G"))return{selectorKind:"goal",targetId:t,goalId:t,publicSafe:!0};if(t.startsWith("loop-L"))return{selectorKind:"loop",targetId:t,loopId:t,publicSafe:!0}}}function lt(e){return G(e.filter(t=>typeof t=="string").map(t=>X(t)).filter(t=>!!t?.startsWith("job-J")))}function Ro(e,t){const n=lt(t).filter(r=>r!==e.targetId&&r!==e.jobId);return n.length>0?{...e,relatedJobIds:n}:e}function wo(e){if(!e)return;const t=m(e.target)?e.target:void 0,n=typeof e.selectorKind=="string"?e.selectorKind:typeof t?.selectorKind=="string"?t.selectorKind:void 0,r=typeof e.targetId=="string"?X(e.targetId):typeof t?.targetId=="string"?X(t.targetId):typeof e.targetJobId=="string"?X(e.targetJobId):void 0,o=be(r);if(!o||n&&n!==o.selectorKind)return;const i=Array.isArray(e.relatedJobIds)?e.relatedJobIds:Array.isArray(t?.relatedJobIds)?t.relatedJobIds:void 0,s=lt([...i??[],e.jobId,t?.jobId,e.targetJobId,t?.targetJobId]).filter(c=>c!==o.targetId&&c!==o.jobId);return{...o,...typeof(e.jobId??t?.jobId)=="string"?{jobId:X(e.jobId??t?.jobId)??o.jobId}:{},...typeof(e.goalId??t?.goalId)=="string"?{goalId:X(e.goalId??t?.goalId)??o.goalId}:{},...typeof(e.loopId??t?.loopId)=="string"?{loopId:X(e.loopId??t?.loopId)??o.loopId}:{},...s.length>0?{relatedJobIds:s}:{}}}function mn(e){const t=e.trim().split(/\s+/).filter(Boolean),n=t[0]?.replace(/^\*/,"").toLowerCase(),r=t[1]?.replace(/^--/,"").toLowerCase();return(n==="jobs"||n==="job"||n==="continuity-jobs"||n==="61")&&r==="watch"}const B=Object.freeze({ACTIVE:"command-level-watch-active",INACTIVE:"command-level-watch-inactive",DUPLICATE:"command-level-watch-duplicate",AMBIGUOUS:"command-level-watch-ambiguous",QUOTED:"command-level-watch-quoted",MALFORMED:"command-level-watch-malformed",NON_FINAL:"command-level-watch-non-final",UNRESOLVED:"command-level-watch-unresolved",UNSUPPORTED:"command-level-watch-unsupported",TARGET_INVALID:"command-level-watch-target-invalid"}),To=new Set(["create","start","resume"]),bo=new Set(["create","resume","run-once"]);function pt(e,t,n,r,o){return{schemaVersion:1,contractVersion:"continuity-v1",...n?{command:n}:{},...r?{operation:r}:{},active:e,...o?{watchToken:o}:{},reasonCodes:G(t),serverHeldStream:!1,allJobsPolling:!1,targetResolution:e?"required-after-dispatch":"inactive",publicSafe:!0}}function H(e,t=[],n,r){const o=t.length>0?t:[B.INACTIVE];return{args:e,watch:!1,reasonCodes:o,metadata:pt(!1,o,n,r),publicSafe:!0}}function vo(e){const t=e.trim().split(/\s+/).filter(Boolean),n=t.slice(2).filter(i=>i==="--watch").length;if(n===0)return H(e,[],"jobs","watch");if(n!==1)return H(e,[B.AMBIGUOUS],"jobs","watch");const r=t.filter((i,s)=>s<2||i!=="--watch").join(" ");return mn(r)?r.trim().split(/\s+/).filter(Boolean).slice(2).length!==1?H(e,[B.AMBIGUOUS],"jobs","watch"):hn(r)?{args:r,watch:!0,reasonCodes:[B.ACTIVE],metadata:pt(!0,[B.ACTIVE],"jobs","watch"),publicSafe:!0}:H(e,[B.TARGET_INVALID],"jobs","watch"):H(e,[B.UNSUPPORTED],"jobs","watch")}function Oo(e){const t=[];let n=!1,r=0;for(;r<e.length;){for(;r<e.length&&/\s/.test(e[r]);)r+=1;if(r>=e.length)break;const o=r;let i="",s=!1,c=null;for(;r<e.length;){const p=e[r];if(c){if(p===c){s=!0,c=null,r+=1;continue}if(p==="\\"&&r+1<e.length){i+=e[r+1],r+=2;continue}i+=p,r+=1;continue}if(/\s/.test(p))break;if(p==='"'||p==="'"){s=!0,c=p,r+=1;continue}i+=p,r+=1}c&&(n=!0),t.push({value:i,start:o,end:r,quoted:s})}return{tokens:t,malformed:n}}function No(e){if(!e||e.quoted)return;const t=e.value.replace(/^\*/,"").toLowerCase();return t==="goal"||t==="loop"?t:void 0}function ko(e,t){if(!e||e==="jobs"||!t||t.quoted)return;const n=t.value.toLowerCase();return(e==="goal"?To:bo).has(n)?n:void 0}function Lo(e){return!e.quoted&&e.value!=="--watch"&&e.value.toLowerCase().startsWith("--watch")}function xo(e){const{tokens:t,malformed:n}=Oo(e),r=No(t[0]),o=ko(r,t[1]);if(n)return H(e,[B.MALFORMED],r,o);const i=t.filter(f=>f.value==="--watch"&&!f.quoted),s=t.filter(f=>f.value==="--watch"&&f.quoted),c=t.filter(Lo);if(!(i.length>0||s.length>0||c.length>0))return H(e,[],r,o);if(i.length>1)return H(e,[B.DUPLICATE],r,o);if(i.length===1&&(s.length>0||c.length>0))return H(e,[B.AMBIGUOUS],r,o);if(s.length>0)return H(e,[B.QUOTED],r,o);if(c.length>0)return H(e,[B.MALFORMED],r,o);const l=i[0];if(!l)return H(e,[],r,o);if(t[t.length-1]!==l)return H(e,[B.NON_FINAL],r,o);if(!r||!o)return H(e,[B.UNRESOLVED],r,o);const h=`${e.slice(0,l.start)}${e.slice(l.end)}`.trim(),g={literal:"--watch",position:"final",start:l.start,end:l.end,quoted:!1,publicSafe:!0};return{args:h,watch:!0,reasonCodes:[B.ACTIVE],metadata:pt(!0,[B.ACTIVE],r,o,g),publicSafe:!0}}function Do(e){return mn(e)?vo(e):xo(e)}function Po(e){return Array.isArray(e)?e.filter(t=>typeof t=="string"&&Nr.has(t)):[]}function Ae(e){return{disabled:!0,reasonCodes:G(e.length>0?e:[$.MISSING])}}function ft(e,t,n=[],r){const o=be(t);if(o)return{source:e,target:Ro(o,n),targetJobId:o.targetId,...r?{initialCursor:r}:{},serverHeldStream:!1}}function jo(e){const t=new Map;for(const n of e){const r=`${n.target.selectorKind}:${n.target.targetId}`,o=t.get(r);if(!o){t.set(r,n);continue}const i=G([...o.target.relatedJobIds??[],...n.target.relatedJobIds??[]]);t.set(r,{...o,target:i.length>0?{...o.target,relatedJobIds:i}:o.target,initialCursor:o.initialCursor??n.initialCursor})}return Array.from(t.values())}function pe(e,t,n,r){return{source:e,hasEvidence:t,candidates:jo(n.filter(o=>!!o)),...r&&r.length>0?{disabledReasonCodes:G(r)}:{}}}function Mo(e,t){return e.target.selectorKind===t.target.selectorKind&&e.target.targetId===t.target.targetId}function ve(e,t){const n=G(e.filter(r=>typeof r=="string").map(r=>X(r)).filter(r=>!!r));if(t){const r=n.find(o=>ut(o)===t);if(r)return r}return n[0]}function $e(e,t){return G(e.filter(n=>typeof n=="string").map(n=>X(n)).filter(n=>!!n)).find(n=>ut(n)===t)}function Uo(e){const t=m(e?.continuity)?e.continuity:void 0,n=m(t?.jobs)?t.jobs:void 0,r=m(n?.watcher)?n.watcher:void 0,o=Po(r?.reasonCodes??n?.reasonCodes);if(!r)return pe("watcher-metadata",o.length>0,[],o);if(r.active===!1||o.length>0)return pe("watcher-metadata",!0,[],o.length>0?o:[$.MALFORMED]);if(r.serverHeldStream!==!1)return pe("watcher-metadata",!0,[],[$.SERVER_HELD_STREAM]);const i=wo(r);if(!i)return pe("watcher-metadata",!0,[],[$.MISSING]);const s=typeof r.initialCursor=="string"?r.initialCursor:void 0;return pe("watcher-metadata",!0,[{source:"watcher-metadata",target:i,targetJobId:i.targetId,...s?{initialCursor:s}:{},serverHeldStream:!1}])}function In(e,t){const n=m(e.loopJobPlan)?e.loopJobPlan:void 0,r=m(n?.metadata)?n.metadata:void 0,o=m(e.metadata)?e.metadata:void 0,s=(t==="goal"?ve([e.goalId,e.targetGoalId,e.campaignId,e.jobId,e.targetJobId,o?.goalId,o?.campaignId,o?.jobId],"goal"):ve([e.loopId,e.targetLoopId,e.jobId,e.targetJobId,o?.loopId,o?.jobId,r?.loopId,r?.jobId],"loop"))??ve([e.jobId,e.targetJobId,o?.jobId,r?.jobId]);return ft("goal-loop-continuity-metadata",s,[e.jobId,e.targetJobId,o?.jobId,r?.jobId])}function Vo(e){const t=m(e?.continuity)?e.continuity:void 0,n=m(t?.goal)?t.goal:void 0,r=m(t?.loop)?t.loop:void 0,o=[n?In(n,"goal"):void 0,r?In(r,"loop"):void 0],i=!!(n||r);return pe("goal-loop-continuity-metadata",i,o,i&&o.every(s=>!s)?[$.MISSING]:void 0)}function Bo(e){return Array.isArray(e)?e.filter(m):m(e)?Array.isArray(e.operationLogs)?e.operationLogs.filter(m):m(e.operationLog)?[e.operationLog]:Array.isArray(e.operations)?[e]:[]:[]}function yn(e,t){const n=m(t.metadata)?t.metadata:void 0,r=$e([t.goalId,t.targetGoalId,t.campaignId,n?.goalId,n?.campaignId,t.jobId,n?.jobId],"goal"),o=$e([t.loopId,t.targetLoopId,n?.loopId,t.jobId,n?.jobId],"loop"),i=ve([t.jobId,t.targetJobId,n?.jobId],"job"),s=r??o??i;if(!s)return;const c=e.get(s)??{targetId:s,relatedJobIds:[]};c.relatedJobIds.push(...lt([i,t.jobId,t.targetJobId,n?.jobId])),e.set(s,c)}function $o(e){const t=m(e.metadata)?e.metadata:void 0;return!!($e([e.goalId,e.targetGoalId,e.campaignId,t?.goalId,t?.campaignId,e.jobId,t?.jobId],"goal")??$e([e.loopId,e.targetLoopId,t?.loopId,e.jobId,t?.jobId],"loop"))}function Wo(e){const t=m(e.metadata)?e.metadata:void 0;return!!ve([e.goalId,e.targetGoalId,e.campaignId,e.loopId,e.targetLoopId,e.jobId,e.targetJobId,t?.goalId,t?.campaignId,t?.loopId,t?.jobId])}function _n(e,t){const n=[];for(const s of["metadata","job","event","receipt","processingOutputSummary"]){const c=t[s];m(c)&&n.push(c)}const r=m(t.event)?t.event:void 0;m(r?.metadata)&&n.push(r.metadata),m(r?.processingOutputSummary)&&n.push(r.processingOutputSummary);const o=m(t.receipt)?t.receipt:void 0;m(o?.metadata)&&n.push(o.metadata);const i=n.some(Wo);for(const s of n)yn(e,s);(!i||$o(t))&&yn(e,t)}function Ho(e){const t=Bo(e?.continuityStateUpdate),n=new Map;for(const o of t){_n(n,o);const i=Array.isArray(o.operations)?o.operations.filter(m):[];for(const s of i)_n(n,s)}const r=Array.from(n.values()).map(o=>ft("continuity-state-update-operation-log",o.targetId,o.relatedJobIds));return pe("continuity-state-update-operation-log",t.length>0,r,t.length>0&&r.every(o=>!o)?[$.MISSING]:void 0)}function Fo(e){const t=gn(e);return pe("explicit-args",t.length>0,t.map(n=>ft("explicit-args",n)))}function Go(e,t){const n=[Uo(e),Vo(e),Ho(e),Fo(t)];for(let r=0;r<n.length;r+=1){const o=n[r];if(!o.hasEvidence)continue;if(o.disabledReasonCodes&&o.disabledReasonCodes.length>0)return Ae(o.disabledReasonCodes);if(o.candidates.length!==1)return Ae([o.candidates.length>1?$.AMBIGUOUS:$.MISSING]);const i=o.candidates[0];for(const s of n.slice(r+1)){if(!s.hasEvidence)continue;if(s.disabledReasonCodes&&s.disabledReasonCodes.length>0)return Ae(s.disabledReasonCodes);if(s.candidates.length>1)return Ae([$.AMBIGUOUS]);const c=s.candidates[0];if(c&&!Mo(i,c))return Ae([$.CONFLICT])}return{target:i.target,targetJobId:i.targetJobId,...i.initialCursor?{initialCursor:i.initialCursor}:{},source:i.source,serverHeldStream:!1}}return Ae([$.MISSING])}async function En(e,t,n,r={}){const i=await it(e,"/api/v1/invoke",t,n,r);if(i.networkFailure||!i.response)return{ok:!1,status:0,error:"Network error after bounded retries"};const{response:s,text:c,parsed:p}=i;try{if(!s.ok)return{ok:!1,status:s.status,error:Object.keys(p).length>0?`${p.error_code??"ERROR"}: ${p.message??c}`:`HTTP ${s.status}: ${c}`,errorBody:Object.keys(p).length>0?p:void 0};const l=p,h=s.headers.get("X-Client-Version-Warning");return h&&!rn&&(rn=!0,process.stderr.write(`
|
|
16
|
+
[Neocortex] ${h}
|
|
17
|
+
|
|
18
|
+
`)),{ok:!0,status:s.status,data:l}}catch(l){return{ok:!1,status:0,error:(l instanceof Error?l.message:String(l)).includes("abort")?`Request timeout after ${Mt/1e3}s`:"Network error: invalid response"}}}async function Jo(e,t,n,r={}){const o=await it(e,"/api/v1/invoke/epic-claims/acknowledge",{...n,registryVersion:he,registryChecksum:ge},t,r);return!!o.response?.ok&&o.parsed.status==="ok"&&o.parsed.claimOutcome===n.status}async function zo(e,t,n,r,o,i={}){if(!o)return 0;const s=xe(e);let c=0;for(const[p,l]of Object.entries(s.operations))!l.claimId||!l.epicId||!t.epics?.[l.epicId]||!await Jo(n,r,{claimId:l.claimId,projectId:o,epicId:l.epicId,status:"materialized"},i)||(wr(e,p),c+=1);return c}function Yo(e,t){const n=t.state.pendingContinuationAuthorities,r=t.state.continuationSession;if(t.state.continuationPolicy!=="p205-finite-resume-v2"||n?.length!==1||!r)return;const o=n[0],i=o.certificate,s=i?.expectedTransition;if(o.storyIds!=="[CIRCULAR]"||i?.rank!=="[CIRCULAR]"||s?.selectedStoryIds!=="[CIRCULAR]")return;const c=typeof r.epicId=="string"?r.epicId:"",p=e.epics[c],l=Array.isArray(s.storyLifecycle)?s.storyLifecycle:[],h=l.length===1&&typeof l[0]?.storyId=="string"?l[0].storyId:"",f=e.stories[h]?.checkpoint;if(!p||p.branch_mode!=="epic"||typeof p.execution_branch!="string"||typeof p.origin_branch!="string"||p.branch_lease!==void 0&&p.branch_lease!==null||!f||f.qaVerdict!=="passed"||f.reviewVerdict!=="approved"||!Array.isArray(f.receiptRefs))return;const I=(Array.isArray(p.stories)?p.stories.filter(_=>typeof _=="string"):[]).find(_=>{const S=e.stories[_];return!S||["done","completed","merged"].includes(String(S.status))?!1:(Array.isArray(S.depends_on)?S.depends_on.filter(T=>typeof T=="string"):[]).every(T=>["done","completed","merged"].includes(String(e.stories[T]?.status)))});if(I)return{epicId:c,expectedNextStoryId:I,branchMode:"epic",executionBranch:p.execution_branch,originBranch:p.origin_branch,branchLeaseReleased:!0,checkpoint:{schemaVersion:1,storyId:f.storyId,epicId:f.epicId,branch:f.branch,baseSha:f.baseSha,headSha:f.headSha,receiptRefs:[...f.receiptRefs],qaVerdict:"passed",reviewVerdict:"approved"}}}async function Ko(e){let t;try{if(t=e.inputEnvelope??ze(e.inputSource??"args",e.args),Zn(t),t.rawArgs!==e.args)throw new Error("INVOKE_INPUT_ENVELOPE_ARGUMENT_CONFLICT")}catch{return{success:!1,error:"INVOCATION_MALFORMED_INPUT: explicit input integrity could not be verified.",errorCode:"INVOCATION_MALFORMED_INPUT",metadata:{invocationInput:{reason:"input-integrity-conflict",remediation:"Retry with exactly one of --args, --stdin or --args-file.",publicSafe:!0}},exitCode:1}}const n=t.rawArgs,r=nr(t),o=vr(n);if(o.outcome!=="resolved"){const a=tr(o,"client"),d=o.outcome==="malformed_input"?o.reason==="input_limit"||o.reason==="token_limit"||o.reason==="token_size_limit"?"input-limit-exceeded":o.reason==="invalid_control"||o.reason==="invalid_surrogate"?"invalid-control-character":o.reason==="unterminated_quote"||o.reason==="trailing_escape"||o.reason==="unsupported_escape"?"unterminated-quote":void 0:void 0,v=d?{code:"INVOCATION_MALFORMED_INPUT",reason:d,source:t.source,byteLength:t.byteLength,remediation:d==="input-limit-exceeded"?"Reduce the explicit command input or split the requested work into bounded invocations.":d==="invalid-control-character"?"Remove invalid control characters and retry with valid UTF-8 text.":"Close quotes and escapes, or use --stdin/--args-file for multiline content."}:void 0;return{success:!1,error:`INVOCATION_${o.outcome.toUpperCase()}`,errorCode:`INVOCATION_${o.outcome.toUpperCase()}`,metadata:{invocationAdmission:a,...v?{invocationInput:v}:{}},exitCode:1}}const i=Ze(e.projectRoot),s=o.selection.commandId,c=vn.find(a=>a.id===s),p=c?.subcommands.find(a=>a.id===o.selection.operationId),l=p?p.policy.strictReadOnly==="allow":c?.policy.strictReadOnly==="allow",h=s==="diagnose";let g;try{g=qn({invocationId:Ge(),intent:e.strictReadOnly||h?{schemaVersion:1,policy:zn,registryVersion:he,registryChecksum:ge}:void 0,registryVersion:he,registryChecksum:ge,registryAllowsStrict:l,requestCanonicalBytes:JSON.stringify({command:s})})}catch(a){if(a instanceof Ee)return{success:!1,error:a.code,errorCode:a.code,exitCode:1};throw a}{g.beginProjection();for(const a of Lt)g.project(a);for(const a of Yn)g.project(a);g.seal()}const f=g.mode==="strict";if(s==="create-epic")try{const a=cr(i);if(a&&a!=="finalized")return{success:!1,error:'PROJECT_IDENTITY_MIGRATION_INCOMPLETE: retry `neocortex-client invoke --args "*migrate-project-id"` before create-epic.',errorCode:"PROJECT_IDENTITY_MIGRATION_INCOMPLETE",metadata:{projectIdentityMigration:{phase:a,publicSafe:!0}},exitCode:1}}catch(a){const d=a instanceof Ye?a.code:"PROJECT_IDENTITY_MIGRATION_STATE_CORRUPT";return{success:!1,error:d,errorCode:d,exitCode:1}}const u=Fn({cwd:i,env:e.environment??process.env,targetFlag:e.platformTarget}).targetId;s!=="migrate-project-id"&&g.execute({phase:"client-preflight",domain:"client-persistence",category:"first-run-marker",operation:"create"},()=>br(),()=>{});const I=Xr(g),_=(e.serverUrl??I?.serverUrl??On).replace(/\/+$/,"");if(s==="migrate-project-id"){const a=await dr(_);if(!a.supported)return{success:!1,error:"PROJECT_IDENTITY_MIGRATION_CAPABILITY_UNAVAILABLE: the server did not advertise the versioned migration capability; no local state was changed.",errorCode:"PROJECT_IDENTITY_MIGRATION_CAPABILITY_UNAVAILABLE",metadata:{projectIdentityMigrationCapability:a},exitCode:1};const d=[];let v;try{v=ar(i)}catch(M){const ae=M instanceof Ye?M.code:"PROJECT_IDENTITY_MIGRATION_PREPARE_FAILED";return{success:!1,error:ae,errorCode:ae,exitCode:1}}d.push(Ce({phase:"prepare",outcome:v.changed&&v.document.phase==="prepared"?"prepared":"retry",floor:v.document.legacyEpicFloor,licenseId:"local-client",projectId:v.document.projectId}));const re=en(i);if(re.config.project_id!==v.document.projectId)return{success:!1,error:"PROJECT_IDENTITY_MIGRATION_STATE_DRIFT",errorCode:"PROJECT_IDENTITY_MIGRATION_STATE_DRIFT",metadata:{invocationDiagnostics:d},exitCode:1};const He=await nn(_,I?.licenseKey,g);if(!He)return{success:!1,error:"Not authenticated. Visit https://neocortex.sh/portal/login to get your license key, then run: neocortex activate YOUR-LICENSE-KEY",errorCode:"NOT_CONFIGURED",metadata:{invocationDiagnostics:d},exitCode:2};let ht;try{ht=Rt(e.args.trim(),re)}catch(M){const ae=M instanceof wt?M.code:"PROJECT_IDENTITY_MIGRATION_PROJECTION_FAILED";return{success:!1,error:ae,errorCode:ae,metadata:{invocationDiagnostics:d},exitCode:1}}let Fe={args:n,projectRoot:i.replace(Ne(),"~"),stateSnapshot:ht,platformTarget:u,projectId:v.document.projectId,projectIdentityMigration:v.request,inputEvidence:r,idempotencyKey:v.document.operationId,registryVersion:he,registryChecksum:ge};try{Fe=dn(Fe).body}catch(M){if(M instanceof nt||M instanceof rt)return{success:!1,error:M.message,errorCode:M.code,metadata:{invokePayload:M.telemetry,invocationDiagnostics:d},exitCode:1};throw M}const oe=await kt("invoke-query",()=>En(_,Fe,He.token,{refreshToken:()=>He.client.forceRefresh()}));if(!oe.ok||!oe.data)return d.push(Ce({phase:"seed",outcome:"rejected",floor:v.document.legacyEpicFloor,licenseId:"local-client",projectId:v.document.projectId})),{success:!1,error:q(oe.error??"PROJECT_IDENTITY_MIGRATION_REMOTE_FAILED",me),errorCode:typeof oe.errorBody?.error_code=="string"?oe.errorBody.error_code:"PROJECT_IDENTITY_MIGRATION_REMOTE_FAILED",metadata:{invocationDiagnostics:d},exitCode:oe.status===401?2:1};const K=oe.data.metadata?.projectIdentityMigration;try{er(K),d.push(Ce({phase:"seed",outcome:K.status,floor:K.acceptedLegacyFloor,licenseId:"local-client",projectId:K.projectId})),ir(i,K),d.push(Ce({phase:"remote-acknowledged",outcome:K.status,floor:K.acceptedLegacyFloor,licenseId:"local-client",projectId:K.projectId})),sr(i,K),d.push(Ce({phase:"finalize",outcome:"finalized",floor:K.acceptedLegacyFloor,licenseId:"local-client",projectId:K.projectId}))}catch(M){d.push(Ce({phase:"reconcile",outcome:"rejected",floor:v.document.legacyEpicFloor,licenseId:"local-client",projectId:v.document.projectId}));const ae=M instanceof Ye?M.code:M instanceof Error?M.message:"PROJECT_IDENTITY_MIGRATION_RECEIPT_INVALID";return{success:!1,error:ae,errorCode:ae,metadata:{invocationDiagnostics:d},exitCode:1}}return g.complete(),{success:!0,instructions:oe.data.instructions,metadata:{...oe.data.metadata,invocationDiagnostics:d},exitCode:0}}try{const{normalizeYoloopTargetArgs:a}=await import("../yoloop/target-normalization.js"),d=a(e.args,{projectRoot:i});if(!d.ok)return process.stderr.write(`${d.message} reason=${d.reasonCode}
|
|
19
|
+
`),{success:!1,error:d.message,exitCode:1};d.changed&&(e={...e,args:d.args},process.stderr.write(`[Neocortex] yoloop target normalized: ${d.reasonCodes.join(",")}
|
|
19
20
|
`))}catch{const a="INVALID_YOLOOP_TARGET: yoloop target normalization was unavailable; no request was sent.";return process.stderr.write(`${a}
|
|
20
|
-
`),{success:!1,error:a,exitCode:1}}
|
|
21
|
-
`),{success:!1,error:
|
|
22
|
-
`),{success:!1,error:
|
|
23
|
-
`),
|
|
24
|
-
`)}}
|
|
25
|
-
`)
|
|
26
|
-
`)}
|
|
27
|
-
`)}try{const{
|
|
28
|
-
`)}});
|
|
29
|
-
`)}try{
|
|
30
|
-
`)}
|
|
31
|
-
`)}const
|
|
32
|
-
`)}
|
|
33
|
-
`),{success:!
|
|
34
|
-
`)
|
|
35
|
-
`)
|
|
36
|
-
`),{success:!1,error:
|
|
37
|
-
`),{success:!1,error:
|
|
21
|
+
`),{success:!1,error:a,exitCode:1}}const S=Zt(s);if(S)try{Jr(i)}catch(a){const d=a instanceof le?a.reasonCode:"git-lifecycle-state-corrupt";return process.stderr.write(`[Neocortex] ${d}. No request was sent; repair the canonical project state and retry.
|
|
22
|
+
`),{success:!1,error:d,errorCode:"GIT_LIFECYCLE_STATE_INVALID",exitCode:1}}try{g.execute({phase:"client-preflight",domain:"client-persistence",category:"state-repair",operation:"update"},()=>Pn(i,{args:e.args,canonicalCommandId:s}),()=>{})}catch(a){if(a instanceof jn)return process.stderr.write(`${a.message}
|
|
23
|
+
`),{success:!1,error:a.message,exitCode:1};const d=a instanceof Error?a.message:String(a);return process.stderr.write(`[Neocortex] state.json repair stopped unexpectedly: ${d}. No request was sent; inspect .neocortex/state.json and rerun.
|
|
24
|
+
`),{success:!1,error:d,exitCode:1}}let C;try{const a=await zr(i,e.args,s);C=en(i,{epicAware:S,p205Authorities:a})}catch(a){const d=a instanceof le?a.reasonCode:"git-lifecycle-state-corrupt";return process.stderr.write(`[Neocortex] ${d}. No request was sent; repair the canonical project state/runtime sidecar and retry.
|
|
25
|
+
`),{success:!1,error:d,errorCode:"GIT_LIFECYCLE_STATE_INVALID",exitCode:1}}try{const{maybeAutoResolveYoloopArgs:a}=await import("../yoloop/invoke-hooks.js"),d={args:e.args,projectRoot:i,logger:{info:v=>process.stderr.write(`${v}
|
|
26
|
+
`),warn:v=>process.stderr.write(`${v}
|
|
27
|
+
`)}};a(d),d.args!==e.args&&(e={...e,args:d.args})}catch(a){const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] Auto-resolve hook (P121.05) failed: ${d}. Proceeding with raw args.
|
|
28
|
+
`)}try{const{readYoloopForRequest:a}=await import("../yoloop/invoke-hooks.js"),d=await a(e.args,i);if(d){const v=Yo(C,d);C.yoloop=v?{...d,continuationRecoveryEvidence:v}:d}}catch{}try{const{readContinuityForRequest:a}=await import("../continuity/invoke-hooks.js"),d=await a(e.args,i,void 0,g);d&&(C.continuity=d)}catch(a){if(a instanceof Ee)return{success:!1,error:a.code,errorCode:a.code,exitCode:1};const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] continuity snapshot hook failed: ${d}. Proceeding without continuity state.
|
|
29
|
+
`)}try{const{maybeRunDiscoveryHook:a}=await import("../yoloop/invoke-hooks.js");await a({args:e.args,projectRoot:i,stateSnapshot:C,featureFlag:process.env.YOLOOP_AUTO_DISCOVERY!=="off",logger:{warn:d=>{console.warn(d)},info:d=>{console.error(d)}}})}catch(a){const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] discovery hook failed: ${d}. Proceeding without enrichment.
|
|
30
|
+
`)}try{const{readArchitecturePolicy:a}=await import("../policy/architecture-policy.js"),d=await a(i);d&&(C.architecture_policy=d)}catch(a){const d=a instanceof Error?a.message:String(a);console.warn(`[Neocortex] architecture-policy hook failed: ${d}. Proceeding without policy.`)}try{const a=/^(1|true|on|yes)$/i.test(process.env.NEOCORTEX_GRAPH_RETRIEVAL??""),{maybeRunGraphRetrievalHook:d}=await import("../yoloop/invoke-hooks.js"),v=await d({args:e.args,projectRoot:i,featureFlag:a,logger:{warn:re=>process.stderr.write(`${re}
|
|
31
|
+
`)}});v.applied&&v.metadata&&(C.graphRetrieval=v.metadata)}catch(a){const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] graph retrieval hook failed: ${d}. Proceeding without enrichment.
|
|
32
|
+
`)}try{if(xr(e.args)){const{collectProjectEvidence:a}=await import("../evidence/collector.js"),d=a({projectRoot:i});(d.evidence.length>0||d.exclusions.length>0)&&(C.projectEvidence=d)}}catch(a){const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] project evidence collection failed: ${d}. Proceeding without local project evidence.
|
|
33
|
+
`)}try{const a=await g.executeAsync({phase:"client-preflight",domain:"client-persistence",category:"checkpoint-consume",operation:"consume"},async()=>{const{readAndConsumeCheckpoint:d}=await import("../checkpoint/index.js");return d(i)},async()=>{});a&&(C.implementCheckpoint=a)}catch(a){const d=a instanceof Error?a.message:String(a);process.stderr.write(`[Neocortex] checkpoint hook failed: ${d}. Proceeding without checkpoint.
|
|
34
|
+
`)}const T=I?.licenseKey?new Je({cacheDir:qe,passphrase:I.licenseKey,strictReadOnly:f}):null,y=n.trim();if(!y&&T){const a=await g.executeAsync({phase:"client-preflight",domain:"client-persistence",category:"auth-cache",operation:"update"},()=>Yr(T),async()=>null);if(a)return g.complete(),{success:!0,instructions:a.instructions,metadata:a.metadata,exitCode:0}}const E=await nn(_,I?.licenseKey,g);if(!E){const a=I&&!I.licenseKey?" This may be caused by a machine fingerprint change (e.g., hardware or hostname change).":"";try{const d=At(),v=Ct("NOT_CONFIGURED",d);v&&process.stderr.write(St(v,d))}catch{}return{success:!1,error:`Not authenticated.${a} Visit https://neocortex.sh/portal/login to get your license key, then run: neocortex activate YOUR-LICENSE-KEY`,exitCode:2}}const w=C.config.project_id;try{await g.executeAsync({phase:"client-preflight",domain:"client-persistence",category:"pending-claim",operation:"update"},()=>zo(i,C,_,E.token,w,{refreshToken:()=>E.client.forceRefresh()}),async()=>0)}catch{}const A=qo(y);if(A&&!h)try{const a=await E.tierClient.preFlightCheck(A);if(!a.allowed)return process.stderr.write(`[neocortex] ${a.message}
|
|
35
|
+
`),{success:!1,error:a.message??"Trigger not available on your plan",exitCode:1}}catch{}const k=await lo({args:y,projectRoot:i,platformTarget:u,environment:e.environment??process.env,bootstrapper:e.runnerBootstrapper,effectAuthority:g});if(k.attachToRequest&&(C.runnerBootstrap=k.metadata),k.warning&&process.stderr.write(`[Neocortex] ${k.warning}
|
|
36
|
+
`),!k.shouldContinue)return k.error&&process.stderr.write(`[Neocortex] ${k.error}
|
|
37
|
+
`),{success:!1,error:k.error??"Runner auto-bootstrap required but failed.",errorCode:k.errorCode,exitCode:k.exitCode??1};let F;try{const a=xn(y,C);if(a&&!a.ok){const d=`${a.code}: structural projection failed closed; select a valid target or repair the dependency DAG.`;return process.stderr.write(`${d}
|
|
38
|
+
`),{success:!1,error:d,errorCode:a.code,metadata:{stateProjection:a,publicSafe:!0},exitCode:1}}F=a?.snapshot??Rt(y,C)}catch(a){if(a instanceof wt){const d=`${a.code}: structural projection failed closed; select a valid target or repair the dependency DAG.`;return process.stderr.write(`${d}
|
|
39
|
+
`),{success:!1,error:d,errorCode:a.code,metadata:{structuralProjection:{...a.publicDetails,publicSafe:!0}},exitCode:1}}throw a}const L=_t(y),P=w;if(L==="create-epic"&&!P){const a='EPIC_PROJECT_ID_REQUIRED: run `neocortex-client invoke --args "*migrate-project-id"` and retry create-epic. No repository checkout or database credentials are required.';return process.stderr.write(`${a}
|
|
40
|
+
`),{success:!1,error:a,errorCode:"EPIC_PROJECT_ID_REQUIRED",exitCode:1}}let j;try{j=g.execute({phase:"client-preflight",domain:"client-persistence",category:"pending-claim",operation:"update"},()=>L==="create-epic"?Rr(i,y):void 0,()=>{})}catch{return{success:!1,error:"EPIC_CLAIM_INTEGRITY_FAILURE",errorCode:"EPIC_CLAIM_INTEGRITY_FAILURE",exitCode:1}}const V=j?.key,fe=f?{schemaVersion:1,invocationId:g.invocationId,intent:g.intent,clientProjection:Kn(Lt.map(a=>({...a,count:1})))}:void 0;let Q={args:n,projectRoot:i.replace(Ne(),"~"),stateSnapshot:F,platformTarget:u,projectId:P,inputEvidence:r,idempotencyKey:V,registryVersion:he,registryChecksum:ge,...fe?{strictReadOnly:fe}:{}};const We=Se(Q);if(e.inputSource&&e.inputSource!=="args"&&We>=Xe)try{Q={argsRef:(await Jn(g,"secondary-mutation",()=>ro(_,n,E.token,()=>E.client.forceRefresh()),async()=>{throw new Ee("readonly-physical-boundary-unsafe","boundary")})).argsRef,projectRoot:i.replace(Ne(),"~"),stateSnapshot:F,platformTarget:u,projectId:P,inputEvidence:r,idempotencyKey:V,registryVersion:he,registryChecksum:ge,...fe?{strictReadOnly:fe}:{}}}catch(a){return a instanceof Ee?{success:!1,error:a.code,errorCode:a.code,exitCode:1}:{success:!1,error:`INVOKE_MATERIALIZATION_FAILED: ${a instanceof Error?a.message:String(a)}`,errorCode:"INVOKE_MATERIALIZATION_FAILED",exitCode:1}}try{const a=dn(Q);Q=a.body,a.degraded?ln(Q,a.telemetry):uo(Q)}catch(a){if(a instanceof nt||a instanceof rt)return ln(Q,a.telemetry),process.stderr.write(`[Neocortex] ${a.message}
|
|
41
|
+
`),{success:!1,error:a.message,errorCode:a.code,metadata:{invokePayload:a.telemetry},exitCode:1};throw a}let b=await kt("invoke-query",()=>En(_,Q,E.token,{refreshToken:()=>E.client.forceRefresh()})),Ie;if(f&&b.ok)try{if(h){const d=b.data?.metadata;if(d&&["stateUpdate","stateMutated","yoloopStateUpdate","continuityStateUpdate","checkpoint","schedulerStateUpdate","quotaCacheUpdate","projectIdentityMigration","epicClaim"].some(re=>d[re]!==void 0))throw new Ee("readonly-response-conflict")}const a=b.data?.metadata.strictReadOnly;Xn(g,a),h&&rr(b.data?.metadata.strictDiagnose,n,b.data?.instructions??""),Ie=a.security}catch(a){const d=a instanceof Ee?a.code:"readonly-receipt-mismatch";return{success:!1,error:d,errorCode:d,exitCode:1}}if(!b.ok&&b.status===426){const a=b.errorBody,d=a?.upgrade_command??"npm install -g @ornexus/neocortex@latest",v=a?.min_version??"unknown";return process.stderr.write(`
|
|
38
42
|
`),process.stderr.write(`==================================================
|
|
39
43
|
`),process.stderr.write(` UPGRADE REQUIRED
|
|
40
44
|
`),process.stderr.write(`==================================================
|
|
41
45
|
`),process.stderr.write(`
|
|
42
|
-
Your Neocortex version (${
|
|
43
|
-
`),process.stderr.write(` Minimum required: ${
|
|
46
|
+
Your Neocortex version (${_e}) is no longer supported.
|
|
47
|
+
`),process.stderr.write(` Minimum required: ${v}
|
|
44
48
|
|
|
45
49
|
`),process.stderr.write(` Run this command to update:
|
|
46
50
|
|
|
47
|
-
`),process.stderr.write(` ${
|
|
51
|
+
`),process.stderr.write(` ${d}
|
|
48
52
|
|
|
49
53
|
`),process.stderr.write(` After updating, re-run your command.
|
|
50
54
|
`),process.stderr.write(`==================================================
|
|
51
55
|
|
|
52
|
-
`),{success:!1,error:`UPGRADE_REQUIRED: Client version ${
|
|
56
|
+
`),{success:!1,error:`UPGRADE_REQUIRED: Client version ${_e} is below minimum ${v}. Run: ${d}`,exitCode:3}}if(!b.ok||!b.data){const a=b.status===401?2:(b.status===429||b.status>=500,1);try{const d=b.errorBody?.error_code??(b.status===429?"RATE_LIMITED":b.status>=500?"SERVER_ERROR":void 0);if(d){const v=At(),re=Ct(d,v);re&&process.stderr.write(St(re,v))}}catch{}return{success:!1,error:q(b.error??"Unknown error from server",me),exitCode:a}}if(!y&&b.data.metadata?.mode==="menu"&&T&&await g.executeAsync({phase:"client-writeback",domain:"client-persistence",category:"auth-cache",operation:"update"},()=>Kr(T,b.data.instructions,b.data.metadata),async()=>{}).catch(()=>{}),b.data.metadata&&await g.executeAsync({phase:"client-writeback",domain:"client-persistence",category:"tier-cache",operation:"update"},()=>E.tierClient.updateQuotaFromResponse(b.data.metadata),async()=>{}).catch(()=>{}),b.data.metadata?.mode==="error"&&b.data.metadata?.errorCode==="CLIENT_UPGRADE_REQUIRED")return process.stderr.write(`
|
|
53
57
|
`),process.stderr.write(`==================================================
|
|
54
58
|
`),process.stderr.write(` YOLOOP CLIENT UPGRADE REQUIRED
|
|
55
59
|
`),process.stderr.write(`==================================================
|
|
56
60
|
`),process.stderr.write(`
|
|
57
|
-
Your Neocortex client version (${
|
|
61
|
+
Your Neocortex client version (${_e}) does not
|
|
58
62
|
`),process.stderr.write(` support client-side yoloop state persistence.
|
|
59
63
|
|
|
60
64
|
`),process.stderr.write(` Run this command to upgrade:
|
|
@@ -64,12 +68,14 @@ ${t}
|
|
|
64
68
|
`),process.stderr.write(` After upgrading, re-run your yoloop command.
|
|
65
69
|
`),process.stderr.write(`==================================================
|
|
66
70
|
|
|
67
|
-
`),{success:!1,error:"CLIENT_UPGRADE_REQUIRED: This client does not support yoloop client-side persistence. Run: npm install -g @ornexus/neocortex@latest",exitCode:3};if(
|
|
68
|
-
`),{success:!1,error:`CONTINUITY_PERSISTENCE_FAILED: ${
|
|
69
|
-
`),{success:!1,error:`CONTINUITY_PERSISTENCE_FAILED: ${
|
|
71
|
+
`),{success:!1,error:"CLIENT_UPGRADE_REQUIRED: This client does not support yoloop client-side persistence. Run: npm install -g @ornexus/neocortex@latest",exitCode:3};if(b.data.metadata?.yoloopStateUpdate)try{await g.executeAsync({phase:"client-writeback",domain:"client-persistence",category:"state-writeback",operation:"update"},async()=>{const{persistYoloopFromResponse:a}=await import("../yoloop/invoke-hooks.js");await a(b.data.metadata,i)},async()=>{})}catch{}if(b.data.metadata?.continuityStateUpdate)try{const a=await g.executeAsync({phase:"client-writeback",domain:"client-persistence",category:"continuity-store",operation:"update"},async()=>{const{persistContinuityFromResponse:d}=await import("../continuity/invoke-hooks.js");return d(b.data.metadata,i)},async()=>({ok:!0,reasonCodes:[]}));if(!a.ok){const d=a.reasonCodes.join(",");return process.stderr.write(`[Neocortex] continuity persistence failed: ${d}. No continuity mutation was committed.
|
|
72
|
+
`),{success:!1,error:`CONTINUITY_PERSISTENCE_FAILED: ${d}`,errorCode:"CONTINUITY_PERSISTENCE_FAILED",exitCode:1}}}catch(a){const d=a instanceof Error?a.message:String(a);return process.stderr.write(`[Neocortex] continuity persistence hook failed: ${d}. No continuity mutation was committed.
|
|
73
|
+
`),{success:!1,error:`CONTINUITY_PERSISTENCE_FAILED: ${q(d,me)}`,errorCode:"CONTINUITY_PERSISTENCE_FAILED",exitCode:1}}if(b.data.metadata?.stateMutated===!0)try{const a=await g.executeAsync({phase:"client-writeback",domain:"client-persistence",category:"state-writeback",operation:"update"},async()=>{const{persistMigratedStateFromResponse:d}=await import("../yoloop/invoke-hooks.js");return d(b.data.metadata,i)},async()=>({applied:!1,blocking:!1,reasonCode:"state-writeback-effect-skipped"}));if(a.blocking){const d=`STATE_WRITEBACK_BLOCKED: ${a.reasonCode}. Canonical state was not replaced.`;return process.stderr.write(`${d}
|
|
74
|
+
`),{success:!1,error:d,errorCode:"STATE_WRITEBACK_BLOCKED",exitCode:1}}}catch(a){if(b.data.metadata?.stateMutationReason==="inline-yolo-materialized-synthetic-story"){const d=a instanceof Error?a.message:String(a),v=`STATE_WRITEBACK_BLOCKED: inline-yolo persistence failed (${q(d,me)}).`;return process.stderr.write(`${v}
|
|
75
|
+
`),{success:!1,error:v,errorCode:"STATE_WRITEBACK_BLOCKED",exitCode:1}}}if(b.data.metadata?.tier_changed){const a=b.data.metadata.current_tier;try{await E.client.forceRefresh()?(await E.tierClient.invalidateTierCache(),process.stderr.write(`[Neocortex] Token atualizado automaticamente para tier ${a}
|
|
70
76
|
`)):process.stderr.write(`[Neocortex] Seu tier foi atualizado para ${a}! Execute "neocortex activate" para obter um token atualizado.
|
|
71
77
|
`)}catch{process.stderr.write(`[Neocortex] Seu tier foi atualizado para ${a}! Execute "neocortex activate" para obter um token atualizado.
|
|
72
|
-
`)}}const
|
|
78
|
+
`)}}const gt=tt(b.data.instructions,b.data.metadata);if(j&&b.data.metadata?.mode!=="error")try{const a=b.data.metadata?.epicClaim;if(!a||typeof a!="object"||Array.isArray(a))throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");const d=a;if(d.outcome!=="reserved"||typeof d.claimId!="string"||typeof d.epicId!="string")throw new Error("EPIC_CLAIM_INTEGRITY_FAILURE");g.execute({phase:"client-writeback",domain:"client-persistence",category:"pending-claim",operation:"update"},()=>Tr(i,j.fingerprint,d.claimId,d.epicId),()=>{})}catch{}return g.complete(Ie),{success:!0,instructions:gt.instructions,metadata:gt.metadata,exitCode:0}}function qo(e){const[t]=e.trim().split(/\s+/,1);return t?/^@?epic-[a-z0-9][a-z0-9._-]*$/i.test(t)?"epic":_t(t):null}const Cn="Provide exactly one invoke input source: --args <string>, --stdin, or --args-file <path>.",Xo=`
|
|
73
79
|
neocortex-client invoke - Send orchestration request to server
|
|
74
80
|
|
|
75
81
|
Usage:
|
|
@@ -138,12 +144,12 @@ Safety:
|
|
|
138
144
|
Jobs console is Plane B/local-only: no hosted server call for raw output, no server-held stream, no raw persistence, and stdin requires explicit local confirmation.
|
|
139
145
|
Jobs, goal and loop watch use serverHeldStream=false and foreground local SQLite polling of public processing summaries only.
|
|
140
146
|
Unresolved targets disable polling with public reason codes; there is no all-jobs fallback.
|
|
141
|
-
`.trim();function
|
|
142
|
-
`);return}
|
|
143
|
-
`);return}const o=
|
|
144
|
-
`),
|
|
145
|
-
`)}function
|
|
146
|
-
`),0;let t;try{t=
|
|
147
|
-
`),1;throw
|
|
148
|
-
`),1):(await
|
|
149
|
-
`),
|
|
147
|
+
`.trim();function Qo(e){return e.includes("--help")||e.includes("-h")||e.includes("help")}function J(e,t,n,r){return new De("INVOCATION_MALFORMED_INPUT",t,e,n,r)}function Re(e){return J("missing-input-value",`${e} requires a value. ${Cn}`)}function Zo(e){try{if(!wn(e).isFile())throw J("missing-input-value","--args-file must point to a readable UTF-8 text file.","args-file");return ye(e)}catch(t){throw t instanceof De?t:J("missing-input-value","--args-file could not be read as UTF-8 text. Check the path and permissions.","args-file")}}function ei(){try{if(process.stdin.isTTY)throw J("missing-input-value","--stdin requires piped UTF-8 text, for example: neocortex-client invoke --stdin < synthetic.story.md","stdin");return ye(0)}catch(e){throw e instanceof De?e:J("missing-input-value","--stdin could not be read as UTF-8 text. Pipe command text into stdin and retry.","stdin")}}function ti(e,t={}){let n,r=!1,o,i,s="plain",c=!1,p,l,h=!1;for(let C=0;C<e.length;C++)switch(e[C]){case"--args":{const y=e[++C];if(y===void 0)throw Re("--args");if(n!==void 0)throw J("multiple-input-sources","Provide --args only once. Use one explicit invoke input source.","args");n=y;break}case"--stdin":if(r)throw J("multiple-input-sources","Provide --stdin only once. Use one explicit invoke input source.","stdin");r=!0;break;case"--args-file":{const y=e[++C];if(y===void 0)throw Re("--args-file");if(o!==void 0)throw J("multiple-input-sources","Provide --args-file only once. Use one explicit invoke input source.","args-file");o=y;break}case"--project-root":{const y=e[++C];if(y===void 0)throw Re("--project-root");i=y;break}case"--format":{const y=e[++C];if(y===void 0)throw Re("--format");if(y!=="json"&&y!=="plain")throw J("unexpected-cli-token","--format accepts only json or plain.");s=y;break}case"--watch":c=!0;break;case"--server-url":{const y=e[++C];if(y===void 0)throw Re("--server-url");p=y;break}case"--platform-target":{const y=e[++C];if(y===void 0)throw Re("--platform-target");l=y;break}case"--strict-read-only":h=!0;break;default:throw J("unexpected-cli-token","Unexpected top-level CLI token. Quote the complete --args payload or use --stdin/--args-file for multiline content.")}const g=[n!==void 0?"args":void 0,r?"stdin":void 0,o!==void 0?"args-file":void 0].filter(C=>C!==void 0);if(g.length===0)throw J("missing-input-value",Cn);if(g.length>1)throw J("multiple-input-sources",`Choose only one invoke input source; received ${g.join(", ")}.`);const f=g[0],u=f==="args"?n:f==="stdin"?(t.readStdin??ei)():(t.readArgsFile??Zo)(o);let I;try{I=ze(f,u)}catch(C){throw C instanceof or?J("invalid-utf8",C.message,f):C}const _=f==="args"?Do(I.rawArgs):H(I.rawArgs),S=_.args===I.rawArgs?I:ze(f,_.args);return{args:_.args,inputSource:f,inputEnvelope:S,projectRoot:i,format:s,watch:c||_.watch,commandLevelWatch:_.metadata,serverUrl:p,platformTarget:l,strictReadOnly:h}}function Sn(e,t){return t?.active?{...e??{},commandLevelWatch:t,serverHeldStream:!1}:e}function ni(e,t,n=process.stdout,r=process.stderr){if(t.format==="json"){const s=tt(e.instructions,e.metadata),c=Sn(s.metadata,t.commandLevelWatch);if(t.watch){n.write(JSON.stringify({type:"invoke_result",instructions:s.instructions,metadata:c,publicSafe:!0})+`
|
|
148
|
+
`);return}n.write(JSON.stringify({instructions:s.instructions,metadata:c})+`
|
|
149
|
+
`);return}const o=tt(e.instructions,e.metadata),i=Sn(o.metadata,t.commandLevelWatch);n.write(o.instructions+`
|
|
150
|
+
`),i&&r.write(JSON.stringify(i)+`
|
|
151
|
+
`)}function ri(e){const t=()=>e.abort();return process.once("SIGINT",t),process.once("SIGTERM",t),()=>{process.removeListener("SIGINT",t),process.removeListener("SIGTERM",t)}}async function Vi(e){if(Qo(e))return process.stdout.write(`${Xo}
|
|
152
|
+
`),0;let t;try{t=ti(e)}catch(r){if(r instanceof De)return process.stderr.write(JSON.stringify({error_code:r.code,reason:r.reason,source:r.source,byte_length:r.byteLength,message:r.message,remediation:r.message})+`
|
|
153
|
+
`),1;throw r}if(Wn(t.args))return t.strictReadOnly?(process.stderr.write(JSON.stringify({error_code:"readonly-registry-denied",message:"Strict read-only policy is not eligible for the local jobs console."})+`
|
|
154
|
+
`),1):(await Hn({args:t.args,projectRoot:Ze(t.projectRoot),format:t.format,stdin:process.stdin,stdout:process.stdout,stderr:process.stderr})).exitCode;const n=await Ko({args:t.args,inputSource:t.inputSource,inputEnvelope:t.inputEnvelope,watch:t.watch,projectRoot:t.projectRoot,format:t.format,serverUrl:t.serverUrl,platformTarget:t.platformTarget,strictReadOnly:t.strictReadOnly});if(!n.success){const r=n.metadata?.invocationInput,o=r&&typeof r=="object"&&!Array.isArray(r)?r:void 0;return process.stderr.write(JSON.stringify({error_code:n.errorCode??(n.exitCode===2?"NOT_CONFIGURED":"INVOKE_ERROR"),message:q(n.error??"",me),...typeof o?.reason=="string"?{reason:q(o.reason,80)}:{},...typeof o?.source=="string"?{source:q(o.source,20)}:{},...Number.isSafeInteger(o?.byteLength)?{byte_length:o.byteLength}:{},...typeof o?.remediation=="string"?{remediation:q(o.remediation,me)}:{}})+`
|
|
155
|
+
`),n.exitCode}if(ni(n,t),t.watch){const r=new AbortController,o=ri(r);try{const i=Go(n.metadata,t.args);i.disabled?So(i.reasonCodes??[U.TARGET_UNRESOLVED],t.args,t.format,process.stdout):await Ao({projectRoot:Ze(t.projectRoot),format:t.format,strictReadOnly:t.strictReadOnly,...i,signal:r.signal})}finally{o()}}return 0}export{Xo as INVOKE_HELP_TEXT,Vt as INVOKE_PAYLOAD_LIMIT_BYTES,Xe as INVOKE_PAYLOAD_WARNING_THRESHOLD_BYTES,De as InvokeCliInputError,nt as InvokePayloadTooLargeError,rt as InvokeStructuralContextTooLargeError,le as StateSnapshotIntegrityError,Mi as __resetSchemaDriftWarnedForTests,zo as acknowledgeMaterializedPendingEpicClaims,vr as admitClientInvocation,Jr as assertEpicAwareStateShapeBeforeRepair,eo as buildSignedInvokeAttempt,wr as clearPendingEpicIdempotencyKey,zr as collectInvokeP205Authorities,en as collectStateSnapshot,Se as computeInvokeRequestBodySizeBytes,Ui as createFullStateSnapshotScope,st as createInvokePayloadTelemetry,Pr as detectStateSchemaDrift,qo as extractPreFlightTrigger,Rr as getOrCreatePendingEpicIdempotencyKey,dn as guardInvokeRequestBodySize,Ko as invoke,Vi as invokeCliHandler,Zt as isEpicAwareCommandId,uo as maybeEmitInvokePayloadSizeWarning,lo as maybeRunInvokeRunnerAutoBootstrap,ti as parseInvokeCliOptions,an as postMaterializationJson,Tr as recordPendingEpicReservation,Do as resolveInvokeCommandLevelWatch,Ze as resolveInvokeProjectRoot,Go as resolveInvokeWatchTarget,tt as sanitizeInvokeCliOutput,Jo as sendEpicClaimAcknowledgement,En as sendInvokeRequest,xr as shouldCollectProjectEvidenceForInvoke,Ao as watchContinuityProcessingSummaries,ni as writeInvokeCliSuccessOutput};
|