diff --git a/save-q-memory/SKILL.md b/save-q-memory/SKILL.md index 0cdcb9e..728206d 100644 --- a/save-q-memory/SKILL.md +++ b/save-q-memory/SKILL.md @@ -1,7 +1,7 @@ --- name: save-q-memory description: "Manual save to Qdrant memories collection with enforced 10-type schema. Load this skill EVERY time the user says 'save to memory' or 'save to qdrant' — it is the ONLY path for manual Qdrant writes." -version: 1.0.0 +version: 1.1.0 author: Hermes Agent license: MIT metadata: @@ -100,7 +100,8 @@ point = { "created_at": now, "updated_at": now, "source": "agent", # "agent" for manual saves - "ttl_hint": "slow" + "ttl_hint": "slow", + "_source": {"text": text} # Original payload, preserved verbatim } } ```