super-ux 0.26.1 → 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 +37 -0
- package/README.md +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
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
|
+
|
|
17
|
+
## 0.26.3 — 2026-07-30
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- **The licence is now declared where a user can actually see it** — an SPDX
|
|
21
|
+
`license: MIT` in the `marketplace.json` plugin entry and in the front matter
|
|
22
|
+
of all four skills. The `LICENSE` file has been in the repo since the start;
|
|
23
|
+
neither the Claude Code plugin listing nor an installed skill shows it, so the
|
|
24
|
+
terms were always one repository visit away. Both fields are optional in their
|
|
25
|
+
specs, which is why this stayed open — nothing errors on an absent licence.
|
|
26
|
+
|
|
27
|
+
## 0.26.2 — 2026-07-30
|
|
28
|
+
|
|
29
|
+
The README shipped in the package still described a five-member family and a
|
|
30
|
+
single `install` command. Both were out of date, and the registry copy is what
|
|
31
|
+
most people read first — a doc that only exists on `main` is not shipped.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
- **README** — `agent-sync` added to the family list, and the install block now
|
|
35
|
+
carries all three commands (`install`, `update`, `list`) plus the restart
|
|
36
|
+
note, because skills and hooks load at session start.
|
|
37
|
+
- `CONTRIBUTING.md` — how to run `test/validate.py` and what a PR is checked
|
|
38
|
+
against.
|
|
39
|
+
|
|
3
40
|
## 0.26.1 — 2026-07-29
|
|
4
41
|
|
|
5
42
|
0.26.0 gave practice selection two new profile dimensions but no place in the
|
package/README.md
CHANGED
|
@@ -232,13 +232,19 @@ Built by ssheleg — [sshlg.me](https://sshlg.me)
|
|
|
232
232
|
- Telegram — [@sshlg](https://t.me/sshlg)
|
|
233
233
|
|
|
234
234
|
Part of the [ssheleg skill family](https://github.com/ssheleg/sshlg-skills):
|
|
235
|
-
`super-ux`, `task-pipeline`, `make-skill`, `sheleg-design`, `seo-aeo-audit`.
|
|
236
|
-
|
|
235
|
+
`super-ux`, `task-pipeline`, `agent-sync`, `make-skill`, `sheleg-design`, `seo-aeo-audit`.
|
|
236
|
+
**The family installs and updates as one package**, for every agent you use — a bundle with one
|
|
237
|
+
member current and the rest stale is a combination nobody tested:
|
|
237
238
|
|
|
238
239
|
```bash
|
|
239
|
-
npx sshlg-skills install
|
|
240
|
+
npx sshlg-skills install # nothing installed yet — the whole family, any agent
|
|
241
|
+
npx sshlg-skills update # installed but behind — updates everything
|
|
242
|
+
npx --yes sshlg-skills@latest list # what the current release of each member is
|
|
240
243
|
```
|
|
241
244
|
|
|
245
|
+
Restart your agent afterwards: skills and hooks load at session start, so the session that
|
|
246
|
+
updates is not the session that gets the new ones.
|
|
247
|
+
|
|
242
248
|
## License
|
|
243
249
|
|
|
244
250
|
MIT © ssheleg
|
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"
|