docs: fix drift in Google AntiGravity - #264
Draft
jack-arturo wants to merge 1 commit into
Draft
Conversation
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 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Bh4cvNW2mR2vCoyg3FDQL3
Deploying automem-website with
|
| Latest commit: |
75b3eca
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://f84d515a.automem-website.pages.dev |
| Branch Preview URL: | https://docs-audit-platforms-antigra.automem-website.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Routine docs-accuracy audit of
src/content/docs/docs/platforms/antigravity.md(never previously reviewed — this page has no entry inscripts/file-doc-map.json, so no source change has ever flagged it)."tags": ["project-name", "antigravity", "YYYY-MM", "component-name"]src/memory-policy/shared.tsis the generated-policy source of truth for every host template, and it states: "useautomem, notproject/automem; nolang/prefixes, platform tags, or date-stamped tags" (L362), emits// bare strings; NO platform tag, NO [YYYY-MM]directly into the store example it generates (L462), and repeats it as a hard rule at L805.antigravityis a platform tag andYYYY-MMis the date-stamped form named in the rule.t_valid/t_invalidfor shelf-life facts (the policy's own stated replacement, L468)./healthreturns no version field of any kind. The handler builds a fixed dict ofstatus,falkordb,qdrant,memory_count,vector_count,sync_status,vector_dimensions,enrichment,timestamp,graph— nothing carrying a service or package version. The MCP client agrees: theHealthStatusinterface hasstatus,backend,statistics,errorand no version member, socheck_database_healthcannot surface one either.sync_status, and noted the two literal connection values (connected/disconnected).Spot-checked and correct, left untouched:
store_memory,recall_memory,associate_memories,update_memory,delete_memory,check_database_health) match thetoolsarray insrc/index.ts(L468, L658, L1080, L1207, L1305, L1370).@verygoodplugins/mcp-automem, thenpx -yinvocation, and thenode /path/to/mcp-automem/dist/index.jslocal-build form all matchpackage.json(main/binbothdist/index.js).AUTOMEM_API_URL/AUTOMEM_API_KEYare the correct env var names, and the "required for cloud, optional for local" split is accurate.~/.cursor/mcp.json(cursor.ts#L150) +.cursor/rules/automem.mdc(cursor.ts#L244), Claude Code~/.claude.json+~/.claude/settings.json, Codex~/.codex/config.toml.Verified against: verygoodplugins/mcp-automem@946f9e5, verygoodplugins/automem@8ff266e
Questions
store_memory, notmemory_store_memoryor similar) — the section contradicts itself. AntiGravity's prefixing behavior isn't derivable from either AutoMem repo, so I can't tell which half is wrong, and the page's own:::notealready hedges that "the exact tool prefix format may vary". Left alone; a maintainer with AntiGravity installed could settle it in one look at the tool list.Unverified
:::noteclaiming AutoMem is "not yet available in AntiGravity's MCP Store" — no way to check the store's catalog from here.Follow-ups
Below the severity bar for this PR:
delete_memoryas "Permanently remove a memory", omitting its bulk-by-tag mode (tags: [...]deletes every memory matching any tag), andstore_memoryas single-item, omitting batch mode (memories: [...], ≤500). Completeness gaps rather than inaccuracies.shared.tsif that policy is meant to be canonical everywhere.Generated by Claude Code as part of the recurring automem-docs-review routine.
Generated by Claude Code