memgineering 0.18.1 → 0.18.2
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/CHANGELOG.md +17 -0
- package/assets/MEMGINEERING.md +1 -1
- package/assets/memgineering-setup/SKILL.md +6 -1
- package/dist/index.js +7 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,23 @@ language the reader wants. The bilingual rule the monorepo applies to
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.18.2] — 2026-08-31
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Setup no longer contradicts itself about Codex hooks.** Codex installs the
|
|
19
|
+
two hooks and runs neither until you answer a review panel; setup said so and
|
|
20
|
+
then announced two lines later that the hooks all worked. On a Codex install
|
|
21
|
+
it now says recall and remember work and the hooks start after that review.
|
|
22
|
+
- **The Codex hook notice names the key.** Press `t` to trust them. It also says
|
|
23
|
+
that the trust is recorded per hook content, so an upgrade that changes a hook
|
|
24
|
+
asks again — otherwise that reads as something breaking on its own.
|
|
25
|
+
|
|
26
|
+
### Agent guidance
|
|
27
|
+
|
|
28
|
+
- `memgineering-setup` gained the same detail, including where Codex records the
|
|
29
|
+
trust (`~/.codex/config.toml`). Restart your agent session after upgrading.
|
|
30
|
+
|
|
14
31
|
## [0.18.1] — 2026-08-30
|
|
15
32
|
|
|
16
33
|
### Fixed
|
package/assets/MEMGINEERING.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: memgineering
|
|
3
3
|
description: Use whenever the user refers to something they told you before, asks what was decided, tells you something worth keeping, or settles something that should hold next time. The memory lives in their own folder and outlives this session; check it before answering from guesswork, and write to it when you learn something durable.
|
|
4
4
|
type: skill
|
|
5
|
-
version: 0.18.
|
|
5
|
+
version: 0.18.2
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# memgineering
|
|
@@ -139,7 +139,12 @@ again. Two outcomes are worth recognising:
|
|
|
139
139
|
|
|
140
140
|
The hooks go to Claude Code and Codex, and only there. Codex asks the user to
|
|
141
141
|
review new hooks once at the start of the next session and runs neither until
|
|
142
|
-
they answer
|
|
142
|
+
they answer — **tell them the key: `t` trusts them.** Measured on Codex
|
|
143
|
+
0.149.1: both hooks show `Installed 1 / Active 0` until that panel is
|
|
144
|
+
answered, and the trust is recorded per hook CONTENT
|
|
145
|
+
(`[hooks.state."<path>:<event>:0:0"] trusted_hash`) in `~/.codex/config.toml`,
|
|
146
|
+
so an upgrade that changes a hook asks again. Somebody who is not told this
|
|
147
|
+
reads the silence as an install that did not take.
|
|
143
148
|
|
|
144
149
|
Grok is the case worth knowing, because the obvious guess is wrong: it has
|
|
145
150
|
hooks, more events than either of those two, and `~/.grok/hooks/` needs no
|
package/dist/index.js
CHANGED
|
@@ -7426,7 +7426,7 @@ function setupCommand() {
|
|
|
7426
7426
|
if (choice.tools.some((t) => t.id === "codex")) {
|
|
7427
7427
|
printHuman(
|
|
7428
7428
|
c.gray(
|
|
7429
|
-
" \u2192 Codex will ask you to review these hooks once, next time it
|
|
7429
|
+
" \u2192 Codex will ask you to review these hooks once, next time it\n starts: press `t` to trust them. Until you do, neither one runs,\n and an upgrade that changes a hook asks again."
|
|
7430
7430
|
)
|
|
7431
7431
|
);
|
|
7432
7432
|
}
|
|
@@ -7460,7 +7460,12 @@ function setupCommand() {
|
|
|
7460
7460
|
Could not touch ${refused.length} file(s): ${label(refused)}`)
|
|
7461
7461
|
);
|
|
7462
7462
|
}
|
|
7463
|
-
|
|
7463
|
+
const codexHooksPending = choice.hook && choice.tools.some((t) => t.id === "codex");
|
|
7464
|
+
printHuman(
|
|
7465
|
+
c.bold(
|
|
7466
|
+
codexHooksPending ? "\n Ready to use now \u2014 recall and remember work; the hooks start once\n Codex has asked you about them." : "\n Ready to use now \u2014 recall, remember and the hooks all work."
|
|
7467
|
+
)
|
|
7468
|
+
);
|
|
7464
7469
|
printHuman(
|
|
7465
7470
|
c.gray(" The guidance files just written are read at the start of a session,")
|
|
7466
7471
|
);
|
package/package.json
CHANGED