install-memexlisted
Install: claude install-skill parallelclaw/memex-mvp
# Install memex
## ⚠ For ClawHub reviewers, security scanners, and curious users
This skill is an **installer for memex** — a local-first MCP memory server.
Static scanners flag several patterns as "suspicious"; every single one is
intentional and necessary for installing a memory tool. Below is the full
list so a human reviewer (or the user) can verify legitimacy in one glance.
**What the skill instructs the agent to do:**
| Action | Why | Source-of-truth |
|---|---|---|
| `curl -fsSL https://memex.parallelclaw.ai/install.sh \| bash` | Fast-path installer (the user can `\| less` first to inspect) | [docs/install.sh](https://github.com/parallelclaw/memex-mvp/blob/main/docs/install.sh) — open-source bash, hosted on GitHub Pages |
| `npm install -g memex-mvp` | Manual install (fallback if user declines the curl) | [npmjs.com/package/memex-mvp](https://www.npmjs.com/package/memex-mvp), source: [github.com/parallelclaw/memex-mvp](https://github.com/parallelclaw/memex-mvp) |
| `echo 'export PATH=...' >> ~/.zshrc` | EACCES auto-fix — moves npm prefix to `~/.npm-global` so `npm install -g` works without sudo. **Idempotent** — re-running is safe. | Standard npm prefix workaround [docs.npmjs.com](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally) |
| `sudo npm install -g memex-mvp` | Offered as Plan A on EACCES if user explicitly wants quick (not default — skill recommends the no-sudo prefix fix). Skill **never runs sudo without explicit