@dezkareid/ai-team 1.9.1 → 1.10.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.
@@ -24,6 +24,11 @@
24
24
  "name": "frontend-tools",
25
25
  "version": "0.0.1",
26
26
  "description": "Expert procedural guidance for frontend development (React, Next.js, etc.)"
27
+ },
28
+ "database-tools": {
29
+ "name": "database-tools",
30
+ "version": "0.0.1",
31
+ "description": "Expert procedural guidance for database optimization and best practices"
27
32
  }
28
33
  },
29
34
  "commands": [
@@ -83,12 +88,17 @@
83
88
  "name": "next-best-practices",
84
89
  "source": "skills/next-best-practices/SKILL.md",
85
90
  "claude-plugin": "frontend-tools"
91
+ },
92
+ {
93
+ "name": "supabase-postgres-best-practices",
94
+ "source": "skills/supabase-postgres-best-practices/SKILL.md",
95
+ "claude-plugin": "database-tools"
86
96
  }
87
97
  ],
88
98
  "mcpServers": {
89
99
  "ai-team": {
90
100
  "claude-plugin": "company-context",
91
- "version": "1.9.1",
101
+ "version": "1.10.0",
92
102
  "package": "@dezkareid/ai-team",
93
103
  "command": "npx",
94
104
  "args": [
package/AGENTS.md CHANGED
@@ -100,6 +100,11 @@ File `.agent-structurerc` is used to configure the project structure.
100
100
  "name": "frontend-tools",
101
101
  "version": "0.0.1",
102
102
  "description": "Expert procedural guidance for frontend development (React, Next.js, etc.)"
103
+ },
104
+ "database-tools": {
105
+ "name": "database-tools",
106
+ "version": "0.0.1",
107
+ "description": "Expert procedural guidance for database optimization and best practices"
103
108
  }
104
109
  },
105
110
  "commands": [
@@ -159,6 +164,11 @@ File `.agent-structurerc` is used to configure the project structure.
159
164
  "name": "next-best-practices",
160
165
  "source": "skills/next-best-practices/SKILL.md",
161
166
  "claude-plugin": "frontend-tools"
167
+ },
168
+ {
169
+ "name": "supabase-postgres-best-practices",
170
+ "source": "skills/supabase-postgres-best-practices/SKILL.md",
171
+ "claude-plugin": "database-tools"
162
172
  }
163
173
  ],
164
174
  "mcpServers": {
package/README.md CHANGED
@@ -83,6 +83,12 @@ context/
83
83
  | `react-best-practices` | Expert guidance for React development, including hooks, performance, and patterns. |
84
84
  | `next-best-practices` | Best practices for Next.js applications, including RSC, caching, and routing. |
85
85
 
86
+ #### `database-tools` — Expert procedural guidance for database optimization and best practices
87
+
88
+ | Skill | Description |
89
+ |---|---|
90
+ | `supabase-postgres-best-practices` | Postgres performance optimization and best practices from Supabase. |
91
+
86
92
  ### Install a plugin
87
93
 
88
94
  Once the marketplace is added, install a plugin with:
@@ -93,6 +99,7 @@ claude plugin install design-system
93
99
  claude plugin install company-context
94
100
  claude plugin install web-quality
95
101
  claude plugin install frontend-tools
102
+ claude plugin install database-tools
96
103
  ```
97
104
 
98
105
  ## Development
@@ -23149,15 +23149,15 @@ 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(),
23154
- command: z.string(),
23155
- args: z.array(z.string()),
23156
- contextFiles: z.record(z.string(), z.string()).optional(),
23152
+ 'version': z.string(),
23153
+ 'package': z.string(),
23154
+ 'command': z.string(),
23155
+ 'args': z.array(z.string()),
23156
+ 'contextFiles': z.record(z.string(), z.string()).optional(),
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(), McpServerSchema),
23161
23161
  });
23162
23162
 
23163
23163
  const __filename$1 = fileURLToPath(import.meta.url);
@@ -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: ${error.message}`,
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: ${error.message}`,
23294
+ text: `Error reading content: ${message}`,
23293
23295
  },
23294
23296
  ],
23295
23297
  isError: true,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "dezkareid-ai-team",
3
- "version": "1.9.1",
3
+ "version": "1.10.0",
4
4
  "mcpServers": {
5
5
  "ai-team": {
6
6
  "command": "npx",
7
7
  "args": [
8
8
  "-y",
9
- "@dezkareid/ai-team@1.9.1"
9
+ "@dezkareid/ai-team@1.10.0"
10
10
  ]
11
11
  }
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dezkareid/ai-team",
3
- "version": "1.9.1",
3
+ "version": "1.10.0",
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-plugin-web": "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,8 @@
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 .",
68
+ "lint:fix": "eslint . --fix",
60
69
  "test": "vitest run && npm run test:marketplace",
61
70
  "test:marketplace": "ajv validate -s schemas/marketplace.schema.json -d .claude-plugin/marketplace.json",
62
71
  "export-claude": "node dist/cli/export-claude.js",