a11y-devkit-deploy 0.8.0 → 0.8.2

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/config/a11y.json CHANGED
@@ -133,39 +133,103 @@
133
133
  ],
134
134
  "profiles": [
135
135
  {
136
- "id": "developer",
137
- "displayName": "Developer",
138
- "description": "For developers building accessible applications",
139
- "skills": ["a11y-base-web-skill"],
140
- "mcpServers": ["magentaa11y"]
136
+ "id": "a11y-sme",
137
+ "displayName": "Accessibility SME",
138
+ "description": "For accessibility subject matter experts",
139
+ "skills": [
140
+ "a11y-base-web-skill",
141
+ "a11y-tester-skill",
142
+ "a11y-issue-writer-skill",
143
+ "a11y-remediator-skill",
144
+ "a11y-validator-skill",
145
+ "web-standards-skill",
146
+ "a11y-audit-fix-agent-orchestrator-skill"
147
+ ],
148
+ "mcpServers": [
149
+ "wcag",
150
+ "aria",
151
+ "magentaa11y",
152
+ "a11y-personas",
153
+ "arc-issues"
154
+ ]
141
155
  },
142
156
  {
143
- "id": "tester",
144
- "displayName": "Tester/QA",
145
- "description": "For QA engineers testing accessibility",
146
- "skills": ["a11y-tester-skill"],
147
- "mcpServers": ["arc-issues"]
157
+ "id": "developer-web",
158
+ "displayName": "Developer (Web)",
159
+ "description": "For Web developers building accessible applications",
160
+ "skills": [
161
+ "a11y-base-web-skill",
162
+ "a11y-tester-skill",
163
+ "a11y-remediator-skill",
164
+ "web-standards-skill",
165
+ "a11y-audit-fix-agent-orchestrator-skill",
166
+ "a11y-validator-skill"
167
+ ],
168
+ "mcpServers": ["wcag", "aria", "magentaa11y", "a11y-personas"]
148
169
  },
149
170
  {
150
- "id": "a11y-sme",
151
- "displayName": "Accessibility SME",
152
- "description": "For accessibility subject matter experts",
153
- "skills": ["web-standards-skill"],
154
- "mcpServers": ["magentaa11y"]
171
+ "id": "developer-ios",
172
+ "displayName": "Developer (iOS)",
173
+ "description": "For iOS developers building accessible applications",
174
+ "skills": [],
175
+ "mcpServers": ["wcag", "aria", "magentaa11y", "a11y-personas"]
176
+ },
177
+ {
178
+ "id": "developer-android",
179
+ "displayName": "Developer (Android)",
180
+ "description": "For Android developers building accessible applications",
181
+ "skills": [],
182
+ "mcpServers": ["wcag", "aria", "magentaa11y", "a11y-personas"]
183
+ },
184
+ {
185
+ "id": "tester-web",
186
+ "displayName": "Tester/QA (Web)",
187
+ "description": "For QA engineers testing accessibility web experiences",
188
+ "skills": [
189
+ "a11y-base-web-skill",
190
+ "a11y-tester-skill",
191
+ "a11y-issue-writer-skill",
192
+ "web-standards-skill"
193
+ ],
194
+ "mcpServers": [
195
+ "wcag",
196
+ "aria",
197
+ "magentaa11y",
198
+ "a11y-personas",
199
+ "arc-issues"
200
+ ]
201
+ },
202
+ {
203
+ "id": "tester-native",
204
+ "displayName": "Tester/QA (Native Apps)",
205
+ "description": "For QA engineers testing accessibility of native apps",
206
+ "skills": [
207
+ "a11y-base-web-skill",
208
+ "a11y-tester-skill",
209
+ "a11y-issue-writer-skill",
210
+ "web-standards-skill"
211
+ ],
212
+ "mcpServers": [
213
+ "wcag",
214
+ "aria",
215
+ "magentaa11y",
216
+ "a11y-personas",
217
+ "arc-issues"
218
+ ]
155
219
  },
156
220
  {
157
221
  "id": "product",
158
222
  "displayName": "Product",
159
223
  "description": "For product managers and owners",
160
- "skills": ["a11y-base-web-skill"],
161
- "mcpServers": ["magentaa11y"]
224
+ "skills": ["a11y-base-web-skill", "web-standards-skill"],
225
+ "mcpServers": ["wcag", "magentaa11y", "a11y-personas"]
162
226
  },
163
227
  {
164
228
  "id": "design",
165
229
  "displayName": "Design",
166
230
  "description": "For designers creating accessible experiences",
167
- "skills": ["web-standards-skill"],
168
- "mcpServers": ["aria"]
231
+ "skills": ["a11y-base-web-skill", "web-standards-skill"],
232
+ "mcpServers": ["wcag", "aria", "magentaa11y", "a11y-personas"]
169
233
  },
170
234
  {
171
235
  "id": "hybrid",
@@ -173,8 +237,8 @@
173
237
  "description": "All skills and MCP servers for comprehensive accessibility support",
174
238
  "skills": [
175
239
  "a11y-base-web-skill",
176
- "a11y-issue-writer-skill",
177
240
  "a11y-tester-skill",
241
+ "a11y-issue-writer-skill",
178
242
  "a11y-remediator-skill",
179
243
  "a11y-validator-skill",
180
244
  "web-standards-skill",
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "a11y-devkit-deploy",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "CLI to deploy a11y skills and MCP servers across IDEs",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "src/cli.js",
8
8
  "bin": {
9
- "a11y-devkit-deploy": "bin/a11y-skills.js"
9
+ "a11y-devkit-deploy": "bin/a11y-devkit.js"
10
10
  },
11
11
  "files": [
12
12
  "bin",
@@ -39,7 +39,7 @@
39
39
  "node": ">=18"
40
40
  },
41
41
  "scripts": {
42
- "start": "node bin/a11y-skills.js"
42
+ "start": "node bin/a11y-devkit.js"
43
43
  },
44
44
  "dependencies": {
45
45
  "boxen": "^5.1.2",
File without changes