@dezkareid/ai-team 1.4.1 → 1.4.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/.agent-structurerc +54 -0
- package/gemini-extension.json +2 -2
- package/package.json +3 -2
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"claude-plugins": {
|
|
3
|
+
"npm-tools": {
|
|
4
|
+
"name": "npm-tools",
|
|
5
|
+
"version": "0.0.1",
|
|
6
|
+
"description": "Tools for working with npm"
|
|
7
|
+
},
|
|
8
|
+
"design-system": {
|
|
9
|
+
"name": "design-system",
|
|
10
|
+
"version": "0.0.1",
|
|
11
|
+
"description": "Authoritative design system context and tools"
|
|
12
|
+
},
|
|
13
|
+
"company-context": {
|
|
14
|
+
"name": "company-context",
|
|
15
|
+
"version": "0.0.2",
|
|
16
|
+
"description": "Authoritative company context and tools"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"commands": [
|
|
20
|
+
{
|
|
21
|
+
"name": "npm-package-setup",
|
|
22
|
+
"source": "npm/package-setup.toml",
|
|
23
|
+
"claude-plugin": "npm-tools"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "npm-publish",
|
|
27
|
+
"source": "npm/publish-setup.toml",
|
|
28
|
+
"claude-plugin": "npm-tools"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"skills": [
|
|
32
|
+
{
|
|
33
|
+
"name": "design-tokens",
|
|
34
|
+
"source": "skills/design-tokens/SKILL.md",
|
|
35
|
+
"claude-plugin": "design-system"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"ai-team": {
|
|
40
|
+
"claude-plugin": "company-context",
|
|
41
|
+
"version": "1.4.3",
|
|
42
|
+
"package": "@dezkareid/ai-team",
|
|
43
|
+
"command": "npx",
|
|
44
|
+
"args": [
|
|
45
|
+
"-y",
|
|
46
|
+
"${package}@${version}"
|
|
47
|
+
],
|
|
48
|
+
"contextFiles": {
|
|
49
|
+
"get_company_outcomes": "context/outcomes.md",
|
|
50
|
+
"get_architecture_principles": "context/architecture-principles.md"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dezkareid/ai-team",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Repository for AI Team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"README.md",
|
|
13
13
|
"AGENTS.md",
|
|
14
14
|
"gemini-extension.json",
|
|
15
|
-
"context"
|
|
15
|
+
"context",
|
|
16
|
+
".agent-structurerc"
|
|
16
17
|
],
|
|
17
18
|
"publishConfig": {
|
|
18
19
|
"access": "public",
|