@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.
@@ -98,7 +98,7 @@
98
98
  "mcpServers": {
99
99
  "ai-team": {
100
100
  "claude-plugin": "company-context",
101
- "version": "1.11.0",
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.0"
121
+ "version": "1.11.1"
122
122
  }
123
123
  }
124
124
  }
@@ -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(), McpServerSchema),
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
  /**
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "dezkareid-ai-team",
3
- "version": "1.11.0",
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.11.0"
9
+ "@dezkareid/ai-team@1.11.1"
10
10
  ]
11
11
  },
12
12
  "chrome-devtools": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dezkareid/ai-team",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "Repository for AI Team",
5
5
  "type": "module",
6
6
  "main": "index.js",