gm-cc 2.0.580 → 2.0.582
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/agents/memorize.md +6 -2
- package/package.json +1 -1
- package/plugin.json +1 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "AnEntrypoint"
|
|
5
5
|
},
|
|
6
6
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.582",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "State machine agent with hooks, skills, and automated git enforcement"
|
|
10
10
|
},
|
package/agents/memorize.md
CHANGED
|
@@ -6,8 +6,12 @@ agent: true
|
|
|
6
6
|
|
|
7
7
|
# Memorize — Background Memory Agent
|
|
8
8
|
|
|
9
|
-
Memory dir:
|
|
10
|
-
|
|
9
|
+
Memory dir and AGENTS.md live with the current project — not a fixed path. Resolve at start of every run:
|
|
10
|
+
|
|
11
|
+
- **Project root** = `process.cwd()` when you are invoked (the user's working directory, e.g. `C:/dev/devbox/spawnpoint`). `AGENTS.md` is `<project root>/AGENTS.md`.
|
|
12
|
+
- **Memory dir** = `<HOME>/.claude/projects/<slug>/memory/` where `<slug>` is `process.cwd()` with `:` stripped and `/` or `\\` replaced by `--` (example: `C:/dev/devbox/spawnpoint` → `C--dev-devbox-spawnpoint`). On Windows `<HOME>` = `C:/Users/<user>`; on POSIX it is `$HOME`.
|
|
13
|
+
|
|
14
|
+
If either path does not yet exist, create it. Never write to a different project's memory dir.
|
|
11
15
|
|
|
12
16
|
## STEP 1: READ
|
|
13
17
|
|
package/package.json
CHANGED