m3-install
SolidInstall or upgrade the m3-memory CLI + system payload.
AI & Automation 16 stars
3 forks Updated today Apache-2.0
Install
Quality Score: 77/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# M3 Install
## When to Use
Use this skill when the user wants to install or upgrade the m3-memory system, CLI executables, embedder service, or database schema.
## Instructions
Step 1 — detect current state. Try in order:
```bash
mcp-memory --version # plain CLI
python -m m3_memory.cli --version # module form (Windows --user)
```
Step 2 — branch on what step 1 printed.
**Not installed (both commands fail):**
- On Linux / macOS, suggest:
```bash
curl -fsSL https://raw.githubusercontent.com/skynetcmd/m3-memory/main/install.sh | bash
```
- On Windows, suggest:
```powershell
pip install --user m3-memory
# then add %APPDATA%\Python\Python<NN>\Scripts to user PATH if needed
```
Link them to `https://github.com/skynetcmd/m3-memory/blob/main/docs/install_windows.md` for full instructions.
After install completes, tell the user to re-run `/m3:health` in a NEW session (PATH changes don't apply to the current one).
**Already installed (a version printed):**
- On Linux / macOS, run:
```bash
pipx upgrade m3-memory
mcp-memory update
```
- On Windows, run:
```powershell
pip install --user --upgrade m3-memory
python -m m3_memory.cli update
```
- Then `/m3:health` to verify.
Step 3 — print one-line summary of what action was taken or recommended.
Details
- Author
- skynetcmd
- Repository
- skynetcmd/m3-memory
- Created
- 5 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
m3-help
List all m3-memory slash commands / skills and what they do.
16 Updated today
skynetcmd AI & Automation Solid
m3-health
Health check — package version, installed payload, chatlog DB row count, per-agent hook state.
16 Updated today
skynetcmd AI & Automation Solid
m3-status
Chatlog subsystem status — row counts, queue depth, spill, last capture, hook health.
16 Updated today
skynetcmd