fix: update documentation structure and add missing properties

This commit is contained in:
Alex Newman
2025-10-24 18:14:39 -04:00
parent dba29de2a7
commit f6cf895847
+96 -38
View File
@@ -1,10 +1,12 @@
{ {
"$schema": "https://mintlify.com/schema.json", "$schema": "https://mintlify.com/schema.json",
"name": "Claude-Mem", "name": "Claude-Mem",
"description": "Persistent memory compression system that preserves context across Claude Code sessions",
"theme": "mint", "theme": "mint",
"logo": { "logo": {
"light": "/logo/light.svg",
"dark": "/logo/dark.svg", "dark": "/logo/dark.svg",
"light": "/logo/light.svg" "href": "https://github.com/thedotmack/claude-mem"
}, },
"favicon": "/favicon.svg", "favicon": "/favicon.svg",
"colors": { "colors": {
@@ -12,46 +14,102 @@
"light": "#EFF6FF", "light": "#EFF6FF",
"dark": "#1E40AF" "dark": "#1E40AF"
}, },
"topbarLinks": [ "navbar": {
{ "links": [
"name": "GitHub", {
"url": "https://github.com/thedotmack/claude-mem" "label": "GitHub",
"href": "https://github.com/thedotmack/claude-mem"
}
],
"primary": {
"type": "button",
"label": "Install",
"href": "https://github.com/thedotmack/claude-mem#quick-start"
} }
],
"topbarCtaButton": {
"name": "Install",
"url": "https://github.com/thedotmack/claude-mem#quick-start"
}, },
"navigation": [ "navigation": {
{ "groups": [
"group": "Get Started", {
"pages": [ "group": "Get Started",
"introduction", "icon": "rocket",
"installation", "pages": [
"usage/getting-started", "introduction",
"usage/search-tools" "installation",
] "usage/getting-started",
"usage/search-tools"
]
},
{
"group": "Configuration & Development",
"icon": "gear",
"pages": [
"configuration",
"development",
"troubleshooting"
]
},
{
"group": "Architecture",
"icon": "diagram-project",
"pages": [
"architecture/overview",
"architecture/hooks",
"architecture/worker-service",
"architecture/database",
"architecture/mcp-search"
]
}
]
},
"footer": {
"socials": {
"github": "https://github.com/thedotmack/claude-mem"
}, },
{ "links": [
"group": "Configuration & Development", {
"pages": [ "header": "Resources",
"configuration", "items": [
"development", {
"troubleshooting" "label": "Documentation",
] "href": "https://github.com/thedotmack/claude-mem"
}, },
{ {
"group": "Architecture", "label": "Issues",
"pages": [ "href": "https://github.com/thedotmack/claude-mem/issues"
"architecture/overview", }
"architecture/hooks", ]
"architecture/worker-service", },
"architecture/database", {
"architecture/mcp-search" "header": "Legal",
] "items": [
{
"label": "License (AGPL-3.0)",
"href": "https://github.com/thedotmack/claude-mem/blob/main/LICENSE"
}
]
}
]
},
"seo": {
"indexing": "all",
"metatags": {
"og:type": "website",
"og:site_name": "Claude-Mem Documentation",
"og:description": "Persistent memory compression system that preserves context across Claude Code sessions"
}
},
"contextual": {
"options": [
"copy",
"view",
"chatgpt",
"claude",
"cursor"
]
},
"integrations": {
"telemetry": {
"enabled": false
} }
],
"footerSocials": {
"github": "https://github.com/thedotmack/claude-mem"
} }
} }