@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.
- package/README.md +106 -41
- package/dist/bin.cjs +963 -84
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +963 -84
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +73 -56
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +73 -56
- package/dist/index.js.map +1 -1
- package/package.json +23 -24
- package/templates/CLAUDE.md.template +60 -5
- package/templates/agents/README.md +58 -39
- package/templates/agents/_registry.json +43 -202
- package/templates/agents/engineering/{hono-engineer.md → api-engineer.md} +61 -70
- package/templates/agents/engineering/database-engineer.md +253 -0
- package/templates/agents/engineering/frontend-engineer.md +302 -0
- package/templates/hooks/on-notification.sh +0 -0
- package/templates/scripts/add-changelogs.sh +0 -0
- package/templates/scripts/generate-code-registry.ts +0 -0
- package/templates/scripts/health-check.sh +0 -0
- package/templates/scripts/sync-registry.sh +0 -0
- package/templates/scripts/telemetry-report.ts +0 -0
- package/templates/scripts/validate-docs.sh +0 -0
- package/templates/scripts/validate-registry.sh +0 -0
- package/templates/scripts/validate-structure.sh +0 -0
- package/templates/scripts/worktree-cleanup.sh +0 -0
- package/templates/scripts/worktree-create.sh +0 -0
- package/templates/skills/README.md +99 -90
- package/templates/skills/_registry.json +323 -16
- package/templates/skills/api-frameworks/express-patterns.md +411 -0
- package/templates/skills/api-frameworks/fastify-patterns.md +419 -0
- package/templates/skills/api-frameworks/hono-patterns.md +388 -0
- package/templates/skills/api-frameworks/nestjs-patterns.md +497 -0
- package/templates/skills/database/drizzle-patterns.md +449 -0
- package/templates/skills/database/mongoose-patterns.md +503 -0
- package/templates/skills/database/prisma-patterns.md +487 -0
- package/templates/skills/frontend-frameworks/astro-patterns.md +415 -0
- package/templates/skills/frontend-frameworks/nextjs-patterns.md +470 -0
- package/templates/skills/frontend-frameworks/react-patterns.md +516 -0
- package/templates/skills/frontend-frameworks/tanstack-start-patterns.md +469 -0
- package/templates/skills/patterns/atdd-methodology.md +364 -0
- package/templates/skills/patterns/bdd-methodology.md +281 -0
- package/templates/skills/patterns/clean-architecture.md +444 -0
- package/templates/skills/patterns/hexagonal-architecture.md +567 -0
- package/templates/skills/patterns/vertical-slice-architecture.md +502 -0
- package/templates/agents/engineering/astro-engineer.md +0 -293
- package/templates/agents/engineering/db-drizzle-engineer.md +0 -360
- package/templates/agents/engineering/express-engineer.md +0 -316
- package/templates/agents/engineering/fastify-engineer.md +0 -399
- package/templates/agents/engineering/mongoose-engineer.md +0 -473
- package/templates/agents/engineering/nestjs-engineer.md +0 -429
- package/templates/agents/engineering/nextjs-engineer.md +0 -451
- package/templates/agents/engineering/prisma-engineer.md +0 -432
- package/templates/agents/engineering/react-senior-dev.md +0 -394
- package/templates/agents/engineering/tanstack-start-engineer.md +0 -447
package/dist/index.d.cts
CHANGED
|
@@ -1052,6 +1052,8 @@ interface ModuleDefinition extends ModuleExtendedInfo {
|
|
|
1052
1052
|
includedInBundles?: string[];
|
|
1053
1053
|
/** Placeholders used in this module's files */
|
|
1054
1054
|
placeholders?: string[];
|
|
1055
|
+
/** Related skills that should be prompted when this agent is selected (agents only) */
|
|
1056
|
+
relatedSkills?: string[];
|
|
1055
1057
|
}
|
|
1056
1058
|
/**
|
|
1057
1059
|
* Full module registry - all categories combined
|
package/dist/index.d.ts
CHANGED
|
@@ -1052,6 +1052,8 @@ interface ModuleDefinition extends ModuleExtendedInfo {
|
|
|
1052
1052
|
includedInBundles?: string[];
|
|
1053
1053
|
/** Placeholders used in this module's files */
|
|
1054
1054
|
placeholders?: string[];
|
|
1055
|
+
/** Related skills that should be prompted when this agent is selected (agents only) */
|
|
1056
|
+
relatedSkills?: string[];
|
|
1055
1057
|
}
|
|
1056
1058
|
/**
|
|
1057
1059
|
* Full module registry - all categories combined
|
package/dist/index.js
CHANGED
|
@@ -121,15 +121,10 @@ var BUNDLES = [
|
|
|
121
121
|
moduleDetails: {
|
|
122
122
|
agents: [
|
|
123
123
|
{
|
|
124
|
-
id: "
|
|
125
|
-
role: "
|
|
124
|
+
id: "frontend-engineer",
|
|
125
|
+
role: "Frontend Development",
|
|
126
126
|
responsibilities: ["Component design", "State management", "Performance optimization"]
|
|
127
127
|
},
|
|
128
|
-
{
|
|
129
|
-
id: "tanstack-start-engineer",
|
|
130
|
-
role: "TanStack Specialist",
|
|
131
|
-
responsibilities: ["Router setup", "Query patterns", "SSR configuration"]
|
|
132
|
-
},
|
|
133
128
|
{
|
|
134
129
|
id: "ux-ui-designer",
|
|
135
130
|
role: "UI/UX Design",
|
|
@@ -137,6 +132,8 @@ var BUNDLES = [
|
|
|
137
132
|
}
|
|
138
133
|
],
|
|
139
134
|
skills: [
|
|
135
|
+
{ id: "react-patterns", purpose: "React component patterns" },
|
|
136
|
+
{ id: "tanstack-start-patterns", purpose: "TanStack Router/Start patterns" },
|
|
140
137
|
{ id: "web-app-testing", purpose: "React Testing Library patterns" },
|
|
141
138
|
{ id: "shadcn-specialist", purpose: "Shadcn UI component usage" },
|
|
142
139
|
{ id: "accessibility-audit", purpose: "WCAG compliance" },
|
|
@@ -148,9 +145,10 @@ var BUNDLES = [
|
|
|
148
145
|
docs: [{ id: "design-standards", topic: "UI/UX design standards" }]
|
|
149
146
|
},
|
|
150
147
|
modules: [
|
|
151
|
-
{ id: "
|
|
152
|
-
{ id: "tanstack-start-engineer", category: "agents" },
|
|
148
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
153
149
|
{ id: "ux-ui-designer", category: "agents" },
|
|
150
|
+
{ id: "react-patterns", category: "skills" },
|
|
151
|
+
{ id: "tanstack-start-patterns", category: "skills" },
|
|
154
152
|
{ id: "web-app-testing", category: "skills" },
|
|
155
153
|
{ id: "shadcn-specialist", category: "skills" },
|
|
156
154
|
{ id: "accessibility-audit", category: "skills" },
|
|
@@ -186,15 +184,10 @@ var BUNDLES = [
|
|
|
186
184
|
moduleDetails: {
|
|
187
185
|
agents: [
|
|
188
186
|
{
|
|
189
|
-
id: "
|
|
190
|
-
role: "
|
|
187
|
+
id: "frontend-engineer",
|
|
188
|
+
role: "Frontend Development",
|
|
191
189
|
responsibilities: ["Routing", "Islands architecture", "Build optimization"]
|
|
192
190
|
},
|
|
193
|
-
{
|
|
194
|
-
id: "react-senior-dev",
|
|
195
|
-
role: "React Components",
|
|
196
|
-
responsibilities: ["Interactive components", "Client hydration"]
|
|
197
|
-
},
|
|
198
191
|
{
|
|
199
192
|
id: "seo-ai-specialist",
|
|
200
193
|
role: "SEO Optimization",
|
|
@@ -202,6 +195,8 @@ var BUNDLES = [
|
|
|
202
195
|
}
|
|
203
196
|
],
|
|
204
197
|
skills: [
|
|
198
|
+
{ id: "astro-patterns", purpose: "Astro-specific patterns" },
|
|
199
|
+
{ id: "react-patterns", purpose: "React island components" },
|
|
205
200
|
{ id: "web-app-testing", purpose: "Component testing" },
|
|
206
201
|
{ id: "vercel-specialist", purpose: "Deployment optimization" },
|
|
207
202
|
{ id: "performance-audit", purpose: "Core Web Vitals" }
|
|
@@ -210,9 +205,10 @@ var BUNDLES = [
|
|
|
210
205
|
docs: []
|
|
211
206
|
},
|
|
212
207
|
modules: [
|
|
213
|
-
{ id: "
|
|
214
|
-
{ id: "react-senior-dev", category: "agents" },
|
|
208
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
215
209
|
{ id: "seo-ai-specialist", category: "agents" },
|
|
210
|
+
{ id: "astro-patterns", category: "skills" },
|
|
211
|
+
{ id: "react-patterns", category: "skills" },
|
|
216
212
|
{ id: "web-app-testing", category: "skills" },
|
|
217
213
|
{ id: "vercel-specialist", category: "skills" },
|
|
218
214
|
{ id: "performance-audit", category: "skills" }
|
|
@@ -245,17 +241,12 @@ var BUNDLES = [
|
|
|
245
241
|
moduleDetails: {
|
|
246
242
|
agents: [
|
|
247
243
|
{
|
|
248
|
-
id: "
|
|
249
|
-
role: "
|
|
250
|
-
responsibilities: ["App Router", "Server Actions", "
|
|
244
|
+
id: "frontend-engineer",
|
|
245
|
+
role: "Frontend Development",
|
|
246
|
+
responsibilities: ["App Router", "Server Actions", "Client components"]
|
|
251
247
|
},
|
|
252
248
|
{
|
|
253
|
-
id: "
|
|
254
|
-
role: "React Components",
|
|
255
|
-
responsibilities: ["Client components", "State management"]
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
id: "prisma-engineer",
|
|
249
|
+
id: "database-engineer",
|
|
259
250
|
role: "Database",
|
|
260
251
|
responsibilities: ["Schema design", "Migrations", "Query optimization"]
|
|
261
252
|
},
|
|
@@ -266,6 +257,9 @@ var BUNDLES = [
|
|
|
266
257
|
}
|
|
267
258
|
],
|
|
268
259
|
skills: [
|
|
260
|
+
{ id: "nextjs-patterns", purpose: "Next.js App Router patterns" },
|
|
261
|
+
{ id: "react-patterns", purpose: "React component patterns" },
|
|
262
|
+
{ id: "prisma-patterns", purpose: "Prisma ORM patterns" },
|
|
269
263
|
{ id: "web-app-testing", purpose: "Next.js testing patterns" },
|
|
270
264
|
{ id: "shadcn-specialist", purpose: "UI components" },
|
|
271
265
|
{ id: "vercel-specialist", purpose: "Deployment" },
|
|
@@ -277,10 +271,12 @@ var BUNDLES = [
|
|
|
277
271
|
docs: []
|
|
278
272
|
},
|
|
279
273
|
modules: [
|
|
280
|
-
{ id: "
|
|
281
|
-
{ id: "
|
|
282
|
-
{ id: "prisma-engineer", category: "agents" },
|
|
274
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
275
|
+
{ id: "database-engineer", category: "agents" },
|
|
283
276
|
{ id: "ux-ui-designer", category: "agents" },
|
|
277
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
278
|
+
{ id: "react-patterns", category: "skills" },
|
|
279
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
284
280
|
{ id: "web-app-testing", category: "skills" },
|
|
285
281
|
{ id: "shadcn-specialist", category: "skills" },
|
|
286
282
|
{ id: "vercel-specialist", category: "skills" },
|
|
@@ -316,12 +312,12 @@ var BUNDLES = [
|
|
|
316
312
|
moduleDetails: {
|
|
317
313
|
agents: [
|
|
318
314
|
{
|
|
319
|
-
id: "
|
|
320
|
-
role: "
|
|
315
|
+
id: "api-engineer",
|
|
316
|
+
role: "API Development",
|
|
321
317
|
responsibilities: ["Route design", "Middleware", "Error handling"]
|
|
322
318
|
},
|
|
323
319
|
{
|
|
324
|
-
id: "
|
|
320
|
+
id: "database-engineer",
|
|
325
321
|
role: "Database",
|
|
326
322
|
responsibilities: ["Schema", "Migrations", "Queries"]
|
|
327
323
|
},
|
|
@@ -332,6 +328,8 @@ var BUNDLES = [
|
|
|
332
328
|
}
|
|
333
329
|
],
|
|
334
330
|
skills: [
|
|
331
|
+
{ id: "express-patterns", purpose: "Express.js patterns" },
|
|
332
|
+
{ id: "prisma-patterns", purpose: "Prisma ORM patterns" },
|
|
335
333
|
{ id: "api-app-testing", purpose: "API testing with supertest" },
|
|
336
334
|
{ id: "error-handling-patterns", purpose: "Error middleware" },
|
|
337
335
|
{ id: "security-testing", purpose: "Security best practices" }
|
|
@@ -340,9 +338,11 @@ var BUNDLES = [
|
|
|
340
338
|
docs: [{ id: "architecture-patterns", topic: "API architecture patterns" }]
|
|
341
339
|
},
|
|
342
340
|
modules: [
|
|
343
|
-
{ id: "
|
|
344
|
-
{ id: "
|
|
341
|
+
{ id: "api-engineer", category: "agents" },
|
|
342
|
+
{ id: "database-engineer", category: "agents" },
|
|
345
343
|
{ id: "node-typescript-engineer", category: "agents" },
|
|
344
|
+
{ id: "express-patterns", category: "skills" },
|
|
345
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
346
346
|
{ id: "api-app-testing", category: "skills" },
|
|
347
347
|
{ id: "error-handling-patterns", category: "skills" },
|
|
348
348
|
{ id: "security-testing", category: "skills" },
|
|
@@ -376,13 +376,13 @@ var BUNDLES = [
|
|
|
376
376
|
moduleDetails: {
|
|
377
377
|
agents: [
|
|
378
378
|
{
|
|
379
|
-
id: "
|
|
380
|
-
role: "
|
|
379
|
+
id: "api-engineer",
|
|
380
|
+
role: "API Development",
|
|
381
381
|
responsibilities: ["Route handlers", "Middleware", "OpenAPI integration"]
|
|
382
382
|
},
|
|
383
383
|
{
|
|
384
|
-
id: "
|
|
385
|
-
role: "
|
|
384
|
+
id: "database-engineer",
|
|
385
|
+
role: "Database",
|
|
386
386
|
responsibilities: ["Schema design", "Migrations", "Type-safe queries"]
|
|
387
387
|
},
|
|
388
388
|
{
|
|
@@ -392,6 +392,8 @@ var BUNDLES = [
|
|
|
392
392
|
}
|
|
393
393
|
],
|
|
394
394
|
skills: [
|
|
395
|
+
{ id: "hono-patterns", purpose: "Hono framework patterns" },
|
|
396
|
+
{ id: "drizzle-patterns", purpose: "Drizzle ORM patterns" },
|
|
395
397
|
{ id: "api-app-testing", purpose: "Hono testing patterns" },
|
|
396
398
|
{ id: "error-handling-patterns", purpose: "Error middleware" },
|
|
397
399
|
{ id: "security-testing", purpose: "Security validation" }
|
|
@@ -400,9 +402,11 @@ var BUNDLES = [
|
|
|
400
402
|
docs: [{ id: "architecture-patterns", topic: "API architecture patterns" }]
|
|
401
403
|
},
|
|
402
404
|
modules: [
|
|
403
|
-
{ id: "
|
|
404
|
-
{ id: "
|
|
405
|
+
{ id: "api-engineer", category: "agents" },
|
|
406
|
+
{ id: "database-engineer", category: "agents" },
|
|
405
407
|
{ id: "node-typescript-engineer", category: "agents" },
|
|
408
|
+
{ id: "hono-patterns", category: "skills" },
|
|
409
|
+
{ id: "drizzle-patterns", category: "skills" },
|
|
406
410
|
{ id: "api-app-testing", category: "skills" },
|
|
407
411
|
{ id: "error-handling-patterns", category: "skills" },
|
|
408
412
|
{ id: "security-testing", category: "skills" },
|
|
@@ -633,7 +637,8 @@ var BUNDLES = [
|
|
|
633
637
|
tags: ["database", "drizzle", "orm"],
|
|
634
638
|
alternativeTo: ["prisma-database", "mongoose-database"],
|
|
635
639
|
modules: [
|
|
636
|
-
{ id: "
|
|
640
|
+
{ id: "database-engineer", category: "agents" },
|
|
641
|
+
{ id: "drizzle-patterns", category: "skills" },
|
|
637
642
|
{ id: "json-data-auditor", category: "skills" }
|
|
638
643
|
]
|
|
639
644
|
},
|
|
@@ -647,7 +652,8 @@ var BUNDLES = [
|
|
|
647
652
|
tags: ["database", "prisma", "orm"],
|
|
648
653
|
alternativeTo: ["drizzle-database", "mongoose-database"],
|
|
649
654
|
modules: [
|
|
650
|
-
{ id: "
|
|
655
|
+
{ id: "database-engineer", category: "agents" },
|
|
656
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
651
657
|
{ id: "json-data-auditor", category: "skills" }
|
|
652
658
|
]
|
|
653
659
|
},
|
|
@@ -661,7 +667,8 @@ var BUNDLES = [
|
|
|
661
667
|
tags: ["database", "mongodb", "mongoose", "nosql"],
|
|
662
668
|
alternativeTo: ["drizzle-database", "prisma-database"],
|
|
663
669
|
modules: [
|
|
664
|
-
{ id: "
|
|
670
|
+
{ id: "database-engineer", category: "agents" },
|
|
671
|
+
{ id: "mongoose-patterns", category: "skills" },
|
|
665
672
|
{ id: "json-data-auditor", category: "skills" }
|
|
666
673
|
]
|
|
667
674
|
},
|
|
@@ -678,7 +685,8 @@ var BUNDLES = [
|
|
|
678
685
|
tags: ["api", "hono", "backend"],
|
|
679
686
|
alternativeTo: ["express-api", "fastify-api", "nestjs-api"],
|
|
680
687
|
modules: [
|
|
681
|
-
{ id: "
|
|
688
|
+
{ id: "api-engineer", category: "agents" },
|
|
689
|
+
{ id: "hono-patterns", category: "skills" },
|
|
682
690
|
{ id: "api-app-testing", category: "skills" },
|
|
683
691
|
{ id: "error-handling-patterns", category: "skills" }
|
|
684
692
|
]
|
|
@@ -693,7 +701,8 @@ var BUNDLES = [
|
|
|
693
701
|
tags: ["api", "express", "backend"],
|
|
694
702
|
alternativeTo: ["hono-api", "fastify-api", "nestjs-api"],
|
|
695
703
|
modules: [
|
|
696
|
-
{ id: "
|
|
704
|
+
{ id: "api-engineer", category: "agents" },
|
|
705
|
+
{ id: "express-patterns", category: "skills" },
|
|
697
706
|
{ id: "api-app-testing", category: "skills" },
|
|
698
707
|
{ id: "error-handling-patterns", category: "skills" }
|
|
699
708
|
]
|
|
@@ -708,7 +717,8 @@ var BUNDLES = [
|
|
|
708
717
|
tags: ["api", "fastify", "backend", "performance"],
|
|
709
718
|
alternativeTo: ["hono-api", "express-api", "nestjs-api"],
|
|
710
719
|
modules: [
|
|
711
|
-
{ id: "
|
|
720
|
+
{ id: "api-engineer", category: "agents" },
|
|
721
|
+
{ id: "fastify-patterns", category: "skills" },
|
|
712
722
|
{ id: "api-app-testing", category: "skills" },
|
|
713
723
|
{ id: "error-handling-patterns", category: "skills" }
|
|
714
724
|
]
|
|
@@ -723,7 +733,8 @@ var BUNDLES = [
|
|
|
723
733
|
tags: ["api", "nestjs", "backend", "enterprise"],
|
|
724
734
|
alternativeTo: ["hono-api", "express-api", "fastify-api"],
|
|
725
735
|
modules: [
|
|
726
|
-
{ id: "
|
|
736
|
+
{ id: "api-engineer", category: "agents" },
|
|
737
|
+
{ id: "nestjs-patterns", category: "skills" },
|
|
727
738
|
{ id: "api-app-testing", category: "skills" },
|
|
728
739
|
{ id: "error-handling-patterns", category: "skills" }
|
|
729
740
|
]
|
|
@@ -740,8 +751,9 @@ var BUNDLES = [
|
|
|
740
751
|
techStack: ["React", "Shadcn UI", "Tailwind CSS", "Radix UI"],
|
|
741
752
|
tags: ["react", "ui", "components"],
|
|
742
753
|
modules: [
|
|
743
|
-
{ id: "
|
|
754
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
744
755
|
{ id: "ux-ui-designer", category: "agents" },
|
|
756
|
+
{ id: "react-patterns", category: "skills" },
|
|
745
757
|
{ id: "shadcn-specialist", category: "skills" },
|
|
746
758
|
{ id: "brand-guidelines", category: "skills" },
|
|
747
759
|
{ id: "accessibility-audit", category: "skills" }
|
|
@@ -756,7 +768,8 @@ var BUNDLES = [
|
|
|
756
768
|
techStack: ["React Hook Form", "Zod", "React", "TypeScript"],
|
|
757
769
|
tags: ["react", "forms", "validation"],
|
|
758
770
|
modules: [
|
|
759
|
-
{ id: "
|
|
771
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
772
|
+
{ id: "react-patterns", category: "skills" },
|
|
760
773
|
{ id: "react-hook-form-patterns", category: "skills" },
|
|
761
774
|
{ id: "shadcn-specialist", category: "skills" }
|
|
762
775
|
]
|
|
@@ -771,7 +784,8 @@ var BUNDLES = [
|
|
|
771
784
|
tags: ["react", "state", "zustand"],
|
|
772
785
|
alternativeTo: ["react-state-redux"],
|
|
773
786
|
modules: [
|
|
774
|
-
{ id: "
|
|
787
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
788
|
+
{ id: "react-patterns", category: "skills" },
|
|
775
789
|
{ id: "zustand-patterns", category: "skills" },
|
|
776
790
|
{ id: "tanstack-query-patterns", category: "skills" }
|
|
777
791
|
]
|
|
@@ -786,7 +800,8 @@ var BUNDLES = [
|
|
|
786
800
|
tags: ["react", "state", "redux"],
|
|
787
801
|
alternativeTo: ["react-state-zustand"],
|
|
788
802
|
modules: [
|
|
789
|
-
{ id: "
|
|
803
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
804
|
+
{ id: "react-patterns", category: "skills" },
|
|
790
805
|
{ id: "redux-toolkit-patterns", category: "skills" },
|
|
791
806
|
{ id: "tanstack-query-patterns", category: "skills", optional: true }
|
|
792
807
|
]
|
|
@@ -800,7 +815,8 @@ var BUNDLES = [
|
|
|
800
815
|
techStack: ["NextAuth.js", "Auth.js", "Next.js", "Prisma"],
|
|
801
816
|
tags: ["nextjs", "auth", "oauth"],
|
|
802
817
|
modules: [
|
|
803
|
-
{ id: "
|
|
818
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
819
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
804
820
|
{ id: "nextauth-patterns", category: "skills" },
|
|
805
821
|
{ id: "security-testing", category: "skills" }
|
|
806
822
|
]
|
|
@@ -814,8 +830,9 @@ var BUNDLES = [
|
|
|
814
830
|
techStack: ["next-intl", "Next.js", "React", "TypeScript"],
|
|
815
831
|
tags: ["nextjs", "i18n", "internationalization"],
|
|
816
832
|
modules: [
|
|
817
|
-
{ id: "
|
|
833
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
818
834
|
{ id: "i18n-specialist", category: "agents", optional: true },
|
|
835
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
819
836
|
{ id: "i18n-patterns", category: "skills" }
|
|
820
837
|
]
|
|
821
838
|
},
|
|
@@ -935,7 +952,7 @@ var BUNDLES = [
|
|
|
935
952
|
}
|
|
936
953
|
],
|
|
937
954
|
skills: [
|
|
938
|
-
{ id: "
|
|
955
|
+
{ id: "markdown-formatter", purpose: "Markdown formatting" },
|
|
939
956
|
{ id: "mermaid-diagram-specialist", purpose: "Diagram creation" }
|
|
940
957
|
],
|
|
941
958
|
commands: [
|
|
@@ -950,7 +967,7 @@ var BUNDLES = [
|
|
|
950
967
|
},
|
|
951
968
|
modules: [
|
|
952
969
|
{ id: "tech-writer", category: "agents" },
|
|
953
|
-
{ id: "
|
|
970
|
+
{ id: "markdown-formatter", category: "skills" },
|
|
954
971
|
{ id: "mermaid-diagram-specialist", category: "skills" },
|
|
955
972
|
{ id: "update-docs", category: "commands" },
|
|
956
973
|
{ id: "markdown-format", category: "commands" },
|