@qazuor/claude-code-config 0.5.0 → 0.6.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.
Files changed (57) hide show
  1. package/README.md +106 -41
  2. package/dist/bin.cjs +963 -84
  3. package/dist/bin.cjs.map +1 -1
  4. package/dist/bin.js +963 -84
  5. package/dist/bin.js.map +1 -1
  6. package/dist/index.cjs +73 -56
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.cts +2 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +73 -56
  11. package/dist/index.js.map +1 -1
  12. package/package.json +23 -24
  13. package/templates/CLAUDE.md.template +60 -5
  14. package/templates/agents/README.md +58 -39
  15. package/templates/agents/_registry.json +43 -202
  16. package/templates/agents/engineering/{hono-engineer.md → api-engineer.md} +61 -70
  17. package/templates/agents/engineering/database-engineer.md +253 -0
  18. package/templates/agents/engineering/frontend-engineer.md +302 -0
  19. package/templates/hooks/on-notification.sh +0 -0
  20. package/templates/scripts/add-changelogs.sh +0 -0
  21. package/templates/scripts/generate-code-registry.ts +0 -0
  22. package/templates/scripts/health-check.sh +0 -0
  23. package/templates/scripts/sync-registry.sh +0 -0
  24. package/templates/scripts/telemetry-report.ts +0 -0
  25. package/templates/scripts/validate-docs.sh +0 -0
  26. package/templates/scripts/validate-registry.sh +0 -0
  27. package/templates/scripts/validate-structure.sh +0 -0
  28. package/templates/scripts/worktree-cleanup.sh +0 -0
  29. package/templates/scripts/worktree-create.sh +0 -0
  30. package/templates/skills/README.md +99 -90
  31. package/templates/skills/_registry.json +323 -16
  32. package/templates/skills/api-frameworks/express-patterns.md +411 -0
  33. package/templates/skills/api-frameworks/fastify-patterns.md +419 -0
  34. package/templates/skills/api-frameworks/hono-patterns.md +388 -0
  35. package/templates/skills/api-frameworks/nestjs-patterns.md +497 -0
  36. package/templates/skills/database/drizzle-patterns.md +449 -0
  37. package/templates/skills/database/mongoose-patterns.md +503 -0
  38. package/templates/skills/database/prisma-patterns.md +487 -0
  39. package/templates/skills/frontend-frameworks/astro-patterns.md +415 -0
  40. package/templates/skills/frontend-frameworks/nextjs-patterns.md +470 -0
  41. package/templates/skills/frontend-frameworks/react-patterns.md +516 -0
  42. package/templates/skills/frontend-frameworks/tanstack-start-patterns.md +469 -0
  43. package/templates/skills/patterns/atdd-methodology.md +364 -0
  44. package/templates/skills/patterns/bdd-methodology.md +281 -0
  45. package/templates/skills/patterns/clean-architecture.md +444 -0
  46. package/templates/skills/patterns/hexagonal-architecture.md +567 -0
  47. package/templates/skills/patterns/vertical-slice-architecture.md +502 -0
  48. package/templates/agents/engineering/astro-engineer.md +0 -293
  49. package/templates/agents/engineering/db-drizzle-engineer.md +0 -360
  50. package/templates/agents/engineering/express-engineer.md +0 -316
  51. package/templates/agents/engineering/fastify-engineer.md +0 -399
  52. package/templates/agents/engineering/mongoose-engineer.md +0 -473
  53. package/templates/agents/engineering/nestjs-engineer.md +0 -429
  54. package/templates/agents/engineering/nextjs-engineer.md +0 -451
  55. package/templates/agents/engineering/prisma-engineer.md +0 -432
  56. package/templates/agents/engineering/react-senior-dev.md +0 -394
  57. package/templates/agents/engineering/tanstack-start-engineer.md +0 -447
@@ -1,6 +1,215 @@
1
1
  {
2
2
  "category": "skills",
3
3
  "modules": [
4
+ {
5
+ "id": "hono-patterns",
6
+ "name": "Hono Patterns",
7
+ "description": "Hono framework patterns and best practices",
8
+ "file": "api-frameworks/hono-patterns.md",
9
+ "tags": ["api", "hono", "backend", "framework"],
10
+ "longDescription": "Framework-specific patterns for building APIs with Hono. Covers route definitions, middleware, error handling, and testing patterns.",
11
+ "whatItDoes": [
12
+ "Defines route patterns with Hono",
13
+ "Implements middleware chains",
14
+ "Handles request validation with Zod",
15
+ "Creates typed API responses",
16
+ "Provides testing patterns with app.fetch()"
17
+ ],
18
+ "whenToUse": "When building backend APIs with the Hono framework.",
19
+ "techStack": ["Hono", "TypeScript", "Zod"],
20
+ "skillLevel": "intermediate",
21
+ "relatedModules": ["api-engineer"]
22
+ },
23
+ {
24
+ "id": "express-patterns",
25
+ "name": "Express Patterns",
26
+ "description": "Express.js framework patterns and best practices",
27
+ "file": "api-frameworks/express-patterns.md",
28
+ "tags": ["api", "express", "backend", "framework"],
29
+ "longDescription": "Framework-specific patterns for building APIs with Express.js. Covers route definitions, middleware, error handling, and testing with Supertest.",
30
+ "whatItDoes": [
31
+ "Defines router patterns with Express",
32
+ "Implements controller-service architecture",
33
+ "Creates async error handling middleware",
34
+ "Uses express-validator for validation",
35
+ "Provides testing patterns with Supertest"
36
+ ],
37
+ "whenToUse": "When building backend APIs with Express.js.",
38
+ "techStack": ["Express.js", "TypeScript", "express-validator"],
39
+ "skillLevel": "intermediate",
40
+ "relatedModules": ["api-engineer"]
41
+ },
42
+ {
43
+ "id": "fastify-patterns",
44
+ "name": "Fastify Patterns",
45
+ "description": "Fastify framework patterns and best practices",
46
+ "file": "api-frameworks/fastify-patterns.md",
47
+ "tags": ["api", "fastify", "backend", "framework"],
48
+ "longDescription": "Framework-specific patterns for building high-performance APIs with Fastify. Covers plugins, schema validation, decorators, and inject-based testing.",
49
+ "whatItDoes": [
50
+ "Creates typed routes with TypeBox schemas",
51
+ "Implements plugin architecture",
52
+ "Uses decorators for shared utilities",
53
+ "Generates OpenAPI docs from schemas",
54
+ "Provides testing with fastify.inject()"
55
+ ],
56
+ "whenToUse": "When building high-performance APIs with Fastify.",
57
+ "techStack": ["Fastify", "TypeBox", "TypeScript"],
58
+ "skillLevel": "intermediate",
59
+ "relatedModules": ["api-engineer"]
60
+ },
61
+ {
62
+ "id": "nestjs-patterns",
63
+ "name": "NestJS Patterns",
64
+ "description": "NestJS framework patterns and best practices",
65
+ "file": "api-frameworks/nestjs-patterns.md",
66
+ "tags": ["api", "nestjs", "backend", "framework", "enterprise"],
67
+ "longDescription": "Framework-specific patterns for building enterprise applications with NestJS. Covers modules, DTOs, guards, interceptors, and testing patterns.",
68
+ "whatItDoes": [
69
+ "Creates modular application architecture",
70
+ "Implements DTOs with class-validator",
71
+ "Uses guards for authentication",
72
+ "Creates interceptors for response transformation",
73
+ "Provides testing patterns with TestingModule"
74
+ ],
75
+ "whenToUse": "When building enterprise applications with NestJS.",
76
+ "techStack": ["NestJS", "TypeScript", "class-validator", "class-transformer"],
77
+ "skillLevel": "advanced",
78
+ "relatedModules": ["api-engineer"]
79
+ },
80
+ {
81
+ "id": "drizzle-patterns",
82
+ "name": "Drizzle Patterns",
83
+ "description": "Drizzle ORM patterns and best practices",
84
+ "file": "database/drizzle-patterns.md",
85
+ "tags": ["database", "drizzle", "orm", "backend"],
86
+ "longDescription": "ORM-specific patterns for database operations with Drizzle. Covers schema definitions, relations, migrations, queries, and transactions.",
87
+ "whatItDoes": [
88
+ "Defines database schemas with Drizzle",
89
+ "Implements relations between tables",
90
+ "Creates and runs migrations",
91
+ "Writes type-safe queries",
92
+ "Handles transactions and error recovery"
93
+ ],
94
+ "whenToUse": "When using Drizzle ORM for database access.",
95
+ "techStack": ["Drizzle ORM", "PostgreSQL", "SQLite", "MySQL", "TypeScript"],
96
+ "skillLevel": "intermediate",
97
+ "relatedModules": ["database-engineer"]
98
+ },
99
+ {
100
+ "id": "prisma-patterns",
101
+ "name": "Prisma Patterns",
102
+ "description": "Prisma ORM patterns and best practices",
103
+ "file": "database/prisma-patterns.md",
104
+ "tags": ["database", "prisma", "orm", "backend"],
105
+ "longDescription": "ORM-specific patterns for database operations with Prisma. Covers schema definitions, relations, migrations, queries, and transactions.",
106
+ "whatItDoes": [
107
+ "Defines schemas in Prisma schema file",
108
+ "Implements relations and nested operations",
109
+ "Creates and runs migrations",
110
+ "Writes type-safe queries with Prisma Client",
111
+ "Handles transactions with $transaction"
112
+ ],
113
+ "whenToUse": "When using Prisma ORM for database access.",
114
+ "techStack": ["Prisma", "PostgreSQL", "MySQL", "SQLite", "MongoDB", "TypeScript"],
115
+ "skillLevel": "intermediate",
116
+ "relatedModules": ["database-engineer"]
117
+ },
118
+ {
119
+ "id": "mongoose-patterns",
120
+ "name": "Mongoose Patterns",
121
+ "description": "Mongoose ODM patterns and best practices",
122
+ "file": "database/mongoose-patterns.md",
123
+ "tags": ["database", "mongoose", "mongodb", "backend"],
124
+ "longDescription": "ODM-specific patterns for MongoDB with Mongoose. Covers schema definitions, virtuals, middleware, population, and aggregation pipelines.",
125
+ "whatItDoes": [
126
+ "Defines typed schemas with Mongoose",
127
+ "Implements virtuals and middleware",
128
+ "Uses population for references",
129
+ "Creates aggregation pipelines",
130
+ "Handles indexes and query optimization"
131
+ ],
132
+ "whenToUse": "When using MongoDB with Mongoose ODM.",
133
+ "techStack": ["Mongoose", "MongoDB", "TypeScript"],
134
+ "skillLevel": "intermediate",
135
+ "relatedModules": ["database-engineer"]
136
+ },
137
+ {
138
+ "id": "react-patterns",
139
+ "name": "React Patterns",
140
+ "description": "React component patterns and best practices",
141
+ "file": "frontend-frameworks/react-patterns.md",
142
+ "tags": ["frontend", "react", "components", "framework"],
143
+ "longDescription": "Framework-specific patterns for building React components. Covers component composition, hooks, performance optimization, and testing patterns.",
144
+ "whatItDoes": [
145
+ "Creates typed functional components",
146
+ "Implements custom hooks patterns",
147
+ "Uses context for state sharing",
148
+ "Optimizes with memo and useMemo",
149
+ "Provides testing patterns with Testing Library"
150
+ ],
151
+ "whenToUse": "When building React applications or component libraries.",
152
+ "techStack": ["React", "TypeScript"],
153
+ "skillLevel": "intermediate",
154
+ "relatedModules": ["frontend-engineer"]
155
+ },
156
+ {
157
+ "id": "nextjs-patterns",
158
+ "name": "Next.js Patterns",
159
+ "description": "Next.js App Router patterns and best practices",
160
+ "file": "frontend-frameworks/nextjs-patterns.md",
161
+ "tags": ["frontend", "nextjs", "fullstack", "framework"],
162
+ "longDescription": "Framework-specific patterns for Next.js App Router. Covers Server Components, Client Components, Server Actions, route handlers, and data fetching.",
163
+ "whatItDoes": [
164
+ "Creates Server and Client Components",
165
+ "Implements Server Actions for mutations",
166
+ "Uses route handlers for APIs",
167
+ "Handles loading and error states",
168
+ "Manages caching and revalidation"
169
+ ],
170
+ "whenToUse": "When building full-stack applications with Next.js App Router.",
171
+ "techStack": ["Next.js", "React", "TypeScript"],
172
+ "skillLevel": "advanced",
173
+ "relatedModules": ["frontend-engineer"]
174
+ },
175
+ {
176
+ "id": "astro-patterns",
177
+ "name": "Astro Patterns",
178
+ "description": "Astro framework patterns and best practices",
179
+ "file": "frontend-frameworks/astro-patterns.md",
180
+ "tags": ["frontend", "astro", "ssg", "framework"],
181
+ "longDescription": "Framework-specific patterns for Astro. Covers pages, layouts, islands architecture, content collections, and API routes.",
182
+ "whatItDoes": [
183
+ "Creates pages and layouts in Astro",
184
+ "Implements islands architecture (client:*)",
185
+ "Uses content collections for structured content",
186
+ "Creates API routes for server functionality",
187
+ "Configures integrations and SSR"
188
+ ],
189
+ "whenToUse": "When building content-focused websites with Astro.",
190
+ "techStack": ["Astro", "TypeScript", "MDX"],
191
+ "skillLevel": "intermediate",
192
+ "relatedModules": ["frontend-engineer"]
193
+ },
194
+ {
195
+ "id": "tanstack-start-patterns",
196
+ "name": "TanStack Start Patterns",
197
+ "description": "TanStack Start framework patterns and best practices",
198
+ "file": "frontend-frameworks/tanstack-start-patterns.md",
199
+ "tags": ["frontend", "tanstack", "fullstack", "framework"],
200
+ "longDescription": "Framework-specific patterns for TanStack Start. Covers file-based routing, loaders, server functions, search params, and error handling.",
201
+ "whatItDoes": [
202
+ "Creates routes with TanStack Router",
203
+ "Implements loaders for data fetching",
204
+ "Uses server functions for mutations",
205
+ "Validates search params with Zod",
206
+ "Handles errors and not-found states"
207
+ ],
208
+ "whenToUse": "When building full-stack applications with TanStack Start.",
209
+ "techStack": ["TanStack Start", "TanStack Router", "React", "TypeScript"],
210
+ "skillLevel": "advanced",
211
+ "relatedModules": ["frontend-engineer"]
212
+ },
4
213
  {
5
214
  "id": "tdd-methodology",
6
215
  "name": "TDD Methodology",
@@ -17,8 +226,106 @@
17
226
  ],
18
227
  "whenToUse": "Essential for any project following TDD practices. Use when writing new features or fixing bugs.",
19
228
  "skillLevel": "intermediate",
229
+ "alternativeTo": ["bdd-methodology", "atdd-methodology"],
20
230
  "relatedModules": ["qa-engineer", "web-app-testing", "api-app-testing"]
21
231
  },
232
+ {
233
+ "id": "bdd-methodology",
234
+ "name": "BDD Methodology",
235
+ "description": "Behavior-Driven Development with Gherkin syntax and collaborative specifications",
236
+ "file": "patterns/bdd-methodology.md",
237
+ "tags": ["testing", "bdd", "methodology", "gherkin"],
238
+ "longDescription": "Comprehensive guide to Behavior-Driven Development (BDD) using Gherkin syntax. Covers collaborative specification, Given-When-Then scenarios, and living documentation.",
239
+ "whatItDoes": [
240
+ "Defines BDD cycle: Discovery → Formulation → Automation",
241
+ "Creates Gherkin feature files with scenarios",
242
+ "Implements step definitions for test automation",
243
+ "Facilitates Three Amigos collaboration sessions",
244
+ "Generates living documentation from tests"
245
+ ],
246
+ "whenToUse": "When business stakeholders need to understand tests, for complex business rules, and when creating living documentation.",
247
+ "skillLevel": "intermediate",
248
+ "alternativeTo": ["tdd-methodology", "atdd-methodology"],
249
+ "techStack": ["Cucumber", "Playwright BDD", "Vitest-cucumber"],
250
+ "relatedModules": ["qa-engineer", "web-app-testing"]
251
+ },
252
+ {
253
+ "id": "atdd-methodology",
254
+ "name": "ATDD Methodology",
255
+ "description": "Acceptance Test-Driven Development focusing on user acceptance criteria",
256
+ "file": "patterns/atdd-methodology.md",
257
+ "tags": ["testing", "atdd", "methodology", "acceptance"],
258
+ "longDescription": "Comprehensive guide to Acceptance Test-Driven Development (ATDD). Covers writing acceptance tests before implementation based on user stories and business requirements.",
259
+ "whatItDoes": [
260
+ "Defines ATDD cycle: Discuss → Distill → Develop → Demo",
261
+ "Creates acceptance tests from user stories",
262
+ "Validates features meet business requirements",
263
+ "Facilitates stakeholder collaboration and sign-off",
264
+ "Ensures acceptance criteria are fully covered"
265
+ ],
266
+ "whenToUse": "When acceptance criteria must be verified, stakeholder sign-off is required, or for complex business workflows.",
267
+ "skillLevel": "intermediate",
268
+ "alternativeTo": ["tdd-methodology", "bdd-methodology"],
269
+ "techStack": ["Playwright", "Cypress", "TestCafe"],
270
+ "relatedModules": ["qa-engineer", "web-app-testing"]
271
+ },
272
+ {
273
+ "id": "clean-architecture",
274
+ "name": "Clean Architecture",
275
+ "description": "Clean Architecture with concentric layers and dependency inversion",
276
+ "file": "patterns/clean-architecture.md",
277
+ "tags": ["architecture", "patterns", "methodology", "layers"],
278
+ "longDescription": "Clean Architecture organizing code in concentric layers where dependencies point inward. The core business logic remains independent of external concerns like databases, UI, or frameworks.",
279
+ "whatItDoes": [
280
+ "Defines concentric layer structure (Entities → Use Cases → Interfaces → Frameworks)",
281
+ "Implements dependency inversion principle",
282
+ "Creates framework-independent business logic",
283
+ "Separates concerns for high testability",
284
+ "Uses dependency injection for all external services"
285
+ ],
286
+ "whenToUse": "For large applications with complex business logic, when high testability is required, or when framework independence is important.",
287
+ "skillLevel": "advanced",
288
+ "alternativeTo": ["hexagonal-architecture"],
289
+ "relatedModules": ["tech-lead", "api-engineer"]
290
+ },
291
+ {
292
+ "id": "hexagonal-architecture",
293
+ "name": "Hexagonal Architecture",
294
+ "description": "Hexagonal Architecture (Ports and Adapters) for loosely coupled applications",
295
+ "file": "patterns/hexagonal-architecture.md",
296
+ "tags": ["architecture", "patterns", "methodology", "ports-adapters"],
297
+ "longDescription": "Hexagonal Architecture (Ports and Adapters) creating loosely coupled components connected to their environment via ports and adapters. The application core is isolated from external concerns.",
298
+ "whatItDoes": [
299
+ "Defines driving (primary) and driven (secondary) ports",
300
+ "Creates adapters for each external technology",
301
+ "Implements core domain with clean boundaries",
302
+ "Enables easy swapping of infrastructure components",
303
+ "Supports multiple entry points (REST, CLI, GraphQL)"
304
+ ],
305
+ "whenToUse": "For integration-heavy applications, microservices, or when easy adapter swapping is needed.",
306
+ "skillLevel": "advanced",
307
+ "alternativeTo": ["clean-architecture"],
308
+ "relatedModules": ["tech-lead", "api-engineer"]
309
+ },
310
+ {
311
+ "id": "vertical-slice-architecture",
312
+ "name": "Vertical Slice Architecture",
313
+ "description": "Vertical Slice Architecture organizing code by feature instead of layers",
314
+ "file": "patterns/vertical-slice-architecture.md",
315
+ "tags": ["architecture", "patterns", "methodology", "feature-based"],
316
+ "longDescription": "Vertical Slice Architecture organizing code by feature (vertical slices) rather than technical layers (horizontal slices). Each feature contains everything it needs: handlers, validators, DTOs, and data access.",
317
+ "whatItDoes": [
318
+ "Organizes code by feature instead of technical layer",
319
+ "Creates self-contained feature slices",
320
+ "Minimizes cross-cutting changes for new features",
321
+ "Favors explicit duplication over wrong abstraction",
322
+ "Enables independent feature development and testing"
323
+ ],
324
+ "whenToUse": "For feature-rich applications, when teams work on separate features, or when preparing for microservices decomposition.",
325
+ "skillLevel": "intermediate",
326
+ "alternativeTo": ["clean-architecture", "hexagonal-architecture"],
327
+ "relatedModules": ["tech-lead", "api-engineer"]
328
+ },
22
329
  {
23
330
  "id": "web-app-testing",
24
331
  "name": "Web App Testing",
@@ -36,7 +343,7 @@
36
343
  "whenToUse": "When building web applications that need E2E testing. Works with React, Vue, Astro, and other frameworks.",
37
344
  "techStack": ["Playwright", "Testing Library", "Vitest", "MSW"],
38
345
  "skillLevel": "intermediate",
39
- "relatedModules": ["react-senior-dev", "astro-engineer", "qa-engineer"]
346
+ "relatedModules": ["frontend-engineer", "qa-engineer"]
40
347
  },
41
348
  {
42
349
  "id": "api-app-testing",
@@ -55,7 +362,7 @@
55
362
  "whenToUse": "When building backend APIs with Hono, Express, Fastify, or other Node.js frameworks.",
56
363
  "techStack": ["Vitest", "Supertest", "MSW", "Zod"],
57
364
  "skillLevel": "intermediate",
58
- "relatedModules": ["hono-engineer", "qa-engineer", "db-drizzle-engineer"]
365
+ "relatedModules": ["api-engineer", "qa-engineer", "database-engineer"]
59
366
  },
60
367
  {
61
368
  "id": "performance-testing",
@@ -74,7 +381,7 @@
74
381
  "whenToUse": "When you need to ensure your application can handle expected load and meets performance requirements.",
75
382
  "techStack": ["k6", "Lighthouse", "Web Vitals"],
76
383
  "skillLevel": "advanced",
77
- "relatedModules": ["performance-audit", "react-senior-dev"]
384
+ "relatedModules": ["performance-audit", "frontend-engineer"]
78
385
  },
79
386
  {
80
387
  "id": "security-testing",
@@ -147,7 +454,7 @@
147
454
  "whenToUse": "When application feels slow, before major launches, or during performance optimization sprints.",
148
455
  "techStack": ["Lighthouse", "webpack-bundle-analyzer", "Chrome DevTools"],
149
456
  "skillLevel": "intermediate",
150
- "relatedModules": ["performance-testing", "react-senior-dev"]
457
+ "relatedModules": ["performance-testing", "frontend-engineer"]
151
458
  },
152
459
  {
153
460
  "id": "accessibility-audit",
@@ -166,7 +473,7 @@
166
473
  "whenToUse": "Essential for public-facing applications. Use during development and before releases.",
167
474
  "techStack": ["axe-core", "Lighthouse", "NVDA", "VoiceOver"],
168
475
  "skillLevel": "intermediate",
169
- "relatedModules": ["ux-ui-designer", "react-senior-dev"]
476
+ "relatedModules": ["ux-ui-designer", "frontend-engineer"]
170
477
  },
171
478
  {
172
479
  "id": "error-handling-patterns",
@@ -185,7 +492,7 @@
185
492
  "whenToUse": "When setting up error handling architecture or improving existing error handling.",
186
493
  "techStack": ["TypeScript", "React", "Zod"],
187
494
  "skillLevel": "intermediate",
188
- "relatedModules": ["node-typescript-engineer", "react-senior-dev"]
495
+ "relatedModules": ["node-typescript-engineer", "frontend-engineer"]
189
496
  },
190
497
  {
191
498
  "id": "nextauth-patterns",
@@ -204,7 +511,7 @@
204
511
  "whenToUse": "When building Next.js applications that need authentication. Supports OAuth providers (GitHub, Google, etc.) and custom credentials.",
205
512
  "techStack": ["NextAuth.js", "Auth.js", "Next.js", "Prisma"],
206
513
  "skillLevel": "intermediate",
207
- "relatedModules": ["nextjs-engineer", "prisma-engineer"]
514
+ "relatedModules": ["frontend-engineer", "database-engineer"]
208
515
  },
209
516
  {
210
517
  "id": "i18n-patterns",
@@ -223,7 +530,7 @@
223
530
  "whenToUse": "When building applications that need to support multiple languages or locales.",
224
531
  "techStack": ["next-intl", "react-i18next", "Next.js", "React"],
225
532
  "skillLevel": "intermediate",
226
- "relatedModules": ["nextjs-engineer", "react-senior-dev", "i18n-specialist"]
533
+ "relatedModules": ["frontend-engineer", "i18n-specialist"]
227
534
  },
228
535
  {
229
536
  "id": "zustand-patterns",
@@ -243,7 +550,7 @@
243
550
  "techStack": ["Zustand", "React", "TypeScript", "Immer"],
244
551
  "skillLevel": "intermediate",
245
552
  "alternativeTo": ["redux-toolkit-patterns"],
246
- "relatedModules": ["react-senior-dev", "tanstack-query-patterns"]
553
+ "relatedModules": ["frontend-engineer", "tanstack-query-patterns"]
247
554
  },
248
555
  {
249
556
  "id": "redux-toolkit-patterns",
@@ -263,7 +570,7 @@
263
570
  "techStack": ["Redux Toolkit", "RTK Query", "React", "TypeScript"],
264
571
  "skillLevel": "intermediate",
265
572
  "alternativeTo": ["zustand-patterns"],
266
- "relatedModules": ["react-senior-dev", "tanstack-query-patterns"]
573
+ "relatedModules": ["frontend-engineer", "tanstack-query-patterns"]
267
574
  },
268
575
  {
269
576
  "id": "tanstack-query-patterns",
@@ -282,7 +589,7 @@
282
589
  "whenToUse": "Essential for any React application fetching data from APIs. Handles caching, background updates, and server state.",
283
590
  "techStack": ["TanStack Query", "React", "TypeScript"],
284
591
  "skillLevel": "intermediate",
285
- "relatedModules": ["react-senior-dev", "hono-engineer", "nextjs-engineer"]
592
+ "relatedModules": ["frontend-engineer", "api-engineer"]
286
593
  },
287
594
  {
288
595
  "id": "react-hook-form-patterns",
@@ -301,7 +608,7 @@
301
608
  "whenToUse": "When building forms in React applications. Provides performant form handling with minimal re-renders and great TypeScript support.",
302
609
  "techStack": ["React Hook Form", "Zod", "React", "TypeScript"],
303
610
  "skillLevel": "intermediate",
304
- "relatedModules": ["react-senior-dev", "shadcn-specialist", "nextjs-engineer"]
611
+ "relatedModules": ["frontend-engineer", "shadcn-specialist"]
305
612
  },
306
613
  {
307
614
  "id": "git-commit-helper",
@@ -393,7 +700,7 @@
393
700
  "whenToUse": "When importing data, validating API responses, or auditing database records.",
394
701
  "techStack": ["Zod", "TypeScript"],
395
702
  "skillLevel": "intermediate",
396
- "relatedModules": ["node-typescript-engineer", "db-drizzle-engineer"]
703
+ "relatedModules": ["node-typescript-engineer", "database-engineer"]
397
704
  },
398
705
  {
399
706
  "id": "brand-guidelines",
@@ -411,7 +718,7 @@
411
718
  ],
412
719
  "whenToUse": "When starting a new project or establishing design consistency across an application.",
413
720
  "skillLevel": "beginner",
414
- "relatedModules": ["ux-ui-designer", "react-senior-dev"]
721
+ "relatedModules": ["ux-ui-designer", "frontend-engineer"]
415
722
  },
416
723
  {
417
724
  "id": "vercel-specialist",
@@ -430,7 +737,7 @@
430
737
  "whenToUse": "When deploying applications to Vercel or using Vercel-specific features.",
431
738
  "techStack": ["Vercel", "Edge Functions", "Serverless"],
432
739
  "skillLevel": "intermediate",
433
- "relatedModules": ["astro-engineer", "tanstack-start-engineer"]
740
+ "relatedModules": ["frontend-engineer"]
434
741
  },
435
742
  {
436
743
  "id": "shadcn-specialist",
@@ -449,7 +756,7 @@
449
756
  "whenToUse": "When building React applications with Shadcn UI component library.",
450
757
  "techStack": ["Shadcn UI", "Radix UI", "Tailwind CSS", "React"],
451
758
  "skillLevel": "intermediate",
452
- "relatedModules": ["react-senior-dev", "ux-ui-designer"]
759
+ "relatedModules": ["frontend-engineer", "ux-ui-designer"]
453
760
  },
454
761
  {
455
762
  "id": "mermaid-diagram-specialist",