chore: sync plugin version to 3.0.0

This commit is contained in:
github-actions[bot]
2026-04-08 11:56:13 +00:00
parent 3d00a93655
commit 6b5e869dd5
+65 -14
View File
@@ -2,32 +2,83 @@
"name": "mempalace",
"version": "3.0.0",
"description": "Give your AI a memory — mine projects and conversations into a searchable palace. 19 MCP tools, auto-save hooks, and guided setup.",
"author": { "name": "milla-jovovich" },
"author": {
"name": "milla-jovovich"
},
"license": "MIT",
"hooks": {
"Stop": "hooks/mempal-stop-hook.sh",
"PreCompact": "hooks/mempal-precompact-hook.sh"
},
"skills": [
{ "name": "init", "file": "skills/init/SKILL.md" },
{ "name": "search", "file": "skills/search/SKILL.md" },
{ "name": "mine", "file": "skills/mine/SKILL.md" },
{ "name": "help", "file": "skills/help/SKILL.md" },
{ "name": "status", "file": "skills/status/SKILL.md" }
{
"name": "init",
"file": "skills/init/SKILL.md"
},
{
"name": "search",
"file": "skills/search/SKILL.md"
},
{
"name": "mine",
"file": "skills/mine/SKILL.md"
},
{
"name": "help",
"file": "skills/help/SKILL.md"
},
{
"name": "status",
"file": "skills/status/SKILL.md"
}
],
"commands": [
{ "name": "mempalace:help", "description": "Show MemPalace help — available tools, skills, architecture", "skill": "help" },
{ "name": "mempalace:init", "description": "Set up MemPalace — install, configure MCP, onboard", "skill": "init" },
{ "name": "mempalace:search", "description": "Search your memories across the palace", "skill": "search" },
{ "name": "mempalace:mine", "description": "Mine projects and conversations into the palace", "skill": "mine" },
{ "name": "mempalace:status", "description": "Show palace overview — wings, rooms, drawer counts", "skill": "status" }
{
"name": "mempalace:help",
"description": "Show MemPalace help — available tools, skills, architecture",
"skill": "help"
},
{
"name": "mempalace:init",
"description": "Set up MemPalace — install, configure MCP, onboard",
"skill": "init"
},
{
"name": "mempalace:search",
"description": "Search your memories across the palace",
"skill": "search"
},
{
"name": "mempalace:mine",
"description": "Mine projects and conversations into the palace",
"skill": "mine"
},
{
"name": "mempalace:status",
"description": "Show palace overview — wings, rooms, drawer counts",
"skill": "status"
}
],
"mcp": {
"mempalace": {
"command": "python3",
"args": ["-m", "mempalace.mcp_server"]
"args": [
"-m",
"mempalace.mcp_server"
]
}
},
"keywords": ["memory", "ai", "rag", "mcp", "chromadb", "palace", "search"],
"repository": { "type": "git", "url": "https://github.com/milla-jovovich/mempalace" }
"keywords": [
"memory",
"ai",
"rag",
"mcp",
"chromadb",
"palace",
"search"
],
"repository": {
"type": "git",
"url": "https://github.com/milla-jovovich/mempalace"
}
}