memgineering 0.7.2 → 0.7.3
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 +13 -0
- package/assets/MEMGINEERING.md +1 -1
- package/dist/index.js +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,19 @@ language the reader wants. The bilingual rule the monorepo applies to
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.7.3] — 2026-08-18
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **The "not set up yet" notice now reaches `--version`, `--help`, and a bare
|
|
19
|
+
`memgineering`.** It was on every verb and none of those, which is backwards:
|
|
20
|
+
a fresh agent session, given only "install memgineering", installed it and then
|
|
21
|
+
ran `memgineering --version` to check its own work — the first thing anybody
|
|
22
|
+
does after an install, and the one path the notice missed. It reported success
|
|
23
|
+
and stopped, having never been told setup exists. `--version` still prints
|
|
24
|
+
nothing but the version to stdout; the notice is on stderr, and it is printed
|
|
25
|
+
once per run however many paths would have said it.
|
|
26
|
+
|
|
14
27
|
## [0.7.2] — 2026-08-18
|
|
15
28
|
|
|
16
29
|
Everyone who runs this CLI is an agent, and an agent can only act on what a
|
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.7.
|
|
5
|
+
version: 0.7.3
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# memgineering
|
package/dist/index.js
CHANGED
|
@@ -14218,10 +14218,13 @@ function buildProgram() {
|
|
|
14218
14218
|
return program;
|
|
14219
14219
|
}
|
|
14220
14220
|
var WITHOUT_NEXT_STEP = /* @__PURE__ */ new Set(["setup", "login", "logout", "whoami", "update", "guard"]);
|
|
14221
|
+
var announced = false;
|
|
14221
14222
|
async function announceNextStep(commandName) {
|
|
14223
|
+
if (announced) return;
|
|
14222
14224
|
if (WITHOUT_NEXT_STEP.has(commandName)) return;
|
|
14223
14225
|
const step = await currentNextStep();
|
|
14224
14226
|
if (step === null) return;
|
|
14227
|
+
announced = true;
|
|
14225
14228
|
process.stderr.write(`
|
|
14226
14229
|
${step.markdown}
|
|
14227
14230
|
|
|
@@ -14247,9 +14250,14 @@ function makeParseErrorsActionable(program) {
|
|
|
14247
14250
|
};
|
|
14248
14251
|
decorate(program);
|
|
14249
14252
|
}
|
|
14253
|
+
function answersWithoutAction(argv) {
|
|
14254
|
+
const first = argv[2];
|
|
14255
|
+
return first === void 0 || first.startsWith("-");
|
|
14256
|
+
}
|
|
14250
14257
|
async function run3(argv) {
|
|
14251
14258
|
const program = buildProgram();
|
|
14252
14259
|
const cleaned = argv.filter((a, i) => !(a === "--" && i >= 2));
|
|
14260
|
+
if (answersWithoutAction(cleaned)) await announceNextStep("");
|
|
14253
14261
|
await program.parseAsync(cleaned);
|
|
14254
14262
|
if (argv[2] !== "update") await backgroundUpdateNotice();
|
|
14255
14263
|
}
|
package/package.json
CHANGED