@dezkareid/ai-team 1.9.0 → 1.9.2
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 +4 -2
- package/gemini-extension.json +2 -2
- package/package.json +9 -1
package/.agent-structurerc
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"company-context": {
|
|
14
14
|
"name": "company-context",
|
|
15
|
-
"version": "0.0
|
|
15
|
+
"version": "0.1.0",
|
|
16
16
|
"description": "Authoritative company context and tools"
|
|
17
17
|
},
|
|
18
18
|
"web-quality": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"mcpServers": {
|
|
89
89
|
"ai-team": {
|
|
90
90
|
"claude-plugin": "company-context",
|
|
91
|
-
"version": "1.9.
|
|
91
|
+
"version": "1.9.2",
|
|
92
92
|
"package": "@dezkareid/ai-team",
|
|
93
93
|
"command": "npx",
|
|
94
94
|
"args": [
|
package/dist/mcp-server/index.js
CHANGED
|
@@ -23255,11 +23255,12 @@ async function main() {
|
|
|
23255
23255
|
}
|
|
23256
23256
|
}
|
|
23257
23257
|
catch (error) {
|
|
23258
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
23258
23259
|
return {
|
|
23259
23260
|
content: [
|
|
23260
23261
|
{
|
|
23261
23262
|
type: 'text',
|
|
23262
|
-
text: `Error reading product content: ${
|
|
23263
|
+
text: `Error reading product content: ${message}`,
|
|
23263
23264
|
},
|
|
23264
23265
|
],
|
|
23265
23266
|
isError: true,
|
|
@@ -23285,11 +23286,12 @@ async function main() {
|
|
|
23285
23286
|
};
|
|
23286
23287
|
}
|
|
23287
23288
|
catch (error) {
|
|
23289
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
23288
23290
|
return {
|
|
23289
23291
|
content: [
|
|
23290
23292
|
{
|
|
23291
23293
|
type: 'text',
|
|
23292
|
-
text: `Error reading content: ${
|
|
23294
|
+
text: `Error reading content: ${message}`,
|
|
23293
23295
|
},
|
|
23294
23296
|
],
|
|
23295
23297
|
isError: true,
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dezkareid/ai-team",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "Repository for AI Team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,6 +31,10 @@
|
|
|
31
31
|
"homepage": "https://github.com/dezkareid/ai-team#readme",
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@changesets/cli": "2.29.8",
|
|
34
|
+
"@commitlint/cli": "20.5.0",
|
|
35
|
+
"@commitlint/config-conventional": "20.5.0",
|
|
36
|
+
"@dezkareid/eslint-config-ts-base": "1.0.0",
|
|
37
|
+
"@eslint/js": "9.39.2",
|
|
34
38
|
"@rollup/plugin-commonjs": "29.0.0",
|
|
35
39
|
"@rollup/plugin-json": "6.1.0",
|
|
36
40
|
"@rollup/plugin-node-resolve": "16.0.3",
|
|
@@ -39,9 +43,12 @@
|
|
|
39
43
|
"@types/node": "25.0.10",
|
|
40
44
|
"@types/semver": "7.7.1",
|
|
41
45
|
"ajv-cli": "5.0.0",
|
|
46
|
+
"eslint": "9.39.2",
|
|
47
|
+
"husky": "9.1.7",
|
|
42
48
|
"rollup": "4.56.0",
|
|
43
49
|
"tslib": "2.8.1",
|
|
44
50
|
"typescript": "5.9.3",
|
|
51
|
+
"typescript-eslint": "8.57.0",
|
|
45
52
|
"vitest": "4.0.18"
|
|
46
53
|
},
|
|
47
54
|
"dependencies": {
|
|
@@ -57,6 +64,7 @@
|
|
|
57
64
|
"sync-version": "node dist/scripts/sync-version.js",
|
|
58
65
|
"distribute-mcp": "node dist/scripts/distribute-mcp.js",
|
|
59
66
|
"build": "rollup -c",
|
|
67
|
+
"lint": "eslint .",
|
|
60
68
|
"test": "vitest run && npm run test:marketplace",
|
|
61
69
|
"test:marketplace": "ajv validate -s schemas/marketplace.schema.json -d .claude-plugin/marketplace.json",
|
|
62
70
|
"export-claude": "node dist/cli/export-claude.js",
|