Dashboard › opencode-lore › Distillation
7bfb4b76-433c-4188-979f-d8388110e7a5["lore_tm_v1_MoQfZU1uYcTiby5iQdsIZtiShzhPAQFA80AJmyolCUw","lore_tm_v1_a1DvHksbZzH9h5nBjgilQiz1GSXeq6fTCBqOUsXVbGY","lore_tm_v1_A9rVd3fsY1zoWw8-K3_dja6Y42dVBqvxUezQ3x0nXyc","lore_tm_v1_5oO-kfPvY45pu8JNUf7dChH_hHm_R9CFXFUyJdmi2u0","lore_tm_v1_0PsgcaMMfG8PY_smwb1nRw4OnSHkcyQzWRePr0ZSQ0E","lore_tm_v1_-3oulMQ9ILq_3-gTKdLTykmD1UG-vZG8g30XA2sr4K4","lore_tm_v1_KOJV2wu-kSzE3tzrROt-BLfG5Iq9fJttuRnJw3NV33E"]
Date: Sep 16, 2026
jj) never fails on merge conflict: operations record conflicts in the resulting commit, after which jj st identifies conflicted files for manual resolution; jj resolve must not be used because it is interactive.in_progress, high); 2. “Finish cgroup headroom parsing and embedding admission wiring” (pending, high); 3. “Prove critical guards with fail-first and mutation checks” (pending, high); 4. “Run complete repository validation and freeze exact candidate” (pending, high); 5. “Obtain independent correctness and security reviews” (pending, high); 6. “Commit completed Jujutsu change and report runtime guidance” (pending, medium).@loreai/gateway package never imports @loreai/core at runtime because core is inlined rather than externalized; therefore @loreai/core must not be treated as a runtime dependency based on the source manifest.packages/gateway/test/bundle-exports.test.ts must always run against a bundle built from current source, regardless of how Vitest was launched.packages/gateway/test/bundle-exports.test.ts uses isBundleFresh() to compare the oldest asserted artifact mtime for packages/gateway/dist/index.cjs and packages/gateway/dist/index.bun.js against the newest recursively discovered mtime across packages/gateway/src, packages/core/src, packages/gateway/script, and packages/gateway/package.json; freshness requires oldestArtifact > 0 && oldestArtifact > newestSource, so timestamp ties trigger rebuilding.node_modules and the ONNX Runtime WASM artifact are intentionally excluded from isBundleFresh() because pnpm install postinstall rebuilds the bundle.beforeAll() in packages/gateway/test/bundle-exports.test.ts runs the fixed literal shell command pnpm --filter @loreai/gateway run bundle from repoRoot via execSync, with a timeout of 300_000 ms. execSync was chosen so Windows resolves pnpm.cmd; direct execFile("pnpm") was rejected because it would produce ENOENT for a .cmd file.dist/ safely because Vitest’s top-level resolve.alias redirects every @loreai/* import—including variable dynamic imports in gateway-smoke and the opencode plugin—to src; core worker threads resolve to .ts siblings under Vitest, and pool: "forks" prevents races with another test file.pnpm run bundle leaves artifacts newer than all tracked sources, avoiding redundant double builds.