Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/parallelclaw/memex-mvp/install-memexnpx skills add parallelclaw/memex-mvp --skill install-memexgit clone --depth 1 https://github.com/parallelclaw/memex-mvpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/parallelclaw/memex-mvp/install-memex)<a href="https://agentmods.dev/skills/parallelclaw/memex-mvp/install-memex"><img src="https://agentmods.dev/badge/skills/parallelclaw/memex-mvp/install-memex.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00194 | $0.05969 |
| Opus 5 | $0.00097 | $0.02985 |
| Sonnet 5 | $0.00039 | $0.01194 |
| Haiku 4.5 | $0.00019 | $0.00597 |
Grade E, and why
install-memex scanned grade E with 4 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
| `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 user "yes"**. | — | Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
| `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) — o Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
| Edit `~/.claude/settings.json`, `~/.cursor/mcp.json`, etc. | Adds the MCP-server entry so the user's AI client can call memex tools. Existing entries are preserved (merge, never overwrite). | Each MCP client documents Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
description: Make Claude, Cursor, and OpenClaw remember every AI conversation forever — one local SQLite corpus shared across all of them. Installs memex (local-first MCP server) in ~60 seconds via curl one-liner. Includ How it starts
The opening of the file, as written. The whole thing — 343 lines — stays where its author put it; the contents beside it link to each section on GitHub.
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 — 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, source: 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 |
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 user "yes". | — |
memex-sync install (LaunchAgent) |
Registers a macOS LaunchAgent so memex daemon auto-starts on login. The daemon itself is local-only: it watches ~/.claude/projects/, ~/Downloads/Telegram Desktop/, etc., and writes to ~/.memex/data/memex.db. Zero outbound network traffic. |
LaunchAgent plist at ~/Library/LaunchAgents/com.parallelclaw.memex.sync.plist is human-readable |
Edit ~/.claude/settings.json, ~/.cursor/mcp.json, etc. |
Adds the MCP-server entry so the user's AI client can call memex tools. Existing entries are preserved (merge, never overwrite). | Each MCP client documents this config format |
tell application "Terminal" to do script "claude" (AppleScript) |
Used by the optional clickable notification banner — opens a new Terminal tab + launches claude when the user clicks. Default OFF. |
Requires brew install terminal-notifier (optional dep) |
brew install terminal-notifier |
Optional dep for clickable banners. Skill mentions it but does NOT install without user OK. | github.com/julienXX/terminal-notifier |
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 343 lines · 194 tokens per session scan E 868b1d355d0f
install-memex is a skill published in the GitHub repository parallelclaw/memex-mvp (13 stars, last pushed 2mo ago), licensed MIT. It adds 194 tokens to every session and 5,969 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it E with 4 findings (asks for root, downloads and executes remote code, reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
memstate-ai
Persistent, versioned memory for AI agents via Memstate AI. Alternative to the Memstate MCP plugin — use for storing facts, recalling memory, managing projects, and semantic search of agent summaries. Supports Markdown ingestion and direct keypath = value assignment. Requires MEMSTATEAPIKEY.
dashboard
Open OwnMem Console, the local dashboard for this repository's memory. Use when the user asks to open the dashboard, see memory metrics, check adoption or recall quality, or set up the optional embedding lane. Requires a repository initialized with the dashboard layer.
recall
Recall this repository's OwnMem local memory before changing code, and keep it healthy. Use when a repository contains .ownmem/, when past debugging lessons could apply ("have we hit this before", "why is it done this way"), or when the user mentions ownmem, project memory, or recalling across sessions.
init
Install or update OwnMem in the current repository. Use when the user asks to set up OwnMem, add local project memory for coding agents, or refresh an existing OwnMem installation after a version bump.
memorize
Curates insights from reflections and critiques into CLAUDE.md using Agentic Context Engineering.
everme-memory
Use EverMe cloud memory proactively when the user refers to previous conversations, earlier decisions, "last time", "remember when", existing project conventions, or previously solved errors, and save durable user preferences, habits, and decisions the moment they are stated. Do not repeat a search when the host…