@hivelore/core 0.39.1 → 0.39.2

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
@@ -5929,6 +5929,9 @@ function classifyMemoryPriority(signals) {
5929
5929
  return "must_read";
5930
5930
  }
5931
5931
  if (isStackPackSeed({ tags: signals.tags }) || isEnvWorkaroundMemory({ tags: signals.tags })) {
5932
+ if (isStackPackSeed({ tags: signals.tags }) && (signals.exactTaskMatch || signals.strongSemantic)) {
5933
+ return "useful";
5934
+ }
5932
5935
  return "background";
5933
5936
  }
5934
5937
  if (isSkill2 || signals.moduleOrDomainMatch || signals.exactTaskMatch || signals.usefulSemantic || signals.tagTaskMatch) {