@dezkareid/ai-team 1.10.0 → 1.11.1
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 +11 -2
- package/dist/mcp-server/index.js +2 -2
- package/gemini-extension.json +9 -2
- package/package.json +1 -1
package/.agent-structurerc
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"frontend-tools": {
|
|
24
24
|
"name": "frontend-tools",
|
|
25
|
-
"version": "0.0.
|
|
25
|
+
"version": "0.0.2",
|
|
26
26
|
"description": "Expert procedural guidance for frontend development (React, Next.js, etc.)"
|
|
27
27
|
},
|
|
28
28
|
"database-tools": {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"mcpServers": {
|
|
99
99
|
"ai-team": {
|
|
100
100
|
"claude-plugin": "company-context",
|
|
101
|
-
"version": "1.
|
|
101
|
+
"version": "1.11.1",
|
|
102
102
|
"package": "@dezkareid/ai-team",
|
|
103
103
|
"command": "npx",
|
|
104
104
|
"args": [
|
|
@@ -110,6 +110,15 @@
|
|
|
110
110
|
"get_company_outcomes": "context/outcomes.md",
|
|
111
111
|
"get_architecture_principles": "context/architecture-principles.md"
|
|
112
112
|
}
|
|
113
|
+
},
|
|
114
|
+
"chrome-devtools": {
|
|
115
|
+
"claude-plugin": "frontend-tools",
|
|
116
|
+
"command": "npx",
|
|
117
|
+
"args": [
|
|
118
|
+
"-y",
|
|
119
|
+
"chrome-devtools-mcp@latest"
|
|
120
|
+
],
|
|
121
|
+
"version": "1.11.1"
|
|
113
122
|
}
|
|
114
123
|
}
|
|
115
124
|
}
|
package/dist/mcp-server/index.js
CHANGED
|
@@ -23157,7 +23157,7 @@ const McpServerSchema = z.object({
|
|
|
23157
23157
|
});
|
|
23158
23158
|
const AgentStructureSchema = z.object({
|
|
23159
23159
|
'claude-plugins': z.record(z.string(), ClaudePluginSchema),
|
|
23160
|
-
'mcpServers': z.record(z.string(),
|
|
23160
|
+
'mcpServers': z.record(z.string(), z.unknown()),
|
|
23161
23161
|
});
|
|
23162
23162
|
|
|
23163
23163
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
@@ -23181,7 +23181,7 @@ function getMcpServerConfig(serverName) {
|
|
|
23181
23181
|
if (!serverConfig) {
|
|
23182
23182
|
throw new Error(`MCP server configuration for "${serverName}" not found in .agent-structurerc`);
|
|
23183
23183
|
}
|
|
23184
|
-
return serverConfig;
|
|
23184
|
+
return McpServerSchema.parse(serverConfig);
|
|
23185
23185
|
}
|
|
23186
23186
|
|
|
23187
23187
|
/**
|
package/gemini-extension.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dezkareid-ai-team",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"mcpServers": {
|
|
5
5
|
"ai-team": {
|
|
6
6
|
"command": "npx",
|
|
7
7
|
"args": [
|
|
8
8
|
"-y",
|
|
9
|
-
"@dezkareid/ai-team@1.
|
|
9
|
+
"@dezkareid/ai-team@1.11.1"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"chrome-devtools": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": [
|
|
15
|
+
"-y",
|
|
16
|
+
"chrome-devtools-mcp@latest"
|
|
10
17
|
]
|
|
11
18
|
}
|
|
12
19
|
}
|