From d07044fd6113d4138e4a61e3c786ca5aaa66f861 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sat, 4 Jul 2026 11:49:37 -0500 Subject: [PATCH] =?UTF-8?q?Update=20save-q-memory=20to=20v1.1.0=20?= =?UTF-8?q?=E2=80=94=20add=20=5Fsource=20field=20to=20match=20schema?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- save-q-memory/SKILL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 } } ```