@pyxmate/memory 1.17.8 → 1.17.9

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.
@@ -13,7 +13,7 @@ import {
13
13
  buildAgentSnippet,
14
14
  buildDesignGuide,
15
15
  buildGraphStructuringPrompt
16
- } from "./chunk-3BTAAGMM.mjs";
16
+ } from "./chunk-BLC32X5A.mjs";
17
17
  export {
18
18
  AGENT_TARGETS,
19
19
  PERSISTENT_MEMORY_SECTION,
@@ -13,7 +13,7 @@ var PERSISTENT_MEMORY_SECTION = [
13
13
  "- When investigating a bug, search for prior occurrences and fixes.",
14
14
  '- When a question names a time \u2014 explicit or relative ("last year") \u2014 resolve it to an absolute ISO-8601 timestamp and pass it as search `anchorTime`: results rank by proximity to that time (soft \u2014 never excludes).',
15
15
  "- Match search `effort` to risk: use `quick` for routine recall; use `deep` when quick returns nothing, state may be superseded, or full history matters.",
16
- "- For count/list questions pass `enumerationConcept` (the category phrase, any language); for Korean/cross-lingual recall add `enableRerank: true` (hybrid-only, slower).",
16
+ "- For count/list questions pass `enumerationConcept` (the category phrase, any language). `enableRerank` is only for self-hosted full-variant hybrid search; hosted cloud rejects it, so leave it off there.",
17
17
  '- To trace how a fact changed ("what did X use before Y"), call `lineage` with `subject` + `relation` or an `entryId` instead of stitching together searches.',
18
18
  "- When answering about current goals, priorities, or active work: treat explicitly completed or closed items as no longer active; when one goal explicitly replaces another, act on the replacement; goals stated to run concurrently stay active until each is individually completed or replaced; choose priorities only among still-active goals.",
19
19
  "- Recalled memories reflect what was true when written \u2014 verify named files, functions, flags, and versions before acting.",
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  PERSISTENT_MEMORY_SECTION,
4
4
  buildDesignGuide
5
- } from "../chunk-3BTAAGMM.mjs";
5
+ } from "../chunk-BLC32X5A.mjs";
6
6
 
7
7
  // src/cli/exit-codes.ts
8
8
  var EXIT = {
@@ -835,7 +835,7 @@ function createProxyServer(client, version, uploadLocalFile) {
835
835
  return server;
836
836
  }
837
837
  async function runMcpProxyServer(opts) {
838
- const version = opts.version ?? (true ? "1.17.8" : "0.0.0-dev");
838
+ const version = opts.version ?? (true ? "1.17.9" : "0.0.0-dev");
839
839
  const read = await opts.readCredentials();
840
840
  if (!read.ok) {
841
841
  const text = read.result.content.map((c) => c.type === "text" ? c.text : "").join(" ").trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyxmate/memory",
3
- "version": "1.17.8",
3
+ "version": "1.17.9",
4
4
  "type": "module",
5
5
  "description": "SDK for pyx-memory — Memory as a Service for AI agents",
6
6
  "license": "MIT",