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
+68 -10
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,19 +14,24 @@
"light": "#EFF6FF", "light": "#EFF6FF",
"dark": "#1E40AF" "dark": "#1E40AF"
}, },
"topbarLinks": [ "navbar": {
"links": [
{ {
"name": "GitHub", "label": "GitHub",
"url": "https://github.com/thedotmack/claude-mem" "href": "https://github.com/thedotmack/claude-mem"
} }
], ],
"topbarCtaButton": { "primary": {
"name": "Install", "type": "button",
"url": "https://github.com/thedotmack/claude-mem#quick-start" "label": "Install",
"href": "https://github.com/thedotmack/claude-mem#quick-start"
}
}, },
"navigation": [ "navigation": {
"groups": [
{ {
"group": "Get Started", "group": "Get Started",
"icon": "rocket",
"pages": [ "pages": [
"introduction", "introduction",
"installation", "installation",
@@ -34,6 +41,7 @@
}, },
{ {
"group": "Configuration & Development", "group": "Configuration & Development",
"icon": "gear",
"pages": [ "pages": [
"configuration", "configuration",
"development", "development",
@@ -42,6 +50,7 @@
}, },
{ {
"group": "Architecture", "group": "Architecture",
"icon": "diagram-project",
"pages": [ "pages": [
"architecture/overview", "architecture/overview",
"architecture/hooks", "architecture/hooks",
@@ -50,8 +59,57 @@
"architecture/mcp-search" "architecture/mcp-search"
] ]
} }
], ]
"footerSocials": { },
"footer": {
"socials": {
"github": "https://github.com/thedotmack/claude-mem" "github": "https://github.com/thedotmack/claude-mem"
},
"links": [
{
"header": "Resources",
"items": [
{
"label": "Documentation",
"href": "https://github.com/thedotmack/claude-mem"
},
{
"label": "Issues",
"href": "https://github.com/thedotmack/claude-mem/issues"
}
]
},
{
"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
}
} }
} }