super-ux 0.26.1 → 0.26.3

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,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.26.3 — 2026-07-30
4
+
5
+ ### Changed
6
+ - **The licence is now declared where a user can actually see it** — an SPDX
7
+ `license: MIT` in the `marketplace.json` plugin entry and in the front matter
8
+ of all four skills. The `LICENSE` file has been in the repo since the start;
9
+ neither the Claude Code plugin listing nor an installed skill shows it, so the
10
+ terms were always one repository visit away. Both fields are optional in their
11
+ specs, which is why this stayed open — nothing errors on an absent licence.
12
+
13
+ ## 0.26.2 — 2026-07-30
14
+
15
+ The README shipped in the package still described a five-member family and a
16
+ single `install` command. Both were out of date, and the registry copy is what
17
+ most people read first — a doc that only exists on `main` is not shipped.
18
+
19
+ ### Changed
20
+ - **README** — `agent-sync` added to the family list, and the install block now
21
+ carries all three commands (`install`, `update`, `list`) plus the restart
22
+ note, because skills and hooks load at session start.
23
+ - `CONTRIBUTING.md` — how to run `test/validate.py` and what a PR is checked
24
+ against.
25
+
3
26
  ## 0.26.1 — 2026-07-29
4
27
 
5
28
  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
- One command installs all five for every agent you use:
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.1",
3
+ "version": "0.26.3",
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"