sheleg-design-skill 1.3.2 → 1.3.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
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to this project are documented in this file. The format
|
|
|
4
4
|
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions
|
|
5
5
|
follow [SemVer](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.3.4] - 2026-07-30
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **`displayName`** ("SHELEG Design") in both manifests — the `/plugin` picker
|
|
12
|
+
falls back to `name`, which is kebab-case for namespacing reasons.
|
|
13
|
+
|
|
14
|
+
## [1.3.3] - 2026-07-30
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **`argument-hint` in the slash command was unquoted.** In YAML a bare
|
|
18
|
+
`[a | b]` is a flow sequence, not a string, so the hint parsed as a *list*.
|
|
19
|
+
Found by `claude plugin validate --strict`, the upstream schema checker, which
|
|
20
|
+
now runs in CI on both this plugin and its marketplace manifest.
|
|
21
|
+
- **`homepage` and `repository` sat at the top level of `marketplace.json`,
|
|
22
|
+
where Claude Code does not recognize them.** They are plugin-entry fields;
|
|
23
|
+
moved there, so the values reach the plugin listing instead of being ignored.
|
|
24
|
+
|
|
7
25
|
## [1.3.2] - 2026-07-30
|
|
8
26
|
|
|
9
27
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheleg-design-skill",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "Design taste as an installable agent skill. Cinematic scroll-driven landing pages built on one scroll clock and layered degrade-to-calm motion, plus three locked style packs with ready-made design tokens — instrument-console (dark), editorial-luxury (warm), workbench (light/dark product UI for dashboards, admin and dev tools). Works with Cursor, Claude Code and any agent that reads a SKILL.md.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sheleg-design-skill": "bin/cli.js"
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheleg-design",
|
|
3
|
+
"displayName": "SHELEG Design",
|
|
3
4
|
"description": "SHELEG Design methodology: cinematic scroll-driven landing pages (single scroll clock, layered degrade-to-calm motion, WebGL particle formations) plus pluggable visual style packs — instrument-console (dark console), editorial-luxury (warm editorial), workbench (light/dark product UI for dashboards and tools). Ships the sheleg-design skill, the architecture reference, style packs with ready-made token CSS, and the /sheleg-design command.",
|
|
4
|
-
"version": "1.3.
|
|
5
|
+
"version": "1.3.4",
|
|
5
6
|
"author": {
|
|
6
7
|
"name": "ssheleg"
|
|
7
8
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Apply the SHELEG Design methodology (single-clock, layered, degrade-to-calm motion) to the current landing-page / hero / scroll-animation task — or its style packs to product UI (dashboards, admin, internal tools)
|
|
3
|
-
argument-hint: [what to build or upgrade]
|
|
3
|
+
argument-hint: "[what to build or upgrade]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
Invoke the `sheleg-design` skill and apply it to the current request.
|