super-ux 0.40.0 → 0.41.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.41.0 — 2026-08-16
4
+
5
+ ### Added
6
+
7
+ - **`ux-audit` checks its batches against each other before the report reads as one
8
+ answer.** The batches run independently — in a large scope, in parallel subagents that
9
+ never see one another — and the summary then turns them into a single verdict. That is a
10
+ convergence, and a convergence trusts its inputs because they arrived.
11
+
12
+ Four things to look for: one root cause wearing several finding ids, which splits its own
13
+ priority across three rows; two batches that contradict on one screen, PASS in one and
14
+ FAIL in the other; a batch that returned nothing where its scenarios touch a screen
15
+ another batch flagged, since an empty result and an unrun batch look identical in a
16
+ summary; and a verdict whose evidence is weaker than its neighbour's, presented at equal
17
+ weight.
18
+
19
+ `Cross-batch: clean` is the answer most audits write, and writing it is the point. The
20
+ scenario base already had the same mechanism one layer up — `ux-scenarios` step 4,
21
+ *scenarios that contradict each other* — and this is it applied to the audit's own
22
+ outputs rather than to its inputs.
23
+
3
24
  ## 0.40.0 — 2026-08-14
4
25
 
5
26
  A 42-page practitioner guide on building web2app funnels was read against the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-ux",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "Scenario-driven UI development for AI agents (Claude Code, Cursor, 70+ agents): a versioned design chain in docs/ux/, a scenario-first hard rule, a deterministic drift linter, and evidence-backed UX audits. This package is the installer CLI.",
5
5
  "bin": {
6
6
  "super-ux": "bin/super-ux.js"