6c9c7fe7f3
CI / integration tests (3.13) (push) Failing after 1s
Commit lint / pull request title (push) Has been skipped
Docs / links (push) Failing after 1s
CI / unit tests (3.13) (push) Failing after 1s
CI / lint (push) Failing after 1s
CI / integration tests (push) Failing after 1s
CI / package build (push) Failing after 1s
Commit lint / commit messages (push) Failing after 1s
CI / unit tests (push) Failing after 1s
22 lines
646 B
Markdown
22 lines
646 B
Markdown
---
|
|
description: Open the EverMem Memory Hub to view statistics, search memories, and explore timeline
|
|
---
|
|
|
|
When the user runs this command:
|
|
|
|
1. First, start the proxy server in the background using the Bash tool:
|
|
```bash
|
|
node "${CLAUDE_PLUGIN_ROOT}/server/proxy.js" &
|
|
```
|
|
|
|
2. Then, construct the Memory Hub URL with the actual API key using Bash:
|
|
```bash
|
|
echo "http://localhost:3456/?key=${EVERMEM_API_KEY}"
|
|
```
|
|
|
|
3. Share a simple message with the user like:
|
|
"Memory Hub server started. Open this URL to view your memories:
|
|
[the URL from step 2]"
|
|
|
|
Do NOT show the bash commands or code blocks to the user. Just run them and share the final URL.
|