@dezkareid/ai-team 1.11.1 → 1.12.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.
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "company-context": {
14
14
  "name": "company-context",
15
- "version": "0.1.0",
15
+ "version": "0.2.0",
16
16
  "description": "Authoritative company context and tools"
17
17
  },
18
18
  "web-quality": {
@@ -49,6 +49,11 @@
49
49
  "source": "skills/design-tokens/SKILL.md",
50
50
  "claude-plugin": "design-system"
51
51
  },
52
+ {
53
+ "name": "audit-agents-file",
54
+ "source": "skills/audit-agents-file/SKILL.md",
55
+ "claude-plugin": "company-context"
56
+ },
52
57
  {
53
58
  "name": "performance",
54
59
  "source": "skills/performance/SKILL.md",
@@ -95,30 +100,29 @@
95
100
  "claude-plugin": "database-tools"
96
101
  }
97
102
  ],
103
+ "mainMcp": {
104
+ "claude-plugin": "company-context",
105
+ "version": "1.12.0",
106
+ "package": "@dezkareid/ai-team",
107
+ "command": "npx",
108
+ "args": [
109
+ "-y",
110
+ "${package}@${version}"
111
+ ],
112
+ "contextFiles": {
113
+ "get_enterprise_context": "context/enterprise.md",
114
+ "get_company_outcomes": "context/outcomes.md",
115
+ "get_architecture_principles": "context/architecture-principles.md"
116
+ }
117
+ },
98
118
  "mcpServers": {
99
- "ai-team": {
100
- "claude-plugin": "company-context",
101
- "version": "1.11.1",
102
- "package": "@dezkareid/ai-team",
103
- "command": "npx",
104
- "args": [
105
- "-y",
106
- "${package}@${version}"
107
- ],
108
- "contextFiles": {
109
- "get_enterprise_context": "context/enterprise.md",
110
- "get_company_outcomes": "context/outcomes.md",
111
- "get_architecture_principles": "context/architecture-principles.md"
112
- }
113
- },
114
119
  "chrome-devtools": {
115
120
  "claude-plugin": "frontend-tools",
116
121
  "command": "npx",
117
122
  "args": [
118
123
  "-y",
119
124
  "chrome-devtools-mcp@latest"
120
- ],
121
- "version": "1.11.1"
125
+ ]
122
126
  }
123
127
  }
124
128
  }
package/AGENTS.md CHANGED
@@ -171,26 +171,33 @@ File `.agent-structurerc` is used to configure the project structure.
171
171
  "claude-plugin": "database-tools"
172
172
  }
173
173
  ],
174
+ "mainMcp": {
175
+ "claude-plugin": "company-context",
176
+ "version": "1.4.6",
177
+ "package": "@dezkareid/ai-team",
178
+ "command": "npx",
179
+ "args": [
180
+ "-y",
181
+ "${package}@${version}"
182
+ ],
183
+ "contextFiles": {
184
+ "get_enterprise_context": "context/enterprise.md",
185
+ "get_company_outcomes": "context/outcomes.md",
186
+ "get_architecture_principles": "context/architecture-principles.md"
187
+ }
188
+ },
174
189
  "mcpServers": {
175
- "ai-team": {
176
- "claude-plugin": "company-context",
177
- "version": "1.4.6",
178
- "package": "@dezkareid/ai-team",
190
+ "chrome-devtools": {
191
+ "claude-plugin": "frontend-tools",
179
192
  "command": "npx",
180
193
  "args": [
181
194
  "-y",
182
- "${package}@${version}"
183
- ],
184
- "contextFiles": {
185
- "get_enterprise_context": "context/enterprise.md",
186
- "get_company_outcomes": "context/outcomes.md",
187
- "get_architecture_principles": "context/architecture-principles.md"
188
- }
195
+ "chrome-devtools-mcp@latest"
196
+ ]
189
197
  }
190
198
  }
191
199
  }
192
200
  ```
193
-
194
201
  #### Claude Plugin Structure
195
202
 
196
203
  ```
@@ -244,7 +251,7 @@ graph TD
244
251
 
245
252
  > **Note**: You must run `pnpm run build` before executing these commands, as they rely on the compiled files in the `dist/` directory.
246
253
 
247
- 1. **Sync Version**: Run `pnpm run sync-version` to propagate the version from `package.json` to `.agent-structurerc` (specifically `mcpServers`), `.claude-plugin/marketplace.json`, and `gemini-extension.json`.
254
+ 1. **Sync Version**: Run `pnpm run sync-version` to propagate the version and name from `package.json` to `.agent-structurerc` (specifically `mainMcp`), `.claude-plugin/marketplace.json`, and `gemini-extension.json`.
248
255
  2. **Export to Claude**: Run `pnpm run export-claude` to process source files.
249
256
  - **Commands**: Converts TOML source files to Markdown with Claude-compatible frontmatter and `$ARGUMENTS` placeholders.
250
257
  - **Skills**: Symlinks `SKILL.md` and reference files into the `plugins/` directory.
package/README.md CHANGED
@@ -131,7 +131,7 @@ graph TD
131
131
 
132
132
  > **Note**: You must run `pnpm run build` before executing these commands, as they rely on the compiled files in the `dist/` directory.
133
133
 
134
- 1. **Sync Version**: Run `pnpm run sync-version` to propagate the version from `package.json` to `.agent-structurerc`, `.claude-plugin/marketplace.json`, and `gemini-extension.json`.
134
+ 1. **Sync Version**: Run `pnpm run sync-version` to propagate the version and name from `package.json` to `.agent-structurerc` (specifically `mainMcp`), `.claude-plugin/marketplace.json`, and `gemini-extension.json`.
135
135
  2. **Export to Claude**: Run `pnpm run export-claude` to process source files and update plugins.
136
136
  3. **Distribute MCP**: Run `pnpm run distribute-mcp` to resolve placeholders and update platform-specific MCP configurations.
137
137
 
@@ -23149,15 +23149,20 @@ const ClaudePluginSchema = z.object({
23149
23149
  });
23150
23150
  const McpServerSchema = z.object({
23151
23151
  'claude-plugin': z.string().optional(),
23152
- 'version': z.string(),
23153
- 'package': z.string(),
23152
+ 'version': z.string().optional(),
23153
+ 'package': z.string().optional(),
23154
23154
  'command': z.string(),
23155
23155
  'args': z.array(z.string()),
23156
23156
  'contextFiles': z.record(z.string(), z.string()).optional(),
23157
23157
  });
23158
+ const MainMcpSchema = McpServerSchema.extend({
23159
+ version: z.string(),
23160
+ package: z.string(),
23161
+ });
23158
23162
  const AgentStructureSchema = z.object({
23159
23163
  'claude-plugins': z.record(z.string(), ClaudePluginSchema),
23160
- 'mcpServers': z.record(z.string(), z.unknown()),
23164
+ 'mainMcp': MainMcpSchema,
23165
+ 'mcpServers': z.record(z.string(), McpServerSchema).optional(),
23161
23166
  });
23162
23167
 
23163
23168
  const __filename$1 = fileURLToPath(import.meta.url);
@@ -23177,7 +23182,10 @@ function loadConfig() {
23177
23182
  }
23178
23183
  function getMcpServerConfig(serverName) {
23179
23184
  const config = loadConfig();
23180
- const serverConfig = config.mcpServers[serverName];
23185
+ let serverConfig = (config.mcpServers || {})[serverName];
23186
+ if (config.mainMcp) {
23187
+ serverConfig = config.mainMcp;
23188
+ }
23181
23189
  if (!serverConfig) {
23182
23190
  throw new Error(`MCP server configuration for "${serverName}" not found in .agent-structurerc`);
23183
23191
  }
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "dezkareid-ai-team",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "mcpServers": {
5
- "ai-team": {
5
+ "chrome-devtools": {
6
6
  "command": "npx",
7
7
  "args": [
8
8
  "-y",
9
- "@dezkareid/ai-team@1.11.1"
9
+ "chrome-devtools-mcp@latest"
10
10
  ]
11
11
  },
12
- "chrome-devtools": {
12
+ "ai-team": {
13
13
  "command": "npx",
14
14
  "args": [
15
15
  "-y",
16
- "chrome-devtools-mcp@latest"
16
+ "@dezkareid/ai-team@1.12.0"
17
17
  ]
18
18
  }
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dezkareid/ai-team",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "description": "Repository for AI Team",
5
5
  "type": "module",
6
6
  "main": "index.js",