memento-mori-jester 0.1.76 → 0.1.77

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 CHANGED
@@ -4,6 +4,12 @@ All notable changes to Memento Mori Jester are tracked here.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 0.1.77
8
+
9
+ - Added a repo-local promo/share kit with X post copy, a 30-second demo script, posting checklist, and asset guidance.
10
+ - Added four vertical still images extracted from the existing X demo video for single-post and thread use.
11
+ - Linked the promo kit from the README while keeping `promo/` outside the npm package.
12
+
7
13
  ## 0.1.76
8
14
 
9
15
  - Added eight real-world quiet-pass fixtures across python, security, web, and AI preset slices, growing the corpus to 216 fixtures.
package/README.md CHANGED
@@ -12,7 +12,7 @@ It roasts the reasoning, not the human.
12
12
 
13
13
  [![Memento Mori Jester terminal demo](docs/demo-terminal.svg)](docs/DEMO.md)
14
14
 
15
- See the full [demo transcript](docs/DEMO.md).
15
+ See the full [demo transcript](docs/DEMO.md), or use the [promo/share kit](promo) for X post copy, stills, and a 30-second demo script.
16
16
 
17
17
  ## Start Here
18
18
 
@@ -426,6 +426,7 @@ More setup examples:
426
426
  - [MCP Tool Reference](docs/MCP_TOOLS.md)
427
427
  - [GitHub Actions](docs/GITHUB_ACTIONS.md)
428
428
  - [Demo Script](docs/DEMO.md)
429
+ - [Promo Share Kit](promo)
429
430
  - [Examples](examples)
430
431
  - [Preset Example Packs](examples/presets)
431
432
  - [Review Fixtures](examples/fixtures)
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
+ - Promo/share kit in v0.1.77, adding X post copy, a short demo script, a posting checklist, and still images from the existing demo video.
9
10
  - Real-world preset quiet-pass curation in v0.1.76, adding eight safe examples across python, security, web, and AI workflows while keeping fixture coverage gaps clean.
10
11
  - Markdown fixture report export in v0.1.75 for paste-ready coverage snapshots in release notes, GitHub issues, and maintainer updates.
11
12
  - API fixture curation in v0.1.74, adding six quiet-pass examples for schema parsing, query-builder filters, enabled rate limiting, read-only Prisma migration diffs, signed-webhook docs, and OpenAPI schema docs.
@@ -67,7 +68,7 @@ Memento Mori Jester is usable today as a CLI, MCP server, GitHub Action, and git
67
68
 
68
69
  - Collect real-world reports for the next lowest-count preset slices now highlighted by `fixtures:report`.
69
70
  - Add more framework-specific false-positive examples from real reports so tuning guidance keeps getting sharper.
70
- - Add a promo/share kit with X post copy, still images, and a simple sharing checklist.
71
+ - Add a fresh demo render that reflects the latest release number and fixture totals.
71
72
 
72
73
  ## Quality And Safety
73
74
 
@@ -0,0 +1,46 @@
1
+ # Memento Mori Jester v0.1.77
2
+
3
+ ## Summary
4
+
5
+ This release adds a repo-local promo/share kit so Memento Mori Jester is easier to explain and post publicly without changing runtime behavior.
6
+
7
+ ## What Changed
8
+
9
+ - Added [promo/README.md](../promo/README.md) as the entry point for sharing assets.
10
+ - Added [promo/share-kit/README.md](../promo/share-kit/README.md) with still-image guidance, alt text, thread order, and a posting checklist.
11
+ - Added [promo/share-kit/x-posts.md](../promo/share-kit/x-posts.md) with short, medium, builder-focused, and thread-style X copy.
12
+ - Added [promo/share-kit/demo-script.md](../promo/share-kit/demo-script.md) with a 30-second walkthrough and a 10-second reply version.
13
+ - Added four vertical stills extracted from the existing X demo video.
14
+ - Linked the promo kit from the README.
15
+
16
+ ## Public Interface
17
+
18
+ - No CLI command changes.
19
+ - No MCP tool changes.
20
+ - No config schema changes.
21
+ - No review rule, scoring, or verdict behavior changes.
22
+ - No GitHub Action behavior changes.
23
+ - `promo/` remains outside the npm package `files` list.
24
+
25
+ ## Release Validation
26
+
27
+ ```powershell
28
+ npm.cmd test
29
+ npm.cmd run demo:svg:check
30
+ npm.cmd run pack:dry
31
+ git diff --check
32
+ git diff | node .\dist\cli.js diff --fail-on block --subject "v0.1.77 promo share kit"
33
+ ```
34
+
35
+ Additional checks:
36
+
37
+ ```powershell
38
+ git ls-files promo
39
+ npm.cmd pack --dry-run | Select-String "promo/"
40
+ ```
41
+
42
+ Expected:
43
+
44
+ - promo files are tracked in Git,
45
+ - promo files are not included in the npm tarball,
46
+ - GitHub Release and npm Publish complete from the `v0.1.77` tag.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memento-mori-jester",
3
- "version": "0.1.76",
3
+ "version": "0.1.77",
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": {