super-ux 0.26.3 → 0.26.4
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 +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.26.4 — 2026-07-30
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **`/ux-audit` was loading with no metadata at all.** Its `argument-hint` held
|
|
7
|
+
an unquoted `[all | feature:<name> | ...] [quick|deep]`, which YAML reads as a
|
|
8
|
+
flow sequence and then fails to parse — and a command whose front matter fails
|
|
9
|
+
to parse loads with **every field silently dropped, description included**.
|
|
10
|
+
Nothing at runtime reports this; `claude plugin validate --strict` does, and it
|
|
11
|
+
now runs in CI. Four more commands had hints parsing as lists rather than
|
|
12
|
+
strings; all are quoted.
|
|
13
|
+
- `homepage` and `repository` moved out of the top level of `marketplace.json`,
|
|
14
|
+
where Claude Code does not recognize them, into the plugin entry, where it
|
|
15
|
+
does.
|
|
16
|
+
|
|
3
17
|
## 0.26.3 — 2026-07-30
|
|
4
18
|
|
|
5
19
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-ux",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.4",
|
|
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"
|