@qazuor/claude-code-config 0.4.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 +395 -50
- package/dist/bin.cjs +3207 -165
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +3207 -165
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +75 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +284 -1
- package/dist/index.d.ts +284 -1
- package/dist/index.js +75 -58
- package/dist/index.js.map +1 -1
- package/package.json +24 -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/docs/_registry.json +54 -0
- package/templates/docs/standards/code-standards.md +20 -0
- package/templates/docs/standards/design-standards.md +13 -0
- package/templates/docs/standards/documentation-standards.md +13 -0
- package/templates/docs/standards/performance-standards.md +524 -0
- package/templates/docs/standards/security-standards.md +496 -0
- package/templates/docs/standards/testing-standards.md +15 -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.cjs
CHANGED
|
@@ -172,15 +172,10 @@ var BUNDLES = [
|
|
|
172
172
|
moduleDetails: {
|
|
173
173
|
agents: [
|
|
174
174
|
{
|
|
175
|
-
id: "
|
|
176
|
-
role: "
|
|
175
|
+
id: "frontend-engineer",
|
|
176
|
+
role: "Frontend Development",
|
|
177
177
|
responsibilities: ["Component design", "State management", "Performance optimization"]
|
|
178
178
|
},
|
|
179
|
-
{
|
|
180
|
-
id: "tanstack-start-engineer",
|
|
181
|
-
role: "TanStack Specialist",
|
|
182
|
-
responsibilities: ["Router setup", "Query patterns", "SSR configuration"]
|
|
183
|
-
},
|
|
184
179
|
{
|
|
185
180
|
id: "ux-ui-designer",
|
|
186
181
|
role: "UI/UX Design",
|
|
@@ -188,6 +183,8 @@ var BUNDLES = [
|
|
|
188
183
|
}
|
|
189
184
|
],
|
|
190
185
|
skills: [
|
|
186
|
+
{ id: "react-patterns", purpose: "React component patterns" },
|
|
187
|
+
{ id: "tanstack-start-patterns", purpose: "TanStack Router/Start patterns" },
|
|
191
188
|
{ id: "web-app-testing", purpose: "React Testing Library patterns" },
|
|
192
189
|
{ id: "shadcn-specialist", purpose: "Shadcn UI component usage" },
|
|
193
190
|
{ id: "accessibility-audit", purpose: "WCAG compliance" },
|
|
@@ -199,9 +196,10 @@ var BUNDLES = [
|
|
|
199
196
|
docs: [{ id: "design-standards", topic: "UI/UX design standards" }]
|
|
200
197
|
},
|
|
201
198
|
modules: [
|
|
202
|
-
{ id: "
|
|
203
|
-
{ id: "tanstack-start-engineer", category: "agents" },
|
|
199
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
204
200
|
{ id: "ux-ui-designer", category: "agents" },
|
|
201
|
+
{ id: "react-patterns", category: "skills" },
|
|
202
|
+
{ id: "tanstack-start-patterns", category: "skills" },
|
|
205
203
|
{ id: "web-app-testing", category: "skills" },
|
|
206
204
|
{ id: "shadcn-specialist", category: "skills" },
|
|
207
205
|
{ id: "accessibility-audit", category: "skills" },
|
|
@@ -237,15 +235,10 @@ var BUNDLES = [
|
|
|
237
235
|
moduleDetails: {
|
|
238
236
|
agents: [
|
|
239
237
|
{
|
|
240
|
-
id: "
|
|
241
|
-
role: "
|
|
238
|
+
id: "frontend-engineer",
|
|
239
|
+
role: "Frontend Development",
|
|
242
240
|
responsibilities: ["Routing", "Islands architecture", "Build optimization"]
|
|
243
241
|
},
|
|
244
|
-
{
|
|
245
|
-
id: "react-senior-dev",
|
|
246
|
-
role: "React Components",
|
|
247
|
-
responsibilities: ["Interactive components", "Client hydration"]
|
|
248
|
-
},
|
|
249
242
|
{
|
|
250
243
|
id: "seo-ai-specialist",
|
|
251
244
|
role: "SEO Optimization",
|
|
@@ -253,6 +246,8 @@ var BUNDLES = [
|
|
|
253
246
|
}
|
|
254
247
|
],
|
|
255
248
|
skills: [
|
|
249
|
+
{ id: "astro-patterns", purpose: "Astro-specific patterns" },
|
|
250
|
+
{ id: "react-patterns", purpose: "React island components" },
|
|
256
251
|
{ id: "web-app-testing", purpose: "Component testing" },
|
|
257
252
|
{ id: "vercel-specialist", purpose: "Deployment optimization" },
|
|
258
253
|
{ id: "performance-audit", purpose: "Core Web Vitals" }
|
|
@@ -261,9 +256,10 @@ var BUNDLES = [
|
|
|
261
256
|
docs: []
|
|
262
257
|
},
|
|
263
258
|
modules: [
|
|
264
|
-
{ id: "
|
|
265
|
-
{ id: "react-senior-dev", category: "agents" },
|
|
259
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
266
260
|
{ id: "seo-ai-specialist", category: "agents" },
|
|
261
|
+
{ id: "astro-patterns", category: "skills" },
|
|
262
|
+
{ id: "react-patterns", category: "skills" },
|
|
267
263
|
{ id: "web-app-testing", category: "skills" },
|
|
268
264
|
{ id: "vercel-specialist", category: "skills" },
|
|
269
265
|
{ id: "performance-audit", category: "skills" }
|
|
@@ -296,17 +292,12 @@ var BUNDLES = [
|
|
|
296
292
|
moduleDetails: {
|
|
297
293
|
agents: [
|
|
298
294
|
{
|
|
299
|
-
id: "
|
|
300
|
-
role: "
|
|
301
|
-
responsibilities: ["App Router", "Server Actions", "
|
|
295
|
+
id: "frontend-engineer",
|
|
296
|
+
role: "Frontend Development",
|
|
297
|
+
responsibilities: ["App Router", "Server Actions", "Client components"]
|
|
302
298
|
},
|
|
303
299
|
{
|
|
304
|
-
id: "
|
|
305
|
-
role: "React Components",
|
|
306
|
-
responsibilities: ["Client components", "State management"]
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
id: "prisma-engineer",
|
|
300
|
+
id: "database-engineer",
|
|
310
301
|
role: "Database",
|
|
311
302
|
responsibilities: ["Schema design", "Migrations", "Query optimization"]
|
|
312
303
|
},
|
|
@@ -317,6 +308,9 @@ var BUNDLES = [
|
|
|
317
308
|
}
|
|
318
309
|
],
|
|
319
310
|
skills: [
|
|
311
|
+
{ id: "nextjs-patterns", purpose: "Next.js App Router patterns" },
|
|
312
|
+
{ id: "react-patterns", purpose: "React component patterns" },
|
|
313
|
+
{ id: "prisma-patterns", purpose: "Prisma ORM patterns" },
|
|
320
314
|
{ id: "web-app-testing", purpose: "Next.js testing patterns" },
|
|
321
315
|
{ id: "shadcn-specialist", purpose: "UI components" },
|
|
322
316
|
{ id: "vercel-specialist", purpose: "Deployment" },
|
|
@@ -328,10 +322,12 @@ var BUNDLES = [
|
|
|
328
322
|
docs: []
|
|
329
323
|
},
|
|
330
324
|
modules: [
|
|
331
|
-
{ id: "
|
|
332
|
-
{ id: "
|
|
333
|
-
{ id: "prisma-engineer", category: "agents" },
|
|
325
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
326
|
+
{ id: "database-engineer", category: "agents" },
|
|
334
327
|
{ id: "ux-ui-designer", category: "agents" },
|
|
328
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
329
|
+
{ id: "react-patterns", category: "skills" },
|
|
330
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
335
331
|
{ id: "web-app-testing", category: "skills" },
|
|
336
332
|
{ id: "shadcn-specialist", category: "skills" },
|
|
337
333
|
{ id: "vercel-specialist", category: "skills" },
|
|
@@ -367,12 +363,12 @@ var BUNDLES = [
|
|
|
367
363
|
moduleDetails: {
|
|
368
364
|
agents: [
|
|
369
365
|
{
|
|
370
|
-
id: "
|
|
371
|
-
role: "
|
|
366
|
+
id: "api-engineer",
|
|
367
|
+
role: "API Development",
|
|
372
368
|
responsibilities: ["Route design", "Middleware", "Error handling"]
|
|
373
369
|
},
|
|
374
370
|
{
|
|
375
|
-
id: "
|
|
371
|
+
id: "database-engineer",
|
|
376
372
|
role: "Database",
|
|
377
373
|
responsibilities: ["Schema", "Migrations", "Queries"]
|
|
378
374
|
},
|
|
@@ -383,6 +379,8 @@ var BUNDLES = [
|
|
|
383
379
|
}
|
|
384
380
|
],
|
|
385
381
|
skills: [
|
|
382
|
+
{ id: "express-patterns", purpose: "Express.js patterns" },
|
|
383
|
+
{ id: "prisma-patterns", purpose: "Prisma ORM patterns" },
|
|
386
384
|
{ id: "api-app-testing", purpose: "API testing with supertest" },
|
|
387
385
|
{ id: "error-handling-patterns", purpose: "Error middleware" },
|
|
388
386
|
{ id: "security-testing", purpose: "Security best practices" }
|
|
@@ -391,9 +389,11 @@ var BUNDLES = [
|
|
|
391
389
|
docs: [{ id: "architecture-patterns", topic: "API architecture patterns" }]
|
|
392
390
|
},
|
|
393
391
|
modules: [
|
|
394
|
-
{ id: "
|
|
395
|
-
{ id: "
|
|
392
|
+
{ id: "api-engineer", category: "agents" },
|
|
393
|
+
{ id: "database-engineer", category: "agents" },
|
|
396
394
|
{ id: "node-typescript-engineer", category: "agents" },
|
|
395
|
+
{ id: "express-patterns", category: "skills" },
|
|
396
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
397
397
|
{ id: "api-app-testing", category: "skills" },
|
|
398
398
|
{ id: "error-handling-patterns", category: "skills" },
|
|
399
399
|
{ id: "security-testing", category: "skills" },
|
|
@@ -427,13 +427,13 @@ var BUNDLES = [
|
|
|
427
427
|
moduleDetails: {
|
|
428
428
|
agents: [
|
|
429
429
|
{
|
|
430
|
-
id: "
|
|
431
|
-
role: "
|
|
430
|
+
id: "api-engineer",
|
|
431
|
+
role: "API Development",
|
|
432
432
|
responsibilities: ["Route handlers", "Middleware", "OpenAPI integration"]
|
|
433
433
|
},
|
|
434
434
|
{
|
|
435
|
-
id: "
|
|
436
|
-
role: "
|
|
435
|
+
id: "database-engineer",
|
|
436
|
+
role: "Database",
|
|
437
437
|
responsibilities: ["Schema design", "Migrations", "Type-safe queries"]
|
|
438
438
|
},
|
|
439
439
|
{
|
|
@@ -443,6 +443,8 @@ var BUNDLES = [
|
|
|
443
443
|
}
|
|
444
444
|
],
|
|
445
445
|
skills: [
|
|
446
|
+
{ id: "hono-patterns", purpose: "Hono framework patterns" },
|
|
447
|
+
{ id: "drizzle-patterns", purpose: "Drizzle ORM patterns" },
|
|
446
448
|
{ id: "api-app-testing", purpose: "Hono testing patterns" },
|
|
447
449
|
{ id: "error-handling-patterns", purpose: "Error middleware" },
|
|
448
450
|
{ id: "security-testing", purpose: "Security validation" }
|
|
@@ -451,9 +453,11 @@ var BUNDLES = [
|
|
|
451
453
|
docs: [{ id: "architecture-patterns", topic: "API architecture patterns" }]
|
|
452
454
|
},
|
|
453
455
|
modules: [
|
|
454
|
-
{ id: "
|
|
455
|
-
{ id: "
|
|
456
|
+
{ id: "api-engineer", category: "agents" },
|
|
457
|
+
{ id: "database-engineer", category: "agents" },
|
|
456
458
|
{ id: "node-typescript-engineer", category: "agents" },
|
|
459
|
+
{ id: "hono-patterns", category: "skills" },
|
|
460
|
+
{ id: "drizzle-patterns", category: "skills" },
|
|
457
461
|
{ id: "api-app-testing", category: "skills" },
|
|
458
462
|
{ id: "error-handling-patterns", category: "skills" },
|
|
459
463
|
{ id: "security-testing", category: "skills" },
|
|
@@ -684,7 +688,8 @@ var BUNDLES = [
|
|
|
684
688
|
tags: ["database", "drizzle", "orm"],
|
|
685
689
|
alternativeTo: ["prisma-database", "mongoose-database"],
|
|
686
690
|
modules: [
|
|
687
|
-
{ id: "
|
|
691
|
+
{ id: "database-engineer", category: "agents" },
|
|
692
|
+
{ id: "drizzle-patterns", category: "skills" },
|
|
688
693
|
{ id: "json-data-auditor", category: "skills" }
|
|
689
694
|
]
|
|
690
695
|
},
|
|
@@ -698,7 +703,8 @@ var BUNDLES = [
|
|
|
698
703
|
tags: ["database", "prisma", "orm"],
|
|
699
704
|
alternativeTo: ["drizzle-database", "mongoose-database"],
|
|
700
705
|
modules: [
|
|
701
|
-
{ id: "
|
|
706
|
+
{ id: "database-engineer", category: "agents" },
|
|
707
|
+
{ id: "prisma-patterns", category: "skills" },
|
|
702
708
|
{ id: "json-data-auditor", category: "skills" }
|
|
703
709
|
]
|
|
704
710
|
},
|
|
@@ -712,7 +718,8 @@ var BUNDLES = [
|
|
|
712
718
|
tags: ["database", "mongodb", "mongoose", "nosql"],
|
|
713
719
|
alternativeTo: ["drizzle-database", "prisma-database"],
|
|
714
720
|
modules: [
|
|
715
|
-
{ id: "
|
|
721
|
+
{ id: "database-engineer", category: "agents" },
|
|
722
|
+
{ id: "mongoose-patterns", category: "skills" },
|
|
716
723
|
{ id: "json-data-auditor", category: "skills" }
|
|
717
724
|
]
|
|
718
725
|
},
|
|
@@ -729,7 +736,8 @@ var BUNDLES = [
|
|
|
729
736
|
tags: ["api", "hono", "backend"],
|
|
730
737
|
alternativeTo: ["express-api", "fastify-api", "nestjs-api"],
|
|
731
738
|
modules: [
|
|
732
|
-
{ id: "
|
|
739
|
+
{ id: "api-engineer", category: "agents" },
|
|
740
|
+
{ id: "hono-patterns", category: "skills" },
|
|
733
741
|
{ id: "api-app-testing", category: "skills" },
|
|
734
742
|
{ id: "error-handling-patterns", category: "skills" }
|
|
735
743
|
]
|
|
@@ -744,7 +752,8 @@ var BUNDLES = [
|
|
|
744
752
|
tags: ["api", "express", "backend"],
|
|
745
753
|
alternativeTo: ["hono-api", "fastify-api", "nestjs-api"],
|
|
746
754
|
modules: [
|
|
747
|
-
{ id: "
|
|
755
|
+
{ id: "api-engineer", category: "agents" },
|
|
756
|
+
{ id: "express-patterns", category: "skills" },
|
|
748
757
|
{ id: "api-app-testing", category: "skills" },
|
|
749
758
|
{ id: "error-handling-patterns", category: "skills" }
|
|
750
759
|
]
|
|
@@ -759,7 +768,8 @@ var BUNDLES = [
|
|
|
759
768
|
tags: ["api", "fastify", "backend", "performance"],
|
|
760
769
|
alternativeTo: ["hono-api", "express-api", "nestjs-api"],
|
|
761
770
|
modules: [
|
|
762
|
-
{ id: "
|
|
771
|
+
{ id: "api-engineer", category: "agents" },
|
|
772
|
+
{ id: "fastify-patterns", category: "skills" },
|
|
763
773
|
{ id: "api-app-testing", category: "skills" },
|
|
764
774
|
{ id: "error-handling-patterns", category: "skills" }
|
|
765
775
|
]
|
|
@@ -774,7 +784,8 @@ var BUNDLES = [
|
|
|
774
784
|
tags: ["api", "nestjs", "backend", "enterprise"],
|
|
775
785
|
alternativeTo: ["hono-api", "express-api", "fastify-api"],
|
|
776
786
|
modules: [
|
|
777
|
-
{ id: "
|
|
787
|
+
{ id: "api-engineer", category: "agents" },
|
|
788
|
+
{ id: "nestjs-patterns", category: "skills" },
|
|
778
789
|
{ id: "api-app-testing", category: "skills" },
|
|
779
790
|
{ id: "error-handling-patterns", category: "skills" }
|
|
780
791
|
]
|
|
@@ -791,8 +802,9 @@ var BUNDLES = [
|
|
|
791
802
|
techStack: ["React", "Shadcn UI", "Tailwind CSS", "Radix UI"],
|
|
792
803
|
tags: ["react", "ui", "components"],
|
|
793
804
|
modules: [
|
|
794
|
-
{ id: "
|
|
805
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
795
806
|
{ id: "ux-ui-designer", category: "agents" },
|
|
807
|
+
{ id: "react-patterns", category: "skills" },
|
|
796
808
|
{ id: "shadcn-specialist", category: "skills" },
|
|
797
809
|
{ id: "brand-guidelines", category: "skills" },
|
|
798
810
|
{ id: "accessibility-audit", category: "skills" }
|
|
@@ -807,7 +819,8 @@ var BUNDLES = [
|
|
|
807
819
|
techStack: ["React Hook Form", "Zod", "React", "TypeScript"],
|
|
808
820
|
tags: ["react", "forms", "validation"],
|
|
809
821
|
modules: [
|
|
810
|
-
{ id: "
|
|
822
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
823
|
+
{ id: "react-patterns", category: "skills" },
|
|
811
824
|
{ id: "react-hook-form-patterns", category: "skills" },
|
|
812
825
|
{ id: "shadcn-specialist", category: "skills" }
|
|
813
826
|
]
|
|
@@ -822,7 +835,8 @@ var BUNDLES = [
|
|
|
822
835
|
tags: ["react", "state", "zustand"],
|
|
823
836
|
alternativeTo: ["react-state-redux"],
|
|
824
837
|
modules: [
|
|
825
|
-
{ id: "
|
|
838
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
839
|
+
{ id: "react-patterns", category: "skills" },
|
|
826
840
|
{ id: "zustand-patterns", category: "skills" },
|
|
827
841
|
{ id: "tanstack-query-patterns", category: "skills" }
|
|
828
842
|
]
|
|
@@ -837,7 +851,8 @@ var BUNDLES = [
|
|
|
837
851
|
tags: ["react", "state", "redux"],
|
|
838
852
|
alternativeTo: ["react-state-zustand"],
|
|
839
853
|
modules: [
|
|
840
|
-
{ id: "
|
|
854
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
855
|
+
{ id: "react-patterns", category: "skills" },
|
|
841
856
|
{ id: "redux-toolkit-patterns", category: "skills" },
|
|
842
857
|
{ id: "tanstack-query-patterns", category: "skills", optional: true }
|
|
843
858
|
]
|
|
@@ -851,7 +866,8 @@ var BUNDLES = [
|
|
|
851
866
|
techStack: ["NextAuth.js", "Auth.js", "Next.js", "Prisma"],
|
|
852
867
|
tags: ["nextjs", "auth", "oauth"],
|
|
853
868
|
modules: [
|
|
854
|
-
{ id: "
|
|
869
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
870
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
855
871
|
{ id: "nextauth-patterns", category: "skills" },
|
|
856
872
|
{ id: "security-testing", category: "skills" }
|
|
857
873
|
]
|
|
@@ -865,8 +881,9 @@ var BUNDLES = [
|
|
|
865
881
|
techStack: ["next-intl", "Next.js", "React", "TypeScript"],
|
|
866
882
|
tags: ["nextjs", "i18n", "internationalization"],
|
|
867
883
|
modules: [
|
|
868
|
-
{ id: "
|
|
884
|
+
{ id: "frontend-engineer", category: "agents" },
|
|
869
885
|
{ id: "i18n-specialist", category: "agents", optional: true },
|
|
886
|
+
{ id: "nextjs-patterns", category: "skills" },
|
|
870
887
|
{ id: "i18n-patterns", category: "skills" }
|
|
871
888
|
]
|
|
872
889
|
},
|
|
@@ -986,7 +1003,7 @@ var BUNDLES = [
|
|
|
986
1003
|
}
|
|
987
1004
|
],
|
|
988
1005
|
skills: [
|
|
989
|
-
{ id: "
|
|
1006
|
+
{ id: "markdown-formatter", purpose: "Markdown formatting" },
|
|
990
1007
|
{ id: "mermaid-diagram-specialist", purpose: "Diagram creation" }
|
|
991
1008
|
],
|
|
992
1009
|
commands: [
|
|
@@ -1001,7 +1018,7 @@ var BUNDLES = [
|
|
|
1001
1018
|
},
|
|
1002
1019
|
modules: [
|
|
1003
1020
|
{ id: "tech-writer", category: "agents" },
|
|
1004
|
-
{ id: "
|
|
1021
|
+
{ id: "markdown-formatter", category: "skills" },
|
|
1005
1022
|
{ id: "mermaid-diagram-specialist", category: "skills" },
|
|
1006
1023
|
{ id: "update-docs", category: "commands" },
|
|
1007
1024
|
{ id: "markdown-format", category: "commands" },
|
|
@@ -2358,7 +2375,7 @@ var colors = {
|
|
|
2358
2375
|
};
|
|
2359
2376
|
|
|
2360
2377
|
// src/lib/config/reader.ts
|
|
2361
|
-
var CONFIG_FILE = "config.json";
|
|
2378
|
+
var CONFIG_FILE = "qazuor-claude-config.json";
|
|
2362
2379
|
var CLAUDE_DIR = ".claude";
|
|
2363
2380
|
async function readConfig(projectPath) {
|
|
2364
2381
|
const configPath = joinPath(projectPath, CLAUDE_DIR, CONFIG_FILE);
|
|
@@ -2380,7 +2397,7 @@ async function hasConfig(projectPath) {
|
|
|
2380
2397
|
// src/lib/config/writer.ts
|
|
2381
2398
|
init_cjs_shims();
|
|
2382
2399
|
init_fs();
|
|
2383
|
-
var CONFIG_FILE2 = "config.json";
|
|
2400
|
+
var CONFIG_FILE2 = "qazuor-claude-config.json";
|
|
2384
2401
|
var CLAUDE_DIR2 = ".claude";
|
|
2385
2402
|
async function writeConfig(projectPath, config, options) {
|
|
2386
2403
|
const claudePath = joinPath(projectPath, CLAUDE_DIR2);
|