docs update for profile buckets and inferred memory review#1158
docs update for profile buckets and inferred memory review#1158sohamd22 wants to merge 1 commit into
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | c655e41 | Commit Preview URL | Jun 24 2026, 12:20 PM |
How to use the Graphite Merge QueueAdd the label Main to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
|
Claude finished @sohamd22's task in 47s —— View job Review Complete
Overview: Adds documentation for Memory Review endpoints and Profile Buckets feature. Issues found: None — this looks good to ship. This is a documentation-only PR with no executable code. I verified:
All API endpoint paths, query parameters, and response structures are internally consistent throughout the documentation. Score: 10/10 |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-mcp | c655e41 | Jun 24 2026, 12:19 PM |
There was a problem hiding this comment.
Overview: Adds documentation for Memory Review endpoints and Profile Buckets feature.
Issues found: None — this looks good to ship.
This is a documentation-only PR with no executable code. The changes include:
- New
memory-review.mdxdocumenting the inferred memory review queue and review action endpoints - Profile Buckets section added to
user-profiles.mdxwith clear examples - Proper sidebar registration in
docs.json - Cross-linking from memory operations
The code examples are well-structured with consistent fetch/cURL tabs, the field reference tables are complete, and the TypeScript interface updates correctly reflect the optional nature of static/dynamic when using include filtering.
Score: 10/10
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
e2e07d2 to
c655e41
Compare

TL;DR
Adds documentation for the Memory Review endpoints and Profile Buckets feature.
What changed?
Memory Review (
memory-review.mdx)GET /v3/container-tags/{containerTag}/inferredandPOST /v3/container-tags/{containerTag}/inferred/{memoryId}/review.approve,decline,undo) and how each affects search ranking and memory state (isInference,isForgotten,reviewStatus).fetchand cURL, a field reference table, error codes, and a collapsible React Query hooks example for building a review UI.docs.jsonunder the "Manage Content" group and linked to it from the Memory Operations next steps.Profile Buckets (
user-profiles.mdx)preferences,goals,work, etc.) as a complement tostatic/dynamicprofile sections.include,buckets, andfiltersquery parameters on the profile endpoint.GET /v4/profile/bucketsendpoint for listing configured bucket definitions, with request/response examples and a field reference.[Recent]/[Summary]label convention used in bucket and dynamic profile entries.ProfileResponseTypeScript interface to markstaticanddynamicas optional and add thebucketsfield.How to test?
fetchand cURL variants.Why make this change?
Inferred (derived) graph memories are down-weighted in search until reviewed, but there was no documentation explaining how to surface or act on them. Similarly, profile buckets were a shipped feature with no public-facing docs. These additions give developers the reference material needed to build review UIs and use topical bucket filtering in their integrations.