@qazuor/claude-code-config 0.1.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 (171) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1248 -0
  3. package/dist/bin.cjs +11886 -0
  4. package/dist/bin.cjs.map +1 -0
  5. package/dist/bin.d.cts +1 -0
  6. package/dist/bin.d.ts +1 -0
  7. package/dist/bin.js +11869 -0
  8. package/dist/bin.js.map +1 -0
  9. package/dist/index.cjs +3887 -0
  10. package/dist/index.cjs.map +1 -0
  11. package/dist/index.d.cts +1325 -0
  12. package/dist/index.d.ts +1325 -0
  13. package/dist/index.js +3835 -0
  14. package/dist/index.js.map +1 -0
  15. package/package.json +86 -0
  16. package/templates/.log/notifications.log +1775 -0
  17. package/templates/agents/README.md +164 -0
  18. package/templates/agents/_registry.json +443 -0
  19. package/templates/agents/design/content-writer.md +353 -0
  20. package/templates/agents/design/ux-ui-designer.md +382 -0
  21. package/templates/agents/engineering/astro-engineer.md +293 -0
  22. package/templates/agents/engineering/db-drizzle-engineer.md +360 -0
  23. package/templates/agents/engineering/express-engineer.md +316 -0
  24. package/templates/agents/engineering/fastify-engineer.md +399 -0
  25. package/templates/agents/engineering/hono-engineer.md +263 -0
  26. package/templates/agents/engineering/mongoose-engineer.md +473 -0
  27. package/templates/agents/engineering/nestjs-engineer.md +429 -0
  28. package/templates/agents/engineering/nextjs-engineer.md +451 -0
  29. package/templates/agents/engineering/node-typescript-engineer.md +347 -0
  30. package/templates/agents/engineering/prisma-engineer.md +432 -0
  31. package/templates/agents/engineering/react-senior-dev.md +394 -0
  32. package/templates/agents/engineering/tanstack-start-engineer.md +447 -0
  33. package/templates/agents/engineering/tech-lead.md +269 -0
  34. package/templates/agents/product/product-functional.md +329 -0
  35. package/templates/agents/product/product-technical.md +578 -0
  36. package/templates/agents/quality/debugger.md +514 -0
  37. package/templates/agents/quality/qa-engineer.md +390 -0
  38. package/templates/agents/specialized/enrichment-agent.md +277 -0
  39. package/templates/agents/specialized/i18n-specialist.md +322 -0
  40. package/templates/agents/specialized/seo-ai-specialist.md +387 -0
  41. package/templates/agents/specialized/tech-writer.md +300 -0
  42. package/templates/code-style/.editorconfig +27 -0
  43. package/templates/code-style/.prettierignore +25 -0
  44. package/templates/code-style/.prettierrc +12 -0
  45. package/templates/code-style/biome.json +78 -0
  46. package/templates/code-style/commitlint.config.js +44 -0
  47. package/templates/commands/README.md +175 -0
  48. package/templates/commands/_registry.json +420 -0
  49. package/templates/commands/add-new-entity.md +211 -0
  50. package/templates/commands/audit/accessibility-audit.md +360 -0
  51. package/templates/commands/audit/performance-audit.md +290 -0
  52. package/templates/commands/audit/security-audit.md +231 -0
  53. package/templates/commands/code-check.md +127 -0
  54. package/templates/commands/five-why.md +225 -0
  55. package/templates/commands/formatting/format-markdown.md +197 -0
  56. package/templates/commands/git/commit.md +247 -0
  57. package/templates/commands/meta/create-agent.md +257 -0
  58. package/templates/commands/meta/create-command.md +312 -0
  59. package/templates/commands/meta/create-skill.md +321 -0
  60. package/templates/commands/meta/help.md +318 -0
  61. package/templates/commands/planning/check-completed-tasks.md +224 -0
  62. package/templates/commands/planning/cleanup-issues.md +248 -0
  63. package/templates/commands/planning/planning-cleanup.md +251 -0
  64. package/templates/commands/planning/sync-planning-github.md +133 -0
  65. package/templates/commands/planning/sync-todos-github.md +203 -0
  66. package/templates/commands/quality-check.md +211 -0
  67. package/templates/commands/run-tests.md +159 -0
  68. package/templates/commands/start-feature-plan.md +232 -0
  69. package/templates/commands/start-refactor-plan.md +244 -0
  70. package/templates/commands/sync-planning.md +176 -0
  71. package/templates/commands/update-docs.md +242 -0
  72. package/templates/docs/CHECKPOINT-SYSTEM.md +504 -0
  73. package/templates/docs/INDEX.md +677 -0
  74. package/templates/docs/RECOMMENDED-HOOKS.md +415 -0
  75. package/templates/docs/_registry.json +329 -0
  76. package/templates/docs/diagrams/README.md +220 -0
  77. package/templates/docs/diagrams/agent-hierarchy.mmd +55 -0
  78. package/templates/docs/diagrams/documentation-map.mmd +61 -0
  79. package/templates/docs/diagrams/tools-relationship.mmd +55 -0
  80. package/templates/docs/diagrams/workflow-decision-tree.mmd +38 -0
  81. package/templates/docs/doc-sync.md +533 -0
  82. package/templates/docs/examples/end-to-end-workflow.md +1505 -0
  83. package/templates/docs/glossary.md +495 -0
  84. package/templates/docs/guides/mockup-prompt-engineering.md +644 -0
  85. package/templates/docs/guides/mockup-setup.md +737 -0
  86. package/templates/docs/learnings/README.md +250 -0
  87. package/templates/docs/learnings/common-architectural-patterns.md +123 -0
  88. package/templates/docs/learnings/common-mistakes-to-avoid.md +149 -0
  89. package/templates/docs/learnings/markdown-formatting-standards.md +104 -0
  90. package/templates/docs/learnings/monorepo-command-execution.md +64 -0
  91. package/templates/docs/learnings/optimization-tips.md +146 -0
  92. package/templates/docs/learnings/planning-linear-sync-workflow.md +70 -0
  93. package/templates/docs/learnings/shell-compatibility-fish.md +46 -0
  94. package/templates/docs/learnings/test-organization-structure.md +68 -0
  95. package/templates/docs/mcp-installation.md +613 -0
  96. package/templates/docs/mcp-servers.md +989 -0
  97. package/templates/docs/notification-installation.md +570 -0
  98. package/templates/docs/quick-start.md +354 -0
  99. package/templates/docs/standards/architecture-patterns.md +1064 -0
  100. package/templates/docs/standards/atomic-commits.md +513 -0
  101. package/templates/docs/standards/code-standards.md +993 -0
  102. package/templates/docs/standards/design-standards.md +656 -0
  103. package/templates/docs/standards/documentation-standards.md +1160 -0
  104. package/templates/docs/standards/testing-standards.md +969 -0
  105. package/templates/docs/system-maintenance.md +604 -0
  106. package/templates/docs/templates/PDR-template.md +561 -0
  107. package/templates/docs/templates/TODOs-template.md +534 -0
  108. package/templates/docs/templates/tech-analysis-template.md +800 -0
  109. package/templates/docs/workflows/README.md +519 -0
  110. package/templates/docs/workflows/atomic-task-protocol.md +955 -0
  111. package/templates/docs/workflows/decision-tree.md +482 -0
  112. package/templates/docs/workflows/edge-cases.md +856 -0
  113. package/templates/docs/workflows/phase-1-planning.md +957 -0
  114. package/templates/docs/workflows/phase-2-implementation.md +896 -0
  115. package/templates/docs/workflows/phase-3-validation.md +792 -0
  116. package/templates/docs/workflows/phase-4-finalization.md +927 -0
  117. package/templates/docs/workflows/quick-fix-protocol.md +505 -0
  118. package/templates/docs/workflows/task-atomization.md +537 -0
  119. package/templates/docs/workflows/task-completion-protocol.md +448 -0
  120. package/templates/hooks/on-notification.sh +28 -0
  121. package/templates/schemas/checkpoint.schema.json +97 -0
  122. package/templates/schemas/code-registry.schema.json +84 -0
  123. package/templates/schemas/pdr.schema.json +314 -0
  124. package/templates/schemas/problems.schema.json +55 -0
  125. package/templates/schemas/tech-analysis.schema.json +404 -0
  126. package/templates/schemas/telemetry.schema.json +298 -0
  127. package/templates/schemas/todos.schema.json +234 -0
  128. package/templates/schemas/workflows.schema.json +69 -0
  129. package/templates/scripts/add-changelogs.sh +105 -0
  130. package/templates/scripts/generate-code-registry.ts +270 -0
  131. package/templates/scripts/health-check.sh +343 -0
  132. package/templates/scripts/sync-registry.sh +40 -0
  133. package/templates/scripts/telemetry-report.ts +36 -0
  134. package/templates/scripts/validate-docs.sh +224 -0
  135. package/templates/scripts/validate-registry.sh +225 -0
  136. package/templates/scripts/validate-schemas.ts +283 -0
  137. package/templates/scripts/validate-structure.sh +165 -0
  138. package/templates/scripts/worktree-cleanup.sh +81 -0
  139. package/templates/scripts/worktree-create.sh +63 -0
  140. package/templates/sessions/planning/.gitkeep +0 -0
  141. package/templates/sessions/planning/archived/.gitkeep +0 -0
  142. package/templates/settings.json +202 -0
  143. package/templates/settings.local.json +138 -0
  144. package/templates/skills/README.md +197 -0
  145. package/templates/skills/_registry.json +473 -0
  146. package/templates/skills/audit/accessibility-audit.md +309 -0
  147. package/templates/skills/audit/performance-audit.md +257 -0
  148. package/templates/skills/audit/security-audit.md +217 -0
  149. package/templates/skills/auth/nextauth-patterns.md +308 -0
  150. package/templates/skills/brand-guidelines.md +240 -0
  151. package/templates/skills/documentation/markdown-formatter.md +302 -0
  152. package/templates/skills/git/git-commit-helper.md +321 -0
  153. package/templates/skills/i18n/i18n-patterns.md +251 -0
  154. package/templates/skills/patterns/error-handling-patterns.md +242 -0
  155. package/templates/skills/patterns/tdd-methodology.md +342 -0
  156. package/templates/skills/qa/qa-criteria-validator.md +383 -0
  157. package/templates/skills/qa/web-app-testing.md +398 -0
  158. package/templates/skills/react/react-hook-form-patterns.md +359 -0
  159. package/templates/skills/state/redux-toolkit-patterns.md +272 -0
  160. package/templates/skills/state/tanstack-query-patterns.md +299 -0
  161. package/templates/skills/state/zustand-patterns.md +301 -0
  162. package/templates/skills/tech/mermaid-diagram-specialist.md +195 -0
  163. package/templates/skills/tech/shadcn-specialist.md +252 -0
  164. package/templates/skills/tech/vercel-specialist.md +297 -0
  165. package/templates/skills/testing/api-app-testing.md +254 -0
  166. package/templates/skills/testing/performance-testing.md +275 -0
  167. package/templates/skills/testing/security-testing.md +348 -0
  168. package/templates/skills/utils/add-memory.md +295 -0
  169. package/templates/skills/utils/json-data-auditor.md +283 -0
  170. package/templates/skills/utils/pdf-creator-editor.md +342 -0
  171. package/templates/tools/format-markdown.sh +185 -0
@@ -0,0 +1,473 @@
1
+ {
2
+ "category": "skills",
3
+ "modules": [
4
+ {
5
+ "id": "tdd-methodology",
6
+ "name": "TDD Methodology",
7
+ "description": "Test-Driven Development methodology and practices",
8
+ "file": "patterns/tdd-methodology.md",
9
+ "tags": ["testing", "tdd", "methodology", "core"],
10
+ "longDescription": "Comprehensive guide to Test-Driven Development (TDD) using the Red-Green-Refactor cycle. Covers writing failing tests first, implementing minimal code to pass, and refactoring for quality.",
11
+ "whatItDoes": [
12
+ "Defines TDD cycle: Red → Green → Refactor",
13
+ "Provides test naming conventions and patterns",
14
+ "Covers AAA pattern (Arrange, Act, Assert)",
15
+ "Includes edge case and boundary testing",
16
+ "Guides on test isolation and mocking"
17
+ ],
18
+ "whenToUse": "Essential for any project following TDD practices. Use when writing new features or fixing bugs.",
19
+ "skillLevel": "intermediate",
20
+ "relatedModules": ["qa-engineer", "web-app-testing", "api-app-testing"]
21
+ },
22
+ {
23
+ "id": "web-app-testing",
24
+ "name": "Web App Testing",
25
+ "description": "Web application testing strategies with Playwright/Vitest",
26
+ "file": "qa/web-app-testing.md",
27
+ "tags": ["testing", "web", "e2e", "playwright"],
28
+ "longDescription": "End-to-end testing strategies for web applications using Playwright and Testing Library. Covers component testing, integration testing, and full E2E flows.",
29
+ "whatItDoes": [
30
+ "Guides E2E testing with Playwright",
31
+ "Covers component testing with Testing Library",
32
+ "Includes visual regression testing",
33
+ "Handles authentication in tests",
34
+ "Manages test data and fixtures"
35
+ ],
36
+ "whenToUse": "When building web applications that need E2E testing. Works with React, Vue, Astro, and other frameworks.",
37
+ "techStack": ["Playwright", "Testing Library", "Vitest", "MSW"],
38
+ "skillLevel": "intermediate",
39
+ "relatedModules": ["react-senior-dev", "astro-engineer", "qa-engineer"]
40
+ },
41
+ {
42
+ "id": "api-app-testing",
43
+ "name": "API Testing",
44
+ "description": "API testing strategies with Vitest and Supertest",
45
+ "file": "testing/api-app-testing.md",
46
+ "tags": ["testing", "api", "integration", "supertest"],
47
+ "longDescription": "Testing strategies for REST APIs including unit tests, integration tests, and contract testing. Covers request validation, response assertions, and error handling.",
48
+ "whatItDoes": [
49
+ "Tests API endpoints with Supertest",
50
+ "Validates request/response schemas",
51
+ "Tests authentication and authorization",
52
+ "Handles database mocking and seeding",
53
+ "Covers error response testing"
54
+ ],
55
+ "whenToUse": "When building backend APIs with Hono, Express, Fastify, or other Node.js frameworks.",
56
+ "techStack": ["Vitest", "Supertest", "MSW", "Zod"],
57
+ "skillLevel": "intermediate",
58
+ "relatedModules": ["hono-engineer", "qa-engineer", "db-drizzle-engineer"]
59
+ },
60
+ {
61
+ "id": "performance-testing",
62
+ "name": "Performance Testing",
63
+ "description": "Performance testing, benchmarking, and optimization",
64
+ "file": "testing/performance-testing.md",
65
+ "tags": ["testing", "performance", "optimization", "benchmarking"],
66
+ "longDescription": "Performance testing methodologies including load testing, stress testing, and benchmarking. Covers identifying bottlenecks, measuring response times, and optimizing performance.",
67
+ "whatItDoes": [
68
+ "Defines performance benchmarks and SLAs",
69
+ "Guides load and stress testing",
70
+ "Identifies memory leaks and bottlenecks",
71
+ "Measures Core Web Vitals",
72
+ "Provides optimization recommendations"
73
+ ],
74
+ "whenToUse": "When you need to ensure your application can handle expected load and meets performance requirements.",
75
+ "techStack": ["k6", "Lighthouse", "Web Vitals"],
76
+ "skillLevel": "advanced",
77
+ "relatedModules": ["performance-audit", "react-senior-dev"]
78
+ },
79
+ {
80
+ "id": "security-testing",
81
+ "name": "Security Testing",
82
+ "description": "Security testing and vulnerability assessment",
83
+ "file": "testing/security-testing.md",
84
+ "tags": ["testing", "security", "audit", "owasp"],
85
+ "longDescription": "Security testing practices covering OWASP Top 10, penetration testing basics, and vulnerability scanning. Focuses on identifying and preventing common security issues.",
86
+ "whatItDoes": [
87
+ "Tests for OWASP Top 10 vulnerabilities",
88
+ "Validates input sanitization",
89
+ "Tests authentication/authorization flows",
90
+ "Checks for injection vulnerabilities",
91
+ "Validates secure headers and CORS"
92
+ ],
93
+ "whenToUse": "Essential for any application handling user data or sensitive information. Use before production deployment.",
94
+ "skillLevel": "advanced",
95
+ "relatedModules": ["security-audit", "qa-engineer"]
96
+ },
97
+ {
98
+ "id": "qa-criteria-validator",
99
+ "name": "QA Criteria Validator",
100
+ "description": "Quality assurance criteria validation checklist",
101
+ "file": "qa/qa-criteria-validator.md",
102
+ "tags": ["qa", "validation", "criteria", "checklist"],
103
+ "longDescription": "Validation checklist for ensuring features meet quality standards before release. Covers functionality, edge cases, performance, and user experience.",
104
+ "whatItDoes": [
105
+ "Validates acceptance criteria completion",
106
+ "Checks edge case handling",
107
+ "Verifies error state coverage",
108
+ "Reviews performance requirements",
109
+ "Ensures accessibility compliance"
110
+ ],
111
+ "whenToUse": "Before marking any feature as complete. Essential for maintaining quality standards.",
112
+ "skillLevel": "intermediate",
113
+ "relatedModules": ["qa-engineer", "tech-lead"]
114
+ },
115
+ {
116
+ "id": "security-audit",
117
+ "name": "Security Audit",
118
+ "description": "Comprehensive security audit procedures and checklists",
119
+ "file": "audit/security-audit.md",
120
+ "tags": ["audit", "security", "owasp", "compliance"],
121
+ "longDescription": "Complete security audit framework covering code review, dependency scanning, configuration review, and compliance verification. Provides actionable remediation steps.",
122
+ "whatItDoes": [
123
+ "Audits code for security vulnerabilities",
124
+ "Scans dependencies for known CVEs",
125
+ "Reviews security configurations",
126
+ "Checks compliance requirements",
127
+ "Generates security reports"
128
+ ],
129
+ "whenToUse": "Before major releases, after security incidents, or as part of regular security reviews.",
130
+ "skillLevel": "advanced",
131
+ "relatedModules": ["security-testing", "tech-lead"]
132
+ },
133
+ {
134
+ "id": "performance-audit",
135
+ "name": "Performance Audit",
136
+ "description": "Performance audit and optimization recommendations",
137
+ "file": "audit/performance-audit.md",
138
+ "tags": ["audit", "performance", "optimization", "lighthouse"],
139
+ "longDescription": "Performance audit framework for web applications covering Lighthouse metrics, bundle analysis, rendering performance, and backend optimization opportunities.",
140
+ "whatItDoes": [
141
+ "Audits Core Web Vitals (LCP, FID, CLS)",
142
+ "Analyzes bundle size and code splitting",
143
+ "Reviews rendering performance",
144
+ "Identifies N+1 queries and DB issues",
145
+ "Provides optimization recommendations"
146
+ ],
147
+ "whenToUse": "When application feels slow, before major launches, or during performance optimization sprints.",
148
+ "techStack": ["Lighthouse", "webpack-bundle-analyzer", "Chrome DevTools"],
149
+ "skillLevel": "intermediate",
150
+ "relatedModules": ["performance-testing", "react-senior-dev"]
151
+ },
152
+ {
153
+ "id": "accessibility-audit",
154
+ "name": "Accessibility Audit",
155
+ "description": "Accessibility audit and WCAG compliance checking",
156
+ "file": "audit/accessibility-audit.md",
157
+ "tags": ["audit", "accessibility", "a11y", "wcag"],
158
+ "longDescription": "Accessibility audit procedures following WCAG 2.1 guidelines. Covers keyboard navigation, screen reader compatibility, color contrast, and semantic HTML.",
159
+ "whatItDoes": [
160
+ "Audits WCAG 2.1 Level AA compliance",
161
+ "Tests keyboard navigation",
162
+ "Validates screen reader compatibility",
163
+ "Checks color contrast ratios",
164
+ "Reviews ARIA usage and semantic HTML"
165
+ ],
166
+ "whenToUse": "Essential for public-facing applications. Use during development and before releases.",
167
+ "techStack": ["axe-core", "Lighthouse", "NVDA", "VoiceOver"],
168
+ "skillLevel": "intermediate",
169
+ "relatedModules": ["ux-ui-designer", "react-senior-dev"]
170
+ },
171
+ {
172
+ "id": "error-handling-patterns",
173
+ "name": "Error Handling Patterns",
174
+ "description": "Error handling best practices and patterns",
175
+ "file": "patterns/error-handling-patterns.md",
176
+ "tags": ["patterns", "errors", "best-practices"],
177
+ "longDescription": "Comprehensive error handling patterns for TypeScript applications. Covers Result types, custom error classes, error boundaries, and graceful degradation.",
178
+ "whatItDoes": [
179
+ "Defines custom error class hierarchies",
180
+ "Implements Result/Either patterns",
181
+ "Handles async errors properly",
182
+ "Creates React error boundaries",
183
+ "Logs errors with proper context"
184
+ ],
185
+ "whenToUse": "When setting up error handling architecture or improving existing error handling.",
186
+ "techStack": ["TypeScript", "React", "Zod"],
187
+ "skillLevel": "intermediate",
188
+ "relatedModules": ["node-typescript-engineer", "react-senior-dev"]
189
+ },
190
+ {
191
+ "id": "nextauth-patterns",
192
+ "name": "NextAuth.js Patterns",
193
+ "description": "NextAuth.js (Auth.js) authentication patterns",
194
+ "file": "auth/nextauth-patterns.md",
195
+ "tags": ["auth", "nextauth", "next.js", "oauth", "patterns"],
196
+ "longDescription": "Expert patterns for NextAuth.js authentication in Next.js applications. Covers OAuth providers, credentials provider, JWT/session strategies, middleware protection, and role-based access control.",
197
+ "whatItDoes": [
198
+ "Configures multiple OAuth providers",
199
+ "Implements credentials-based authentication",
200
+ "Protects routes with middleware",
201
+ "Handles session in server/client components",
202
+ "Implements role-based access control"
203
+ ],
204
+ "whenToUse": "When building Next.js applications that need authentication. Supports OAuth providers (GitHub, Google, etc.) and custom credentials.",
205
+ "techStack": ["NextAuth.js", "Auth.js", "Next.js", "Prisma"],
206
+ "skillLevel": "intermediate",
207
+ "relatedModules": ["nextjs-engineer", "prisma-engineer"]
208
+ },
209
+ {
210
+ "id": "i18n-patterns",
211
+ "name": "i18n Patterns",
212
+ "description": "Internationalization patterns for React/Next.js",
213
+ "file": "i18n/i18n-patterns.md",
214
+ "tags": ["i18n", "internationalization", "next-intl", "react-i18next", "patterns"],
215
+ "longDescription": "Expert patterns for internationalization in React and Next.js applications. Covers next-intl and react-i18next setup, translation file management, pluralization, formatting, and RTL support.",
216
+ "whatItDoes": [
217
+ "Sets up next-intl for Next.js apps",
218
+ "Configures react-i18next for React apps",
219
+ "Manages translation JSON files",
220
+ "Handles pluralization and interpolation",
221
+ "Formats dates, numbers, and currency"
222
+ ],
223
+ "whenToUse": "When building applications that need to support multiple languages or locales.",
224
+ "techStack": ["next-intl", "react-i18next", "Next.js", "React"],
225
+ "skillLevel": "intermediate",
226
+ "relatedModules": ["nextjs-engineer", "react-senior-dev", "i18n-specialist"]
227
+ },
228
+ {
229
+ "id": "zustand-patterns",
230
+ "name": "Zustand Patterns",
231
+ "description": "Zustand state management patterns and best practices",
232
+ "file": "state/zustand-patterns.md",
233
+ "tags": ["state", "zustand", "react", "patterns"],
234
+ "longDescription": "Comprehensive patterns for Zustand state management in React applications. Covers store creation, slices, middleware (persist, immer, devtools), selectors, and TypeScript integration.",
235
+ "whatItDoes": [
236
+ "Creates typed Zustand stores",
237
+ "Implements slice pattern for modular stores",
238
+ "Configures persist middleware for localStorage",
239
+ "Uses immer middleware for immutable updates",
240
+ "Integrates with React Query for server state"
241
+ ],
242
+ "whenToUse": "When building React applications needing simple, lightweight client state management. Perfect for small to medium apps.",
243
+ "techStack": ["Zustand", "React", "TypeScript", "Immer"],
244
+ "skillLevel": "intermediate",
245
+ "alternativeTo": ["redux-toolkit-patterns"],
246
+ "relatedModules": ["react-senior-dev", "tanstack-query-patterns"]
247
+ },
248
+ {
249
+ "id": "redux-toolkit-patterns",
250
+ "name": "Redux Toolkit Patterns",
251
+ "description": "Redux Toolkit state management patterns",
252
+ "file": "state/redux-toolkit-patterns.md",
253
+ "tags": ["state", "redux", "rtk", "react", "patterns"],
254
+ "longDescription": "Expert patterns for Redux Toolkit (RTK) including store setup, slices, async thunks, RTK Query for data fetching, and TypeScript integration with typed hooks.",
255
+ "whatItDoes": [
256
+ "Configures Redux store with typed hooks",
257
+ "Creates slices with reducers and actions",
258
+ "Implements async thunks with error handling",
259
+ "Sets up RTK Query for API integration",
260
+ "Uses selectors with createSelector"
261
+ ],
262
+ "whenToUse": "When building large-scale React applications with complex state interactions, or when team prefers Redux patterns.",
263
+ "techStack": ["Redux Toolkit", "RTK Query", "React", "TypeScript"],
264
+ "skillLevel": "intermediate",
265
+ "alternativeTo": ["zustand-patterns"],
266
+ "relatedModules": ["react-senior-dev", "tanstack-query-patterns"]
267
+ },
268
+ {
269
+ "id": "tanstack-query-patterns",
270
+ "name": "TanStack Query Patterns",
271
+ "description": "TanStack Query (React Query) server state management",
272
+ "file": "state/tanstack-query-patterns.md",
273
+ "tags": ["state", "react-query", "tanstack", "data-fetching", "patterns"],
274
+ "longDescription": "Expert patterns for TanStack Query server state management including queries, mutations, infinite queries, optimistic updates, prefetching, and cache management.",
275
+ "whatItDoes": [
276
+ "Configures QueryClient with defaults",
277
+ "Creates typed queries with error handling",
278
+ "Implements mutations with cache invalidation",
279
+ "Uses infinite queries for pagination",
280
+ "Implements optimistic updates for better UX"
281
+ ],
282
+ "whenToUse": "Essential for any React application fetching data from APIs. Handles caching, background updates, and server state.",
283
+ "techStack": ["TanStack Query", "React", "TypeScript"],
284
+ "skillLevel": "intermediate",
285
+ "relatedModules": ["react-senior-dev", "hono-engineer", "nextjs-engineer"]
286
+ },
287
+ {
288
+ "id": "react-hook-form-patterns",
289
+ "name": "React Hook Form Patterns",
290
+ "description": "React Hook Form with Zod validation patterns",
291
+ "file": "react/react-hook-form-patterns.md",
292
+ "tags": ["forms", "react", "zod", "validation", "patterns"],
293
+ "longDescription": "Expert patterns for React Hook Form with Zod validation including basic forms, nested objects, arrays with useFieldArray, controlled components, file uploads, and multi-step forms.",
294
+ "whatItDoes": [
295
+ "Creates forms with Zod schema validation",
296
+ "Handles nested objects and arrays",
297
+ "Uses Controller for controlled components",
298
+ "Integrates with UI component libraries",
299
+ "Implements multi-step form wizards"
300
+ ],
301
+ "whenToUse": "When building forms in React applications. Provides performant form handling with minimal re-renders and great TypeScript support.",
302
+ "techStack": ["React Hook Form", "Zod", "React", "TypeScript"],
303
+ "skillLevel": "intermediate",
304
+ "relatedModules": ["react-senior-dev", "shadcn-specialist", "nextjs-engineer"]
305
+ },
306
+ {
307
+ "id": "git-commit-helper",
308
+ "name": "Git Commit Helper",
309
+ "description": "Git commit message formatting and conventions",
310
+ "file": "git/git-commit-helper.md",
311
+ "tags": ["git", "commits", "conventions", "core"],
312
+ "longDescription": "Conventional commit message formatting following Angular conventions. Covers commit types, scopes, breaking changes, and atomic commit practices.",
313
+ "whatItDoes": [
314
+ "Formats conventional commit messages",
315
+ "Defines commit types (feat, fix, refactor, etc.)",
316
+ "Handles breaking change notation",
317
+ "Enforces atomic commit practices",
318
+ "Generates changelog-friendly messages"
319
+ ],
320
+ "whenToUse": "Use for every commit to maintain consistent git history.",
321
+ "skillLevel": "beginner",
322
+ "relatedModules": ["tech-lead"]
323
+ },
324
+ {
325
+ "id": "markdown-formatter",
326
+ "name": "Markdown Formatter",
327
+ "description": "Markdown formatting standards and linting",
328
+ "file": "documentation/markdown-formatter.md",
329
+ "tags": ["documentation", "markdown", "formatting"],
330
+ "longDescription": "Standards for consistent markdown formatting including headings, lists, code blocks, tables, and links. Ensures readable and maintainable documentation.",
331
+ "whatItDoes": [
332
+ "Enforces consistent heading hierarchy",
333
+ "Standardizes list and code block formatting",
334
+ "Validates link references",
335
+ "Checks language specifications in code blocks",
336
+ "Ensures proper spacing and indentation"
337
+ ],
338
+ "whenToUse": "When writing or reviewing documentation to ensure consistency.",
339
+ "skillLevel": "beginner",
340
+ "relatedModules": ["tech-writer"]
341
+ },
342
+ {
343
+ "id": "add-memory",
344
+ "name": "Add Memory",
345
+ "description": "Learning and memory management for AI agents",
346
+ "file": "utils/add-memory.md",
347
+ "tags": ["utils", "memory", "learning", "meta"],
348
+ "longDescription": "Skill for capturing learnings and adding them to CLAUDE.md. Helps maintain project-specific knowledge and best practices discovered during development.",
349
+ "whatItDoes": [
350
+ "Captures project-specific learnings",
351
+ "Updates CLAUDE.md with new knowledge",
352
+ "Archives old learnings when limit reached",
353
+ "Creates learning documentation files",
354
+ "Maintains searchable knowledge base"
355
+ ],
356
+ "whenToUse": "When discovering new patterns, fixing recurring issues, or learning project-specific practices.",
357
+ "skillLevel": "beginner",
358
+ "relatedModules": ["tech-lead"]
359
+ },
360
+ {
361
+ "id": "pdf-creator-editor",
362
+ "name": "PDF Creator/Editor",
363
+ "description": "PDF document creation and editing",
364
+ "file": "utils/pdf-creator-editor.md",
365
+ "tags": ["utils", "pdf", "documents"],
366
+ "longDescription": "Guidelines for creating and editing PDF documents programmatically. Covers report generation, invoice creation, and document manipulation.",
367
+ "whatItDoes": [
368
+ "Creates PDF reports and documents",
369
+ "Generates invoices and receipts",
370
+ "Adds watermarks and headers",
371
+ "Merges and splits PDFs",
372
+ "Extracts text from PDFs"
373
+ ],
374
+ "whenToUse": "When your application needs to generate or manipulate PDF documents.",
375
+ "techStack": ["pdf-lib", "pdfkit", "puppeteer"],
376
+ "skillLevel": "intermediate",
377
+ "relatedModules": ["node-typescript-engineer"]
378
+ },
379
+ {
380
+ "id": "json-data-auditor",
381
+ "name": "JSON Data Auditor",
382
+ "description": "JSON data validation and auditing",
383
+ "file": "utils/json-data-auditor.md",
384
+ "tags": ["utils", "json", "validation", "zod"],
385
+ "longDescription": "Tools and techniques for validating JSON data structures, auditing data quality, and ensuring schema compliance with Zod.",
386
+ "whatItDoes": [
387
+ "Validates JSON against Zod schemas",
388
+ "Audits data quality and completeness",
389
+ "Identifies schema violations",
390
+ "Transforms and migrates data",
391
+ "Generates validation reports"
392
+ ],
393
+ "whenToUse": "When importing data, validating API responses, or auditing database records.",
394
+ "techStack": ["Zod", "TypeScript"],
395
+ "skillLevel": "intermediate",
396
+ "relatedModules": ["node-typescript-engineer", "db-drizzle-engineer"]
397
+ },
398
+ {
399
+ "id": "brand-guidelines",
400
+ "name": "Brand Guidelines",
401
+ "description": "Brand and design system guidelines template",
402
+ "file": "brand-guidelines.md",
403
+ "tags": ["design", "brand", "guidelines"],
404
+ "longDescription": "Template for defining brand guidelines including colors, typography, spacing, and component styles. Provides foundation for consistent UI implementation.",
405
+ "whatItDoes": [
406
+ "Defines color palette and themes",
407
+ "Specifies typography scale and fonts",
408
+ "Documents spacing and layout system",
409
+ "Establishes component design patterns",
410
+ "Guides icon and imagery usage"
411
+ ],
412
+ "whenToUse": "When starting a new project or establishing design consistency across an application.",
413
+ "skillLevel": "beginner",
414
+ "relatedModules": ["ux-ui-designer", "react-senior-dev"]
415
+ },
416
+ {
417
+ "id": "vercel-specialist",
418
+ "name": "Vercel Specialist",
419
+ "description": "Vercel deployment and configuration expertise",
420
+ "file": "tech/vercel-specialist.md",
421
+ "tags": ["tech", "vercel", "deployment", "edge"],
422
+ "longDescription": "Expertise in Vercel platform including deployment configuration, edge functions, serverless functions, environment variables, and domain management.",
423
+ "whatItDoes": [
424
+ "Configures Vercel deployments",
425
+ "Sets up edge and serverless functions",
426
+ "Manages environment variables",
427
+ "Configures custom domains and redirects",
428
+ "Optimizes for Vercel's edge network"
429
+ ],
430
+ "whenToUse": "When deploying applications to Vercel or using Vercel-specific features.",
431
+ "techStack": ["Vercel", "Edge Functions", "Serverless"],
432
+ "skillLevel": "intermediate",
433
+ "relatedModules": ["astro-engineer", "tanstack-start-engineer"]
434
+ },
435
+ {
436
+ "id": "shadcn-specialist",
437
+ "name": "Shadcn Specialist",
438
+ "description": "Shadcn UI component library expertise",
439
+ "file": "tech/shadcn-specialist.md",
440
+ "tags": ["tech", "shadcn", "ui", "tailwind"],
441
+ "longDescription": "Expertise in Shadcn UI component library including installation, customization, theming, and best practices for building accessible React components.",
442
+ "whatItDoes": [
443
+ "Installs and configures Shadcn components",
444
+ "Customizes component styles and variants",
445
+ "Implements dark mode and theming",
446
+ "Composes complex UI from primitives",
447
+ "Ensures accessibility in components"
448
+ ],
449
+ "whenToUse": "When building React applications with Shadcn UI component library.",
450
+ "techStack": ["Shadcn UI", "Radix UI", "Tailwind CSS", "React"],
451
+ "skillLevel": "intermediate",
452
+ "relatedModules": ["react-senior-dev", "ux-ui-designer"]
453
+ },
454
+ {
455
+ "id": "mermaid-diagram-specialist",
456
+ "name": "Mermaid Diagram Specialist",
457
+ "description": "Mermaid diagram creation and formatting",
458
+ "file": "tech/mermaid-diagram-specialist.md",
459
+ "tags": ["tech", "mermaid", "diagrams", "documentation"],
460
+ "longDescription": "Expertise in creating Mermaid diagrams for documentation including flowcharts, sequence diagrams, entity-relationship diagrams, and architecture visualizations.",
461
+ "whatItDoes": [
462
+ "Creates flowcharts and decision trees",
463
+ "Designs sequence diagrams",
464
+ "Builds ER diagrams for databases",
465
+ "Visualizes architecture and data flow",
466
+ "Formats diagrams for documentation"
467
+ ],
468
+ "whenToUse": "When documenting architecture, workflows, or system designs in markdown files.",
469
+ "skillLevel": "beginner",
470
+ "relatedModules": ["tech-writer", "product-technical"]
471
+ }
472
+ ]
473
+ }