super-ux 0.30.0 → 0.30.1

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
@@ -1,6 +1,31 @@
1
1
  # Changelog
2
2
 
3
- ## 0.30.0 — 2026-08-05
3
+ ## 0.30.1 — 2026-08-05
4
+
5
+ ### Fixed
6
+ - **`templates/brand/voice.md` told projects to write `PER-NN` where the UX
7
+ contract numbers personas `P-NN`.** `B004` traces `Derived-from` against
8
+ `foundation.md`, so a project following our own template earned a false
9
+ blocking error — the failure mode that teaches people to ignore a linter.
10
+ Shipped in 0.30.0; found by the code graph built afterwards.
11
+ - Four check codes (`B005`, `B054`, `B060`, `B072`) shipped with no fixture
12
+ behind them while the suite was green and the count looked right.
13
+
14
+ ### Added
15
+ - **`brand-contract.md` now owns all 33 check codes** with their severities.
16
+ Eighteen were documented only in the linter's source, in a repo whose canon
17
+ is one owner per fact.
18
+ - **`validate_brand_lint_coverage`** — every code the linter can emit must have
19
+ a fixture and a contract row. The audit finding became a gate rather than a
20
+ ledger entry.
21
+ - `system-map.md` names the brand reference shelf. It names rather than links:
22
+ a link would make every skill ship all ten files, and the map's job is
23
+ telling you what exists.
24
+ - The code graph itself (`graphify-out/`), with `.graphifyignore` excluding the
25
+ 115 sync_references copies whose hubs would describe the distribution
26
+ mechanism rather than the design.
27
+
28
+ — 2026-08-05
4
29
 
5
30
  The verbal identity layer. `docs/ux/` decides what the product does; the new
6
31
  `docs/brand/` decides how it speaks — one voice, many registers, and a linter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-ux",
3
- "version": "0.30.0",
3
+ "version": "0.30.1",
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"
@@ -2,7 +2,7 @@ Contract: brand-contract v1
2
2
  Voice pack: <pack id from voice-packs.md, or `custom`>
3
3
  Locales: <en (primary)>
4
4
  Locale parity threshold: 80%
5
- Derived-from: <PER-NN, JTBD-NN from docs/ux/foundation.md — or `inferred`>
5
+ Derived-from: <P-NN, JTBD-NN from docs/ux/foundation.md — or `inferred`>
6
6
  Status: draft
7
7
  Last calibrated: <YYYY-MM-DD>
8
8