summaryrefslogtreecommitdiff
path: root/docs/mcp-features-summary.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-11 20:53:45 +0200
committerPaul Buetow <paul@buetow.org>2026-02-11 20:53:45 +0200
commita82d0b061a02fd395de293353386d0b16cbe6b18 (patch)
tree55ac689596267b43d5dbcdc608cfc23472c2faf8 /docs/mcp-features-summary.md
parent8312a19b4e1f9849aae9912433824b19e03a8daf (diff)
docs: update all paths to consolidated .local/hexai directory
Update all documentation to reflect new directory structure: - Cache: ~/.local/hexai/cache/ - State: ~/.local/hexai/state/ - Data: ~/.local/hexai/data/ Updated files: - README.md - docs/mcp-setup.md - docs/mcp-prompts.md - docs/mcp-managing-prompts.md - docs/mcp-features-summary.md - docs/mcp-automatic-backups.md - docs/mcp-server-complete.md Amp-Thread-ID: https://ampcode.com/threads/T-019c4e03-73db-70a2-ae27-3e1cc31d59c3 Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'docs/mcp-features-summary.md')
-rw-r--r--docs/mcp-features-summary.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/mcp-features-summary.md b/docs/mcp-features-summary.md
index 8cfc141..090b616 100644
--- a/docs/mcp-features-summary.md
+++ b/docs/mcp-features-summary.md
@@ -41,7 +41,7 @@ The hexai-mcp-server is a complete Model Context Protocol implementation with pr
### 5. Storage & Organization
- ✅ **JSONL format** - Git-friendly, human-readable
- ✅ **Separate files** - `default.jsonl` (built-in), `user.jsonl` (custom)
-- ✅ **XDG-compliant** - `~/.local/share/hexai/prompts/`
+- ✅ **XDG-compliant** - `~/.local/hexai/data/prompts/`
- ✅ **Configurable** - Override via flag, env var, or config file
- ✅ **Tag-based categorization** - Filter and organize prompts
@@ -123,7 +123,7 @@ hexai-prompt restore 1
```bash
# Edit user.jsonl directly
-$EDITOR ~/.local/share/hexai/prompts/user.jsonl
+$EDITOR ~/.local/hexai/data/prompts/user.jsonl
# Validate after editing
hexai-prompt validate
@@ -141,7 +141,7 @@ hexai-prompt validate
Every write operation (create/update/delete) automatically creates a timestamped backup:
```
-~/.local/share/hexai/prompts/backups/
+~/.local/hexai/data/prompts/backups/
├── user.jsonl.20260210-190358
├── user.jsonl.20260210-192145
└── user.jsonl.20260210-193422
@@ -270,7 +270,7 @@ git commit -m "Add team prompt"
git push
# Team members import
-jq -c . team-prompt.json >> ~/.local/share/hexai/prompts/user.jsonl
+jq -c . team-prompt.json >> ~/.local/hexai/data/prompts/user.jsonl
```
## 🔧 Configuration
@@ -305,7 +305,7 @@ jq -c . team-prompt.json >> ~/.local/share/hexai/prompts/user.jsonl
### Storage Location
-**Default**: `~/.local/share/hexai/prompts/`
+**Default**: `~/.local/hexai/data/prompts/`
**Override** (priority order):
1. `--prompts-dir /path/to/prompts` (CLI flag)