From 75b3eca3d2618f1f98005da004081e714b7cf4dd Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 27 Jul 2026 23:06:33 +0000 Subject: [PATCH] docs: fix drift in Google AntiGravity Correct the tagging convention to match the shipped memory policy (no platform tags, no date-stamped tags) and replace the non-existent "Service version" health field with the fields /health actually returns. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01Bh4cvNW2mR2vCoyg3FDQL3 --- src/content/docs/docs/platforms/antigravity.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/content/docs/docs/platforms/antigravity.md b/src/content/docs/docs/platforms/antigravity.md index 2fea2a9..5069479 100644 --- a/src/content/docs/docs/platforms/antigravity.md +++ b/src/content/docs/docs/platforms/antigravity.md @@ -192,12 +192,14 @@ AntiGravity's AI agent benefits from explicit instructions on when and how to us ```json { - "tags": ["project-name", "antigravity", "YYYY-MM", "component-name"], + "tags": ["project-name", "component-name"], "type": "Decision", "importance": 0.9 } ``` +Use bare tag strings. AutoMem's memory policy explicitly excludes platform tags (`antigravity`, `cursor`, …), namespace prefixes (`project/*`, `lang/*`), and date-stamped tags (`2026-07`). For facts with a shelf life, set `t_valid` / `t_invalid` instead of encoding a date in a tag. + --- ## Environment Variables @@ -220,9 +222,9 @@ Check the health of the AutoMem service ``` Expected response includes: -- FalkorDB connection status -- Qdrant connection status -- Service version +- FalkorDB connection status (`connected` / `disconnected`) +- Qdrant connection status (`connected` / `disconnected`) +- Memory and vector counts, plus a `sync_status` comparing the two stores ---