You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
## [0.3.5] - 2026-05-14
6
6
7
7
### Added
8
-
-**Package rename** — the npm package is now `mex-cli`; the installed binary command remains `mex`.
8
+
-**Package rename** — the npm package is now `mex-agent`; the installed binary command remains `mex`.
9
9
-**Agent memory mode** — `mex setup --mode agent-memory` creates templates for persistent-agent, homelab, OpenClaw-style, and operational-memory workspaces.
10
10
-**Heartbeat checks** — `mex heartbeat` runs lightweight scheduled health checks over optional `last_updated` frontmatter, stale context, memory cleanup metadata, and old daily memory files.
11
11
-**Scheduled heartbeat loop** — `mex watch --interval` runs heartbeat repeatedly in the foreground while preserving the existing post-commit hook behavior for plain `mex watch`.
@@ -41,10 +41,10 @@ Works with any stack — JavaScript, Python, Go, Rust, and more.
41
41
42
42
## Install
43
43
44
-
The npm package is named `mex-cli` (`mex` was taken on npm). The CLI command is `mex`.
44
+
The npm package is named `mex-agent` (`mex` was taken on npm). The CLI command is `mex`.
45
45
46
46
```bash
47
-
npx mex-cli setup
47
+
npx mex-agent setup
48
48
```
49
49
50
50
That's it. The setup command creates the `.mex/` scaffold, asks which AI tool you use, pre-scans your codebase, and generates a targeted prompt to populate everything. Takes about 5 minutes.
@@ -59,14 +59,14 @@ mex sync # fix drift
59
59
If you skip global install, everything still works via npx:
60
60
61
61
```bash
62
-
npx mex-cli check # drift score
63
-
npx mex-cli sync # fix drift
62
+
npx mex-agent check # drift score
63
+
npx mex-agent sync # fix drift
64
64
```
65
65
66
66
You can install globally later at any time:
67
67
68
68
```bash
69
-
npm install -g mex-cli
69
+
npm install -g mex-agent
70
70
```
71
71
72
72
## Drift Detection
@@ -91,7 +91,7 @@ Scoring: starts at 100. Deducts -10 per error, -3 per warning, -1 per info.
91
91
92
92
## CLI
93
93
94
-
All commands run from your **project root**. If you didn't install globally, replace `mex` with `npx mex-cli`.
94
+
All commands run from your **project root**. If you didn't install globally, replace `mex` with `npx mex-agent`.
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ This release turns mex from a drift-aware scaffold CLI into a small operational
4
4
5
5
The original goal of mex is still the same: keep agent context useful, navigable, and honest without dumping an entire project into the prompt. v0.3 keeps the stable v0.2 scaffold architecture, then adds the pieces that make mex work better for persistent agents, homelabs, OpenClaw-style operational workspaces, and long-running project memory.
6
6
7
-
npm package: `mex-cli@0.3.5`
7
+
npm package: `mex-agent@0.3.5`
8
8
9
-
Package rename: the npm package is now `mex-cli`. The binary command remains `mex`.
9
+
Package rename: the npm package is now `mex-agent`. The binary command remains `mex`.
10
10
11
11
## Highlights
12
12
@@ -23,7 +23,7 @@ Package rename: the npm package is now `mex-cli`. The binary command remains `me
23
23
v0.3 adds a first-class agent-memory setup mode:
24
24
25
25
```bash
26
-
npx mex-cli setup --mode agent-memory
26
+
npx mex-agent setup --mode agent-memory
27
27
```
28
28
29
29
This is for projects where the "codebase" is not necessarily the main thing being remembered. Examples:
@@ -251,13 +251,13 @@ Those need a bigger architecture story and are not part of this stable v0.3 rele
251
251
Install or update:
252
252
253
253
```bash
254
-
npm install -g mex-cli@latest
254
+
npm install -g mex-agent@latest
255
255
```
256
256
257
257
Or use directly:
258
258
259
259
```bash
260
-
npx mex-cli@latest setup
260
+
npx mex-agent@latest setup
261
261
```
262
262
263
263
For an existing project, no scaffold reset is needed. Update the package, then run:
0 commit comments