super-ux 0.26.5 → 0.27.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 +58 -0
- package/README.md +2 -2
- package/cursor/rules/ux-audit.mdc +5 -0
- package/package.json +5 -2
- package/templates/audit-report.md +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,63 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.27.1 — 2026-08-05
|
|
4
|
+
|
|
5
|
+
Re-cut of 0.27.0 on the correct base. The 0.27.0 tag was pushed from a tree
|
|
6
|
+
that predated 0.26.2–0.26.5, so the GitHub release it produced was missing
|
|
7
|
+
the MIT declarations, the `/ux-audit` front-matter fix, `displayName`, and
|
|
8
|
+
the npm-publish workflow. Nothing was published to npm from it. The content
|
|
9
|
+
of 0.27.0 is unchanged and listed below it; this release only puts it on top
|
|
10
|
+
of the history it belongs to.
|
|
11
|
+
|
|
12
|
+
## 0.27.0 — 2026-08-04
|
|
13
|
+
|
|
14
|
+
An audit of 51 external UX, product and growth skills, kept only where they
|
|
15
|
+
found something this catalog did not already say better. Most of the overlap
|
|
16
|
+
went the other way — on monetization, forms and activation the catalog was
|
|
17
|
+
the stronger of the two, and with sources where the others had none. Four
|
|
18
|
+
gaps survived that test.
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- **Growth loops and referral — BP-147..151.** BP-067 has been telling
|
|
22
|
+
readers since 0.19 that freemium only works when free users feed a growth
|
|
23
|
+
loop, while the catalog described no loop anywhere. BP-147 names the three
|
|
24
|
+
kinds and the reference now resolves. The rest: virality riding the
|
|
25
|
+
product's own output rather than a "refer a friend" page, planning for a
|
|
26
|
+
viral coefficient around 0.2 with the loop's cycle time treated as the
|
|
27
|
+
other multiplier, rewards paid in the product's own unit on the invitee's
|
|
28
|
+
milestone, and abuse designed against before launch.
|
|
29
|
+
- **Empty states — BP-152.** Three layers after NN/g: what happened, what
|
|
30
|
+
this place is for, and a way in — including inspecting the feature on demo
|
|
31
|
+
data. A blank panel is a defect, not a neutral state.
|
|
32
|
+
- **Authentication and form recovery — BP-153..156.** The word "password"
|
|
33
|
+
appeared zero times across 146 practices. NIST SP 800-63B rev 4 (August
|
|
34
|
+
2025) made paste normative and composition rules prohibited; the field must
|
|
35
|
+
not fight the password manager; a passwordless door where the account
|
|
36
|
+
allows one; and a rejected form keeps the work instead of clearing it
|
|
37
|
+
(WCAG 2.2 redundant entry).
|
|
38
|
+
- **Audit reports: a required "Scope and limits" section**
|
|
39
|
+
(`scenario-format.md`, `templates/audit-report.md`, `ux-audit`). A batched
|
|
40
|
+
audit reads a slice of the code, so silence about the rest was being read
|
|
41
|
+
as coverage. Absence from a report never means PASS.
|
|
42
|
+
- **`validate_catalog()` in `test/validate.py`.** The catalog's shape — five
|
|
43
|
+
fields per entry, unbroken ids, tags from the taxonomy, and every practice
|
|
44
|
+
reachable from `practice-selection.md` — was an invariant held by hand
|
|
45
|
+
since the first entry. A practice no skill routes to is a practice that
|
|
46
|
+
does not exist; nothing checked for that until now.
|
|
47
|
+
|
|
48
|
+
### Changed
|
|
49
|
+
- Tag taxonomy gains `virality`, `referral` (mechanism) and `auth` (domain);
|
|
50
|
+
source keys gain `[NIST]` and `[Viral26]`.
|
|
51
|
+
|
|
52
|
+
Two figures from the source material were dropped rather than repeated — a
|
|
53
|
+
15–30% referral conversion norm and a 60% fraud threshold, neither of which
|
|
54
|
+
survived a check. A third was corrected in the opposite direction: a viral
|
|
55
|
+
coefficient of 0.3–0.7 is a strong result, not the practical target the
|
|
56
|
+
source called it.
|
|
57
|
+
|
|
58
|
+
The contract stays **v4**: the report section is additive and no existing
|
|
59
|
+
`docs/ux` file changes shape.
|
|
60
|
+
|
|
3
61
|
## 0.26.5 — 2026-07-30
|
|
4
62
|
|
|
5
63
|
### Added
|
package/README.md
CHANGED
|
@@ -186,7 +186,7 @@ The contracts every skill reads:
|
|
|
186
186
|
| [scenario-format.md](plugins/super-ux/skills/references/scenario-format.md) | **The contract (ux-contract v4).** File layout, every field name, stable IDs (`P` `JTBD` `JRN` `ST` `FLW` `SCR` `SCN`), completeness checklists, the `draft → validated → implemented` lifecycle, audit verdicts and severities, the UX-plan format |
|
|
187
187
|
| [system-map.md](plugins/super-ux/skills/references/system-map.md) | The whole system on one page — pipeline, files, skills, companions, and the four sync rules; every skill points here |
|
|
188
188
|
| [ux-design-principles.md](plugins/super-ux/skills/references/ux-design-principles.md) | How the agent thinks: the design pipeline (forward and backwards), task analysis, flow rules, heuristics PRN-01..16, the improvement procedure, anti-patterns |
|
|
189
|
-
| [best-practices.md](plugins/super-ux/skills/references/best-practices.md) | Living, tag-indexed catalog of
|
|
189
|
+
| [best-practices.md](plugins/super-ux/skills/references/best-practices.md) | Living, tag-indexed catalog of 156 proven practices — subscription-app laws, mobile/web/voice guidance (Apple HIG 2025, M3 Expressive, NN/g, Baymard, WCAG 2.2), monetization economics (RevenueCat/PLG 2025 benchmarks, ASO, freemium boundaries), web funnels end to end (landing, pricing, checkout, dunning, cancel) and web2app (paid handoff, deferred deep links, storefront rules), motion and page weight (HTTP Archive field data, W3C sustainability), accessibility as it actually fails (WebAIM Million, EAA/ADA exposure), frustration telemetry, gamification and trend governance, growth loops and referral mechanics, empty states, authentication (NIST SP 800-63B rev 4) and form recovery, visual craft, Figma structure |
|
|
190
190
|
| [practice-selection.md](plugins/super-ux/skills/references/practice-selection.md) | The deterministic bridge: product profile → mandatory consideration sets → per-artifact checklists → a compliance table where every pulled practice gets a verdict. No silent skips, no cargo cult |
|
|
191
191
|
| [component-guidelines.md](plugins/super-ux/skills/references/component-guidelines.md) | Which control for which job (radios/select/switch, sheet/alert, modal/disclosure, combobox, nav bar/rail, FAB, dates, toasts) and the platform rules — Apple HIG, Material 3, W3C ARIA APG, GOV.UK |
|
|
192
192
|
| [visual-identity.md](plugins/super-ux/skills/references/visual-identity.md) | The visual layer and its owner: one style pack for the whole product, where it's recorded, how it meets Figma and code, and the division of labor with the craft floors |
|
|
@@ -228,7 +228,7 @@ edits to `plugins/super-ux/skills/references/` need
|
|
|
228
228
|
|
|
229
229
|
Built by ssheleg — [sshlg.me](https://sshlg.me)
|
|
230
230
|
|
|
231
|
-
- X / Twitter — [@
|
|
231
|
+
- X / Twitter — [@sshlg93](https://x.com/sshlg93)
|
|
232
232
|
- Telegram — [@sshlg](https://t.me/sshlg)
|
|
233
233
|
|
|
234
234
|
Part of the [ssheleg skill family](https://github.com/ssheleg/sshlg-skills):
|
|
@@ -13,6 +13,11 @@ rule) — there is nothing to audit against.
|
|
|
13
13
|
**Evidence discipline:** every verdict cites `file:line`. Cannot verify →
|
|
14
14
|
verdict BLOCKED with the exact reason. Never guess, never a courtesy PASS.
|
|
15
15
|
|
|
16
|
+
**Scope and limits (required section):** the report ends with what was
|
|
17
|
+
covered, what was left out and why, what could not be verified, and what the
|
|
18
|
+
code cannot answer. An audit reads a slice; absence from the report never
|
|
19
|
+
means PASS.
|
|
20
|
+
|
|
16
21
|
## Loop
|
|
17
22
|
|
|
18
23
|
1. Read the base (and foundation/flows/screens when they exist); scope =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-ux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.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"
|
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
"url": "https://github.com/ssheleg/super-ux/issues"
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
|
-
"author":
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "ssheleg",
|
|
25
|
+
"url": "https://x.com/sshlg93"
|
|
26
|
+
},
|
|
24
27
|
"engines": {
|
|
25
28
|
"node": ">=16"
|
|
26
29
|
},
|
|
@@ -29,6 +29,16 @@ Heuristic findings (deep): [PRN-NN] (severity) node — issue -> fix
|
|
|
29
29
|
| # | Scenario | Severity | Finding | Suggested fix |
|
|
30
30
|
|---|----------|----------|---------|---------------|
|
|
31
31
|
|
|
32
|
+
## Scope and limits
|
|
33
|
+
|
|
34
|
+
<!-- Required. An audit reads a finite slice of the code; absence from this
|
|
35
|
+
report never means PASS. -->
|
|
36
|
+
|
|
37
|
+
- **Covered:**
|
|
38
|
+
- **Not covered:**
|
|
39
|
+
- **Could not verify:**
|
|
40
|
+
- **Open questions:**
|
|
41
|
+
|
|
32
42
|
## Practice compliance (deep audits)
|
|
33
43
|
|
|
34
44
|
| Practice | Verdict | How / why not |
|