feat: add command documentation for help, init, mine, search, and status

This commit is contained in:
Tal Muskal
2026-04-08 18:49:45 +03:00
parent 94b39cbfe9
commit a788af8919
12 changed files with 74 additions and 67 deletions
+6
View File
@@ -0,0 +1,6 @@
---
description: Show comprehensive MemPalace help — available skills, MCP tools, CLI commands, hooks, and architecture.
allowed-tools: Bash, Read
---
Invoke the mempalace skill (using the Skill tool) with the `help` command, then follow its instructions.
+6
View File
@@ -0,0 +1,6 @@
---
description: Set up MemPalace — install the package, initialize a palace, configure MCP server, and verify everything works.
allowed-tools: Bash, Read, Write, Edit, Glob, Grep
---
Invoke the mempalace skill (using the Skill tool) with the `init` command, then follow its instructions.
+7
View File
@@ -0,0 +1,7 @@
---
description: Mine projects and conversations into the MemPalace. Supports project files, conversation exports, and auto-classification.
argument-hint: Path to project or conversation export to mine.
allowed-tools: Bash, Read, Write, Edit, Glob, Grep
---
Invoke the mempalace skill (using the Skill tool) with the `mine` command, then follow its instructions.
+7
View File
@@ -0,0 +1,7 @@
---
description: Search your memories across the MemPalace using semantic search with wing/room filtering.
argument-hint: Search query, optionally with wing/room filters.
allowed-tools: Bash, Read
---
Invoke the mempalace skill (using the Skill tool) with the `search` command, then follow its instructions.
+6
View File
@@ -0,0 +1,6 @@
---
description: Show the current state of your memory palace — wings, rooms, drawer counts, and suggestions.
allowed-tools: Bash, Read
---
Invoke the mempalace skill (using the Skill tool) with the `status` command, then follow its instructions.
+7 -1
View File
@@ -6,7 +6,13 @@
"name": "milla-jovovich" "name": "milla-jovovich"
}, },
"license": "MIT", "license": "MIT",
"skills": "./skills/", "commands": [],
"skills": [
{
"name": "mempalace",
"file": "skills/mempalace/SKILL.md"
}
],
"mcp": { "mcp": {
"mempalace": { "mempalace": {
"command": "python3", "command": "python3",
-12
View File
@@ -1,12 +0,0 @@
---
name: mempalace:help
description: Show comprehensive MemPalace help — available skills, MCP tools, CLI commands, hooks, and architecture.
---
Run the following command and display its output to the user:
```bash
mempalace instructions help
```
Display the output as-is — it's pre-formatted markdown.
-18
View File
@@ -1,18 +0,0 @@
---
name: mempalace:init
description: Set up MemPalace — install the package, initialize a palace, configure MCP server, and verify everything works.
---
Run the following command to get setup instructions, then follow them step by step:
```bash
mempalace instructions init
```
If the command fails (mempalace not installed yet), first install it:
```bash
pip install mempalace
```
Then run the instructions command again and follow the output.
+35
View File
@@ -0,0 +1,35 @@
---
name: mempalace
description: MemPalace — mine projects and conversations into a searchable memory palace. Use when asked about mempalace, memory palace, mining memories, searching memories, or palace setup.
allowed-tools: Bash, Read, Write, Edit, Glob, Grep
---
# MemPalace
A searchable memory palace for AI — mine projects and conversations, then search them semantically.
## Prerequisites
Ensure `mempalace` is installed:
```bash
mempalace --version
```
If not installed:
```bash
pip install mempalace
```
## Usage
MemPalace provides dynamic instructions via the CLI. To get instructions for any operation:
```bash
mempalace instructions <command>
```
Where `<command>` is one of: `help`, `init`, `mine`, `search`, `status`.
Run the appropriate instructions command, then follow the returned instructions step by step.
-12
View File
@@ -1,12 +0,0 @@
---
name: mempalace:mine
description: Mine projects and conversations into the MemPalace. Supports project files, conversation exports, and auto-classification.
---
Run the following command to get mining instructions, then follow them:
```bash
mempalace instructions mine
```
Follow the returned instructions to mine the user's data.
-12
View File
@@ -1,12 +0,0 @@
---
name: mempalace:search
description: Search your memories across the MemPalace using semantic search with wing/room filtering.
---
Run the following command to get search instructions, then follow them:
```bash
mempalace instructions search
```
Follow the returned instructions to execute the user's search query.
-12
View File
@@ -1,12 +0,0 @@
---
name: mempalace:status
description: Show the current state of your memory palace — wings, rooms, drawer counts, and suggestions.
---
Run the following command to get status instructions, then follow them:
```bash
mempalace instructions status
```
Follow the returned instructions to display the palace status.