@dezkareid/ai-team 1.5.0 → 1.6.0
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/.agent-structurerc +2 -2
- package/AGENTS.md +35 -0
- package/README.md +12 -0
- package/gemini-extension.json +2 -2
- package/package.json +1 -1
package/.agent-structurerc
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"design-system": {
|
|
9
9
|
"name": "design-system",
|
|
10
|
-
"version": "0.0.
|
|
10
|
+
"version": "0.0.2",
|
|
11
11
|
"description": "Authoritative design system context and tools"
|
|
12
12
|
},
|
|
13
13
|
"company-context": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"mcpServers": {
|
|
74
74
|
"ai-team": {
|
|
75
75
|
"claude-plugin": "company-context",
|
|
76
|
-
"version": "1.
|
|
76
|
+
"version": "1.6.0",
|
|
77
77
|
"package": "@dezkareid/ai-team",
|
|
78
78
|
"command": "npx",
|
|
79
79
|
"args": [
|
package/AGENTS.md
CHANGED
|
@@ -64,6 +64,11 @@ File `.agent-structurerc` is used to configure the project structure.
|
|
|
64
64
|
"name": "company-context",
|
|
65
65
|
"version": "0.0.3",
|
|
66
66
|
"description": "Authoritative company context and tools"
|
|
67
|
+
},
|
|
68
|
+
"web-quality": {
|
|
69
|
+
"name": "web-quality",
|
|
70
|
+
"version": "0.0.1",
|
|
71
|
+
"description": "Skills for auditing and optimizing web quality (Performance, Accessibility, SEO, Core Web Vitals, Best Practices)"
|
|
67
72
|
}
|
|
68
73
|
},
|
|
69
74
|
"commands": [
|
|
@@ -83,6 +88,36 @@ File `.agent-structurerc` is used to configure the project structure.
|
|
|
83
88
|
"name": "design-tokens",
|
|
84
89
|
"source": "skills/design-tokens/SKILL.md",
|
|
85
90
|
"claude-plugin": "design-system"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "performance",
|
|
94
|
+
"source": "skills/performance/SKILL.md",
|
|
95
|
+
"claude-plugin": "web-quality"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "accessibility",
|
|
99
|
+
"source": "skills/accessibility/SKILL.md",
|
|
100
|
+
"claude-plugin": "web-quality"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "seo",
|
|
104
|
+
"source": "skills/seo/SKILL.md",
|
|
105
|
+
"claude-plugin": "web-quality"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "core-web-vitals",
|
|
109
|
+
"source": "skills/core-web-vitals/SKILL.md",
|
|
110
|
+
"claude-plugin": "web-quality"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "best-practices",
|
|
114
|
+
"source": "skills/best-practices/SKILL.md",
|
|
115
|
+
"claude-plugin": "web-quality"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "web-quality-audit",
|
|
119
|
+
"source": "skills/web-quality-audit/SKILL.md",
|
|
120
|
+
"claude-plugin": "web-quality"
|
|
86
121
|
}
|
|
87
122
|
],
|
|
88
123
|
"mcpServers": {
|
package/README.md
CHANGED
|
@@ -41,6 +41,17 @@ claude marketplace add dezkareid-ai-team https://github.com/dezkareid/ai-team
|
|
|
41
41
|
|---|---|
|
|
42
42
|
| `ai-team` | Provides authoritative company context, outcomes, and architecture principles. |
|
|
43
43
|
|
|
44
|
+
#### `web-quality` — Skills for auditing and optimizing web quality
|
|
45
|
+
|
|
46
|
+
| Skill | Description |
|
|
47
|
+
|---|---|
|
|
48
|
+
| `web-quality-audit` | Comprehensive web quality audit covering performance, accessibility, SEO, and best practices. |
|
|
49
|
+
| `performance` | Optimize web performance for faster loading and better user experience. |
|
|
50
|
+
| `accessibility` | Audit and improve web accessibility following WCAG 2.2 guidelines. |
|
|
51
|
+
| `seo` | Optimize for search engine visibility and ranking. |
|
|
52
|
+
| `core-web-vitals` | Optimize Core Web Vitals (LCP, INP, CLS) for better page experience and search ranking. |
|
|
53
|
+
| `best-practices` | Apply modern web development best practices for security, compatibility, and code quality. |
|
|
54
|
+
|
|
44
55
|
### Install a plugin
|
|
45
56
|
|
|
46
57
|
Once the marketplace is added, install a plugin with:
|
|
@@ -49,6 +60,7 @@ Once the marketplace is added, install a plugin with:
|
|
|
49
60
|
claude plugin install npm-tools
|
|
50
61
|
claude plugin install design-system
|
|
51
62
|
claude plugin install company-context
|
|
63
|
+
claude plugin install web-quality
|
|
52
64
|
```
|
|
53
65
|
|
|
54
66
|
## Development
|
package/gemini-extension.json
CHANGED