@remnic/core 9.3.669 → 9.3.670

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/index.js CHANGED
@@ -192,7 +192,7 @@ import {
192
192
  saveTaxonomy,
193
193
  validateSlug,
194
194
  validateTaxonomy
195
- } from "./chunk-4FJKKC2N.js";
195
+ } from "./chunk-PIA4C3AJ.js";
196
196
  import {
197
197
  WEARABLE_SOURCE_PREFIX,
198
198
  buildExtractionTurns,
@@ -28,7 +28,7 @@ import {
28
28
  sanitizeSessionKeyForFilename,
29
29
  shouldFilterLifecycleRecallCandidate,
30
30
  summarizeGraphShadowComparison
31
- } from "./chunk-4FJKKC2N.js";
31
+ } from "./chunk-PIA4C3AJ.js";
32
32
  import "./chunk-4SKKVWLQ.js";
33
33
  import "./chunk-7HYPN2GC.js";
34
34
  import "./chunk-666A3MOW.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/core",
3
- "version": "9.3.669",
3
+ "version": "9.3.670",
4
4
  "description": "Framework-agnostic Remnic memory engine — orchestrator, storage, extraction, search, trust zones",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -7476,8 +7476,8 @@ export class Orchestrator {
7476
7476
  graphExpandedIntentEnabled: caps.graphExpandedIntent,
7477
7477
  prompt,
7478
7478
  };
7479
- const requestedMode = options.mode;
7480
- // When the caller forces a mode, skip the (async, possibly LLM-backed)
7479
+ // Issue #1547 — let the heuristic decide no_recall BEFORE the planner/non-planner fork so it fires with planner on OR off.
7480
+ const requestedMode: RecallPlanMode | undefined = options.mode ?? (planRecallMode(prompt) === "no_recall" ? "no_recall" : undefined);
7481
7481
  // planner entirely — the decision is overridden anyway. Otherwise consult
7482
7482
  // the LLM planner when opted in (issue #1367 / Option C); it falls back to
7483
7483
  // the heuristic on disable / shadow / timeout / error.