memento-mori-jester 0.1.86 → 0.1.87
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 +5 -0
- package/ROADMAP.md +1 -0
- package/docs/RELEASE_NOTES_v0.1.87.md +44 -0
- package/package.json +1 -1
- package/scripts/check-consumer-quickstart.mjs +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to Memento Mori Jester are tracked here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.1.87
|
|
8
|
+
|
|
9
|
+
- Fixed `npm run consumer:quickstart:check -- --package memento-mori-jester@latest` so registry package specs install through `npm install --save-dev <spec>` in the temporary consumer project.
|
|
10
|
+
- Verified both local packed-package and published-package consumer quickstart smoke modes after the v0.1.86 release.
|
|
11
|
+
|
|
7
12
|
## 0.1.86
|
|
8
13
|
|
|
9
14
|
- Added `examples/consumer-quickstart`, a minimal installed-project fixture for proving the first `doctor`, `summary`, and framework tuning commands from a consumer repo.
|
package/ROADMAP.md
CHANGED
|
@@ -6,6 +6,7 @@ Memento Mori Jester is usable today as a CLI, MCP server, GitHub Action, and git
|
|
|
6
6
|
|
|
7
7
|
## Recently Shipped
|
|
8
8
|
|
|
9
|
+
- Consumer quickstart registry-mode fix in v0.1.87, proving the same smoke against `memento-mori-jester@latest` after publish.
|
|
9
10
|
- Consumer quickstart smoke in v0.1.86, proving the first installed-project commands from a minimal repo before release.
|
|
10
11
|
- Adoption smoke CI example in v0.1.85, giving real repos a read-only workflow for `doctor`, `summary`, and packaged framework tuning checks.
|
|
11
12
|
- Framework tuning doctor in v0.1.84, proving cookbook recipes execute through the built CLI with generated preset configs before release.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Memento Mori Jester v0.1.87
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
This patch fixes the new consumer quickstart check's registry-package mode. The v0.1.86 local packed-package smoke passed, but the post-publish `--package memento-mori-jester@latest` smoke exposed that full npm specs were being written as dependency versions.
|
|
6
|
+
|
|
7
|
+
## What Changed
|
|
8
|
+
|
|
9
|
+
- Updated `scripts/check-consumer-quickstart.mjs` to install package specs with `npm install --save-dev <spec>`.
|
|
10
|
+
- Kept the same minimal consumer fixture and command checks.
|
|
11
|
+
- Updated changelog, roadmap, and release notes for the patch.
|
|
12
|
+
|
|
13
|
+
## Public Interface
|
|
14
|
+
|
|
15
|
+
- No CLI command changes.
|
|
16
|
+
- No MCP tool changes.
|
|
17
|
+
- No config schema changes.
|
|
18
|
+
- No review rule, scoring, matching, or verdict behavior changes.
|
|
19
|
+
- No GitHub Action input changes.
|
|
20
|
+
- Maintainer script behavior fix only: `npm run consumer:quickstart:check -- --package memento-mori-jester@latest` now works.
|
|
21
|
+
|
|
22
|
+
## Release Validation
|
|
23
|
+
|
|
24
|
+
```powershell
|
|
25
|
+
npm.cmd test
|
|
26
|
+
npm.cmd run consumer:quickstart:check
|
|
27
|
+
npm.cmd run consumer:quickstart:check -- --package memento-mori-jester@latest
|
|
28
|
+
npm.cmd run pack:dry
|
|
29
|
+
git diff --check
|
|
30
|
+
git diff | node .\dist\cli.js diff --fail-on block --subject "v0.1.87 consumer quickstart registry smoke"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Expected:
|
|
34
|
+
|
|
35
|
+
- local packed-package consumer quickstart smoke passes,
|
|
36
|
+
- registry-spec consumer quickstart smoke passes,
|
|
37
|
+
- GitHub Release and npm Publish complete from the `v0.1.87` tag.
|
|
38
|
+
|
|
39
|
+
After publish:
|
|
40
|
+
|
|
41
|
+
```powershell
|
|
42
|
+
npm.cmd view memento-mori-jester version --silent
|
|
43
|
+
npm.cmd run consumer:quickstart:check -- --package memento-mori-jester@latest
|
|
44
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memento-mori-jester",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.87",
|
|
4
4
|
"description": "A local court-jester sidecar for AI coding agents: review plans, commands, diffs, and final claims before they get too pleased with themselves.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -170,12 +170,10 @@ function packLocalPackage(destination) {
|
|
|
170
170
|
function installPackageSpec(consumerDir, spec) {
|
|
171
171
|
const packagePath = join(consumerDir, "package.json");
|
|
172
172
|
const packageJson = JSON.parse(readFileSync(packagePath, "utf8"));
|
|
173
|
-
packageJson.devDependencies
|
|
174
|
-
"memento-mori-jester": spec
|
|
175
|
-
};
|
|
173
|
+
delete packageJson.devDependencies;
|
|
176
174
|
writeFileSync(packagePath, `${JSON.stringify(packageJson, null, 2)}\n`);
|
|
177
175
|
|
|
178
|
-
runNpm(["install", "--ignore-scripts", "--no-audit", "--no-fund"], { cwd: consumerDir });
|
|
176
|
+
runNpm(["install", "--save-dev", spec, "--ignore-scripts", "--no-audit", "--no-fund"], { cwd: consumerDir });
|
|
179
177
|
}
|
|
180
178
|
|
|
181
179
|
function runNpm(commandArgs, options = {}) {
|