@wrongstack/core 0.296.3 → 0.296.4

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.
@@ -3786,7 +3786,7 @@ function chronicleProjectServerEndpoint(projectDir) {
3786
3786
  }
3787
3787
  return path12.join(
3788
3788
  os3.tmpdir(),
3789
- `wrongstack-chronicle-v${CHRONICLE_PROJECT_SERVER_PROTOCOL_VERSION}`,
3789
+ `wsch-v${CHRONICLE_PROJECT_SERVER_PROTOCOL_VERSION}`,
3790
3790
  `${key}.sock`
3791
3791
  );
3792
3792
  }
@@ -5274,7 +5274,7 @@ function wireReviewFindingsToChronicle(options) {
5274
5274
  "chimera.review_complete",
5275
5275
  (_event, raw) => {
5276
5276
  const payload = raw;
5277
- if (!payload || !payload.reviewText) return;
5277
+ if (!payload?.reviewText) return;
5278
5278
  if (payload.status !== "success") return;
5279
5279
  const context = typeof options.context === "function" ? options.context() : options.context;
5280
5280
  const sessionId = payload.sessionId ?? payload.bundle?.cwd;