@dezkareid/ai-team 1.11.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 +2 -2
- package/dist/mcp-server/index.js +2 -2
- package/gemini-extension.json +2 -2
- package/package.json +1 -1
package/.agent-structurerc
CHANGED
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"mcpServers": {
|
|
99
99
|
"ai-team": {
|
|
100
100
|
"claude-plugin": "company-context",
|
|
101
|
-
"version": "1.11.
|
|
101
|
+
"version": "1.11.1",
|
|
102
102
|
"package": "@dezkareid/ai-team",
|
|
103
103
|
"command": "npx",
|
|
104
104
|
"args": [
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"-y",
|
|
119
119
|
"chrome-devtools-mcp@latest"
|
|
120
120
|
],
|
|
121
|
-
"version": "1.11.
|
|
121
|
+
"version": "1.11.1"
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
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