memgineering 0.15.1 → 0.16.0
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 +24 -0
- package/assets/MEMGINEERING.md +1 -1
- package/assets/memgineering-setup/SKILL.md +13 -1
- package/dist/index.js +1015 -897
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,30 @@ language the reader wants. The bilingual rule the monorepo applies to
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.16.0] — 2026-08-30
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- **Opt-in anonymized error reporting.** When the CLI itself breaks — the
|
|
19
|
+
server unreachable, the server's own 500, or an unhandled crash — it can
|
|
20
|
+
send an anonymous report: error kind, CLI/Node version, platform, and a
|
|
21
|
+
sanitized message excerpt (paths, tokens, and identifiers stripped;
|
|
22
|
+
200-character cap). Never note content, never commands, never identity —
|
|
23
|
+
the server table has no columns identity could land in, and expected
|
|
24
|
+
refusals (like `no vault is linked`) are never reported. Off by default:
|
|
25
|
+
`memgineering setup` asks once in a terminal, `--error-telemetry on|off`
|
|
26
|
+
answers by flag, and `MEMGINEERING_NO_TELEMETRY=1` overrides everything.
|
|
27
|
+
Reports are deleted after 90 days. The privacy policy
|
|
28
|
+
(api.memgineering.com/privacy, effective 2026-08-30) documents all of it.
|
|
29
|
+
|
|
30
|
+
### Agent guidance
|
|
31
|
+
|
|
32
|
+
- `memgineering-setup` explains the telemetry question and both
|
|
33
|
+
off-switches, so an agent running setup for someone can relay the decision
|
|
34
|
+
instead of guessing it. Setup never prompts without a terminal — an
|
|
35
|
+
unanswered question stays `undecided`, which behaves as off. Restart your
|
|
36
|
+
agent session after upgrading so the refreshed skill is what gets read.
|
|
37
|
+
|
|
14
38
|
## [0.15.1] — 2026-08-29
|
|
15
39
|
|
|
16
40
|
### 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.
|
|
5
|
+
version: 0.16.0
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# memgineering
|
|
@@ -33,7 +33,8 @@ that can read it.
|
|
|
33
33
|
memgineering setup --agent \
|
|
34
34
|
--tools claude,codex \ # default: everything detected
|
|
35
35
|
--auto-update on \ # default: on, and recommended
|
|
36
|
-
--hook on
|
|
36
|
+
--hook on \ # session-start summary + rules before an edit
|
|
37
|
+
--error-telemetry on # anonymized crash reports; unset = undecided (off)
|
|
37
38
|
```
|
|
38
39
|
|
|
39
40
|
`--dry-run` reports what would change without changing it.
|
|
@@ -60,6 +61,17 @@ terminal at all.
|
|
|
60
61
|
itself; `--hook on` means note summaries and their standing rules reach an agent
|
|
61
62
|
unasked. Recommend both, but they are theirs to decide.
|
|
62
63
|
|
|
64
|
+
**Error telemetry is theirs to decide too, and defaults to off.** With
|
|
65
|
+
`--error-telemetry on`, the CLI sends an anonymous report when it ITSELF
|
|
66
|
+
breaks: error kind, CLI/Node version, platform, and a sanitized message
|
|
67
|
+
excerpt — never note content, commands, or anything naming them, and the
|
|
68
|
+
server has no columns identity could land in. Unset leaves it `undecided`
|
|
69
|
+
(behaves as off) so a person can be asked later; a terminal `setup` asks
|
|
70
|
+
once; without a terminal it never prompts. Two off-switches at any time:
|
|
71
|
+
`memgineering setup --error-telemetry off`, or `MEMGINEERING_NO_TELEMETRY=1`
|
|
72
|
+
in the environment. Deleted server-side after 90 days; the full contract is
|
|
73
|
+
at api.memgineering.com/privacy.
|
|
74
|
+
|
|
63
75
|
**`--hook off` removes them**, it does not merely decline to add them, so it is
|
|
64
76
|
the answer when someone already has the callbacks and has decided they do not
|
|
65
77
|
want them. Only groups memgineering wrote are taken out; anything else in that
|