Update save-q-memory to v1.1.0 — add _source field to match schema

This commit is contained in:
Hermes Agent
2026-07-04 11:49:37 -05:00
parent a21fba4cae
commit d07044fd61

View File

@@ -1,7 +1,7 @@
--- ---
name: save-q-memory 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." 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 author: Hermes Agent
license: MIT license: MIT
metadata: metadata:
@@ -100,7 +100,8 @@ point = {
"created_at": now, "created_at": now,
"updated_at": now, "updated_at": now,
"source": "agent", # "agent" for manual saves "source": "agent", # "agent" for manual saves
"ttl_hint": "slow" "ttl_hint": "slow",
"_source": {"text": text} # Original payload, preserved verbatim
} }
} }
``` ```