ux-toolkit 0.4.1 → 0.5.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/.claude-plugin/marketplace.json +11 -0
- package/.claude-plugin/plugin.json +23 -0
- package/README.md +4 -4
- package/dist/cli.js +768 -121
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +12611 -376
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -210
- package/dist/index.d.ts +33 -210
- package/dist/index.js +12614 -366
- package/dist/index.js.map +1 -1
- package/package.json +14 -2
- /package/commands/{a11y-check.md → ux-a11y-check.md} +0 -0
- /package/commands/{design-review.md → ux-design-review.md} +0 -0
- /package/commands/{screenshot-review.md → ux-screenshot-review.md} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ux-toolkit-marketplace",
|
|
3
|
+
"description": "Official marketplace for UX Toolkit plugin",
|
|
4
|
+
"plugins": {
|
|
5
|
+
"ux-toolkit": {
|
|
6
|
+
"repository": "https://github.com/SwiggitySwerve/ux-toolkit",
|
|
7
|
+
"branch": "master",
|
|
8
|
+
"description": "AI-powered UI/UX review toolkit with skills, agents, and commands"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ux-toolkit",
|
|
3
|
+
"description": "AI-powered UI/UX review toolkit with 25 skills, 18 agents, and commands for comprehensive UX audits",
|
|
4
|
+
"version": "0.5.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "swiggityswerve",
|
|
7
|
+
"email": "swiggityswerve@users.noreply.github.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/SwiggitySwerve/ux-toolkit",
|
|
10
|
+
"repository": "https://github.com/SwiggitySwerve/ux-toolkit",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"ux",
|
|
14
|
+
"ui",
|
|
15
|
+
"accessibility",
|
|
16
|
+
"wcag",
|
|
17
|
+
"usability",
|
|
18
|
+
"heuristics",
|
|
19
|
+
"design-system",
|
|
20
|
+
"skills",
|
|
21
|
+
"agents"
|
|
22
|
+
]
|
|
23
|
+
}
|
package/README.md
CHANGED
|
@@ -130,9 +130,9 @@ This installs to `.opencode/` in your current directory.
|
|
|
130
130
|
| Command | Description |
|
|
131
131
|
|---------|-------------|
|
|
132
132
|
| `/ux-audit` | Comprehensive UX audit |
|
|
133
|
-
| `/a11y-check` | Quick accessibility scan |
|
|
134
|
-
| `/design-review` | Visual consistency check |
|
|
135
|
-
| `/screenshot-review` | Visual review from screenshot |
|
|
133
|
+
| `/ux-a11y-check` | Quick accessibility scan |
|
|
134
|
+
| `/ux-design-review` | Visual consistency check |
|
|
135
|
+
| `/ux-screenshot-review` | Visual review from screenshot |
|
|
136
136
|
|
|
137
137
|
## Usage Examples
|
|
138
138
|
|
|
@@ -143,7 +143,7 @@ This installs to `.opencode/` in your current directory.
|
|
|
143
143
|
/ux-audit src/components/Button.tsx
|
|
144
144
|
|
|
145
145
|
# Check accessibility
|
|
146
|
-
/a11y-check src/pages/index.tsx
|
|
146
|
+
/ux-a11y-check src/pages/index.tsx
|
|
147
147
|
|
|
148
148
|
# Invoke agent directly
|
|
149
149
|
@ux-auditor Review the login flow for usability issues
|