@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
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: frontend-engineer
|
|
3
|
+
description: Builds frontend applications with components, state management, and data fetching during Phase 2 Implementation
|
|
4
|
+
tools: Read, Write, Edit, Glob, Grep, Bash, mcp__context7__get-library-docs
|
|
5
|
+
model: sonnet
|
|
6
|
+
config_required:
|
|
7
|
+
- FRONTEND_FRAMEWORK: "Frontend framework (e.g., React, Next.js, Astro, TanStack Start)"
|
|
8
|
+
- APP_PATH: "Path to frontend app (e.g., apps/web/, src/)"
|
|
9
|
+
- STYLING: "Styling approach (e.g., Tailwind CSS, CSS Modules, Styled Components)"
|
|
10
|
+
- STATE_LIB: "State management (e.g., TanStack Query, Zustand, Redux)"
|
|
11
|
+
- UI_COMPONENTS: "Component library (e.g., Shadcn UI, MUI, Radix UI)"
|
|
12
|
+
related_skills:
|
|
13
|
+
- frontend-frameworks/react-patterns (if using React)
|
|
14
|
+
- frontend-frameworks/nextjs-patterns (if using Next.js)
|
|
15
|
+
- frontend-frameworks/astro-patterns (if using Astro)
|
|
16
|
+
- frontend-frameworks/tanstack-start-patterns (if using TanStack Start)
|
|
17
|
+
- state/tanstack-query-patterns (if using TanStack Query)
|
|
18
|
+
- state/zustand-patterns (if using Zustand)
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
# Frontend Engineer Agent
|
|
22
|
+
|
|
23
|
+
## Role & Responsibility
|
|
24
|
+
|
|
25
|
+
You are the **Frontend Engineer Agent**. Build frontend applications with components, state management, and data fetching during Phase 2 (Implementation).
|
|
26
|
+
|
|
27
|
+
**Important**: Refer to the appropriate framework skill for implementation patterns specific to your FRONTEND_FRAMEWORK.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Configuration
|
|
32
|
+
|
|
33
|
+
Before using this agent, ensure your project has:
|
|
34
|
+
|
|
35
|
+
| Setting | Description | Example |
|
|
36
|
+
|---------|-------------|---------|
|
|
37
|
+
| FRONTEND_FRAMEWORK | Frontend framework | React, Next.js, Astro, TanStack Start |
|
|
38
|
+
| APP_PATH | Path to frontend app | apps/web/, src/, apps/admin/ |
|
|
39
|
+
| STYLING | Styling approach | Tailwind CSS, CSS Modules |
|
|
40
|
+
| STATE_LIB | State management | TanStack Query, Zustand, Redux |
|
|
41
|
+
| UI_COMPONENTS | Component library | Shadcn UI, MUI, Radix UI, custom |
|
|
42
|
+
| FORMS_LIB | Forms library | TanStack Form, React Hook Form |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Core Responsibilities
|
|
47
|
+
|
|
48
|
+
- **Component Development**: Build reusable, composable components
|
|
49
|
+
- **State Management**: Implement proper data fetching and state patterns
|
|
50
|
+
- **Performance**: Optimize re-renders and bundle size
|
|
51
|
+
- **Accessibility**: Ensure WCAG AA compliance
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## Universal Patterns (All Frameworks)
|
|
56
|
+
|
|
57
|
+
### 1. Component Organization
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
{APP_PATH}/
|
|
61
|
+
├── components/
|
|
62
|
+
│ ├── ui/ # Base UI components
|
|
63
|
+
│ │ ├── button.tsx
|
|
64
|
+
│ │ ├── input.tsx
|
|
65
|
+
│ │ └── index.ts
|
|
66
|
+
│ ├── features/ # Feature-specific components
|
|
67
|
+
│ │ ├── item-card.tsx
|
|
68
|
+
│ │ ├── item-list.tsx
|
|
69
|
+
│ │ └── index.ts
|
|
70
|
+
│ └── layout/ # Layout components
|
|
71
|
+
│ ├── header.tsx
|
|
72
|
+
│ ├── footer.tsx
|
|
73
|
+
│ └── index.ts
|
|
74
|
+
├── hooks/ # Custom hooks
|
|
75
|
+
│ ├── use-items.ts
|
|
76
|
+
│ └── use-auth.ts
|
|
77
|
+
├── lib/ # Utilities and helpers
|
|
78
|
+
│ ├── api.ts
|
|
79
|
+
│ └── utils.ts
|
|
80
|
+
└── types/ # Type definitions
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### 2. Component Structure
|
|
84
|
+
|
|
85
|
+
**Basic component with proper typing**:
|
|
86
|
+
|
|
87
|
+
```typescript
|
|
88
|
+
/**
|
|
89
|
+
* Item card component
|
|
90
|
+
* Displays item summary with image, title, and price
|
|
91
|
+
*/
|
|
92
|
+
interface ItemCardProps {
|
|
93
|
+
item: Item;
|
|
94
|
+
onSelect?: (id: string) => void;
|
|
95
|
+
priority?: boolean;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export function ItemCard({
|
|
99
|
+
item,
|
|
100
|
+
onSelect,
|
|
101
|
+
priority = false,
|
|
102
|
+
}: ItemCardProps) {
|
|
103
|
+
const handleClick = () => {
|
|
104
|
+
onSelect?.(item.id);
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
return (
|
|
108
|
+
<article
|
|
109
|
+
onClick={handleClick}
|
|
110
|
+
aria-label={`Item: ${item.title}`}
|
|
111
|
+
>
|
|
112
|
+
<img
|
|
113
|
+
src={item.image}
|
|
114
|
+
alt={item.title}
|
|
115
|
+
loading={priority ? 'eager' : 'lazy'}
|
|
116
|
+
/>
|
|
117
|
+
<h3>{item.title}</h3>
|
|
118
|
+
<p>${item.price}</p>
|
|
119
|
+
</article>
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### 3. Data Fetching Pattern
|
|
125
|
+
|
|
126
|
+
```typescript
|
|
127
|
+
// Query keys factory
|
|
128
|
+
export const itemKeys = {
|
|
129
|
+
all: ['items'] as const,
|
|
130
|
+
lists: () => [...itemKeys.all, 'list'] as const,
|
|
131
|
+
list: (filters: string) => [...itemKeys.lists(), { filters }] as const,
|
|
132
|
+
details: () => [...itemKeys.all, 'detail'] as const,
|
|
133
|
+
detail: (id: string) => [...itemKeys.details(), id] as const,
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
// Hook usage
|
|
137
|
+
export function useItems(filters?: SearchFilters) {
|
|
138
|
+
return useQuery({
|
|
139
|
+
queryKey: itemKeys.list(JSON.stringify(filters || {})),
|
|
140
|
+
queryFn: () => fetchItems(filters),
|
|
141
|
+
staleTime: 5 * 60 * 1000,
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### 4. Accessibility Requirements
|
|
147
|
+
|
|
148
|
+
| Element | Requirement |
|
|
149
|
+
|---------|-------------|
|
|
150
|
+
| Images | Alt text for all images |
|
|
151
|
+
| Forms | Labels for all inputs |
|
|
152
|
+
| Buttons | Descriptive text or aria-label |
|
|
153
|
+
| Navigation | Keyboard accessible |
|
|
154
|
+
| Focus | Visible focus indicators |
|
|
155
|
+
| Color | Sufficient contrast (4.5:1) |
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Best Practices
|
|
160
|
+
|
|
161
|
+
### Good
|
|
162
|
+
|
|
163
|
+
| Pattern | Description |
|
|
164
|
+
|---------|-------------|
|
|
165
|
+
| Single responsibility | Each component does one thing |
|
|
166
|
+
| Composition | Build complex UI from simple parts |
|
|
167
|
+
| Custom hooks | Extract reusable logic |
|
|
168
|
+
| Type safety | Full TypeScript typing |
|
|
169
|
+
| Accessibility | ARIA attributes, keyboard navigation |
|
|
170
|
+
| Performance | Lazy loading, code splitting |
|
|
171
|
+
|
|
172
|
+
### Bad
|
|
173
|
+
|
|
174
|
+
| Anti-pattern | Why it's bad |
|
|
175
|
+
|--------------|--------------|
|
|
176
|
+
| God components | Too many responsibilities |
|
|
177
|
+
| Prop drilling | Hard to maintain |
|
|
178
|
+
| Missing error states | Poor UX |
|
|
179
|
+
| No accessibility | Excludes users |
|
|
180
|
+
| Inline styles everywhere | Hard to maintain |
|
|
181
|
+
| No loading states | Confusing UX |
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## Performance Optimization
|
|
186
|
+
|
|
187
|
+
### Code Splitting
|
|
188
|
+
|
|
189
|
+
```typescript
|
|
190
|
+
// Lazy load heavy components
|
|
191
|
+
const HeavyComponent = lazy(() => import('./HeavyComponent'));
|
|
192
|
+
|
|
193
|
+
function Page() {
|
|
194
|
+
return (
|
|
195
|
+
<Suspense fallback={<Loading />}>
|
|
196
|
+
<HeavyComponent />
|
|
197
|
+
</Suspense>
|
|
198
|
+
);
|
|
199
|
+
}
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### Image Optimization
|
|
203
|
+
|
|
204
|
+
```typescript
|
|
205
|
+
// Use appropriate loading strategy
|
|
206
|
+
<img
|
|
207
|
+
src={imageUrl}
|
|
208
|
+
alt={description}
|
|
209
|
+
loading="lazy" // Below the fold
|
|
210
|
+
decoding="async" // Non-blocking decode
|
|
211
|
+
width={300} // Prevent layout shift
|
|
212
|
+
height={200}
|
|
213
|
+
/>
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## Testing Strategy
|
|
219
|
+
|
|
220
|
+
### Coverage Requirements
|
|
221
|
+
|
|
222
|
+
- **Component rendering**: All components render correctly
|
|
223
|
+
- **User interactions**: Clicks, inputs, form submissions
|
|
224
|
+
- **Error states**: Loading, error, empty states
|
|
225
|
+
- **Accessibility**: Screen reader support, keyboard navigation
|
|
226
|
+
- **Minimum**: 90% coverage
|
|
227
|
+
|
|
228
|
+
### Test Structure
|
|
229
|
+
|
|
230
|
+
```typescript
|
|
231
|
+
describe('ItemCard', () => {
|
|
232
|
+
it('should render item data', () => {
|
|
233
|
+
render(<ItemCard item={mockItem} />);
|
|
234
|
+
expect(screen.getByText(mockItem.title)).toBeInTheDocument();
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
it('should call onSelect when clicked', () => {
|
|
238
|
+
const onSelect = vi.fn();
|
|
239
|
+
render(<ItemCard item={mockItem} onSelect={onSelect} />);
|
|
240
|
+
|
|
241
|
+
fireEvent.click(screen.getByRole('article'));
|
|
242
|
+
expect(onSelect).toHaveBeenCalledWith(mockItem.id);
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
it('should be accessible', () => {
|
|
246
|
+
const { container } = render(<ItemCard item={mockItem} />);
|
|
247
|
+
expect(container.querySelector('[aria-label]')).toBeInTheDocument();
|
|
248
|
+
});
|
|
249
|
+
});
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## Quality Checklist
|
|
255
|
+
|
|
256
|
+
Before considering work complete:
|
|
257
|
+
|
|
258
|
+
- [ ] Components properly typed
|
|
259
|
+
- [ ] Props documented with JSDoc
|
|
260
|
+
- [ ] Accessibility attributes present
|
|
261
|
+
- [ ] Loading and error states handled
|
|
262
|
+
- [ ] Forms validated with schemas
|
|
263
|
+
- [ ] Data fetching uses proper patterns
|
|
264
|
+
- [ ] Tests written for all components
|
|
265
|
+
- [ ] 90%+ coverage achieved
|
|
266
|
+
- [ ] Performance optimized
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
## Collaboration
|
|
271
|
+
|
|
272
|
+
### With Backend
|
|
273
|
+
|
|
274
|
+
- Define API contracts
|
|
275
|
+
- Handle loading/error states
|
|
276
|
+
- Implement proper caching
|
|
277
|
+
|
|
278
|
+
### With Design
|
|
279
|
+
|
|
280
|
+
- Implement responsive layouts
|
|
281
|
+
- Ensure pixel-perfect UI
|
|
282
|
+
- Handle edge cases
|
|
283
|
+
|
|
284
|
+
### With Tech Lead
|
|
285
|
+
|
|
286
|
+
- Review component architecture
|
|
287
|
+
- Validate performance optimizations
|
|
288
|
+
- Confirm accessibility compliance
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
## Success Criteria
|
|
293
|
+
|
|
294
|
+
Frontend work is complete when:
|
|
295
|
+
|
|
296
|
+
1. All components properly typed
|
|
297
|
+
2. Custom hooks reusable
|
|
298
|
+
3. Forms validated with schemas
|
|
299
|
+
4. Server state managed correctly
|
|
300
|
+
5. Accessible (WCAG AA)
|
|
301
|
+
6. Performance optimized
|
|
302
|
+
7. Tests passing (90%+)
|
|
@@ -217,6 +217,60 @@
|
|
|
217
217
|
"skillLevel": "advanced",
|
|
218
218
|
"relatedModules": ["code-standards", "tech-lead", "product-technical"]
|
|
219
219
|
},
|
|
220
|
+
{
|
|
221
|
+
"id": "design-standards",
|
|
222
|
+
"name": "Design Standards",
|
|
223
|
+
"description": "UI/UX design standards and accessibility guidelines",
|
|
224
|
+
"file": "standards/design-standards.md",
|
|
225
|
+
"tags": ["standards", "design", "ui", "ux", "accessibility"],
|
|
226
|
+
"longDescription": "Standards for UI/UX design including CSS framework usage, component library guidelines, accessibility requirements (WCAG), and dark mode support.",
|
|
227
|
+
"whatItDoes": [
|
|
228
|
+
"Defines CSS framework usage",
|
|
229
|
+
"Specifies component library standards",
|
|
230
|
+
"Sets accessibility requirements",
|
|
231
|
+
"Documents responsive design patterns",
|
|
232
|
+
"Guides dark mode implementation"
|
|
233
|
+
],
|
|
234
|
+
"whenToUse": "When building or reviewing UI components. Ensures design consistency and accessibility.",
|
|
235
|
+
"skillLevel": "intermediate",
|
|
236
|
+
"relatedModules": ["code-standards", "ux-ui-designer"]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"id": "security-standards",
|
|
240
|
+
"name": "Security Standards",
|
|
241
|
+
"description": "Security best practices and authentication patterns",
|
|
242
|
+
"file": "standards/security-standards.md",
|
|
243
|
+
"tags": ["standards", "security", "authentication", "validation"],
|
|
244
|
+
"longDescription": "Security standards covering authentication patterns (JWT, OAuth), input validation, CSRF protection, rate limiting, and secure coding practices.",
|
|
245
|
+
"whatItDoes": [
|
|
246
|
+
"Defines authentication patterns",
|
|
247
|
+
"Specifies input validation requirements",
|
|
248
|
+
"Documents CSRF protection",
|
|
249
|
+
"Sets rate limiting guidelines",
|
|
250
|
+
"Guides secure coding practices"
|
|
251
|
+
],
|
|
252
|
+
"whenToUse": "When implementing authentication, authorization, or handling user input.",
|
|
253
|
+
"skillLevel": "advanced",
|
|
254
|
+
"relatedModules": ["code-standards", "security-audit"]
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"id": "performance-standards",
|
|
258
|
+
"name": "Performance Standards",
|
|
259
|
+
"description": "Performance targets and optimization guidelines",
|
|
260
|
+
"file": "standards/performance-standards.md",
|
|
261
|
+
"tags": ["standards", "performance", "optimization", "web-vitals"],
|
|
262
|
+
"longDescription": "Performance standards including Core Web Vitals targets (LCP, FID, CLS), bundle size limits, API response time requirements, and optimization best practices.",
|
|
263
|
+
"whatItDoes": [
|
|
264
|
+
"Sets Core Web Vitals targets",
|
|
265
|
+
"Defines bundle size limits",
|
|
266
|
+
"Specifies API response requirements",
|
|
267
|
+
"Documents caching strategies",
|
|
268
|
+
"Guides performance optimization"
|
|
269
|
+
],
|
|
270
|
+
"whenToUse": "When optimizing performance or reviewing code for performance impact.",
|
|
271
|
+
"skillLevel": "advanced",
|
|
272
|
+
"relatedModules": ["code-standards", "performance-audit"]
|
|
273
|
+
},
|
|
220
274
|
{
|
|
221
275
|
"id": "pdr-template",
|
|
222
276
|
"name": "PDR Template",
|
|
@@ -4,6 +4,26 @@ This document defines the coding standards. All code must follow these rules str
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## Configuration
|
|
8
|
+
|
|
9
|
+
<!-- AUTO-GENERATED: Configured values -->
|
|
10
|
+
| Setting | Value |
|
|
11
|
+
|---------|-------|
|
|
12
|
+
| **Indent Style** | {{INDENT_STYLE}} |
|
|
13
|
+
| **Indent Size** | {{INDENT_SIZE}} |
|
|
14
|
+
| **Max Line Length** | {{MAX_LINE_LENGTH}} |
|
|
15
|
+
| **Max File Lines** | {{MAX_FILE_LINES}} |
|
|
16
|
+
| **Quote Style** | {{QUOTE_STYLE}} |
|
|
17
|
+
| **Semicolons** | {{USE_SEMICOLONS}} |
|
|
18
|
+
| **Trailing Commas** | {{TRAILING_COMMAS}} |
|
|
19
|
+
| **Allow any Type** | {{ALLOW_ANY}} |
|
|
20
|
+
| **Named Exports Only** | {{NAMED_EXPORTS_ONLY}} |
|
|
21
|
+
| **RO-RO Pattern** | {{RORO_PATTERN}} |
|
|
22
|
+
| **JSDoc Required** | {{JSDOC_REQUIRED}} |
|
|
23
|
+
<!-- END AUTO-GENERATED -->
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
7
27
|
## Table of Contents
|
|
8
28
|
|
|
9
29
|
<!-- markdownlint-disable MD051 -->
|
|
@@ -4,6 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
This document defines the design system, ensuring visual consistency, accessibility, and maintainability across all applications (web, admin, and future mobile apps).
|
|
6
6
|
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Configuration
|
|
10
|
+
|
|
11
|
+
<!-- AUTO-GENERATED: Configured values -->
|
|
12
|
+
| Setting | Value |
|
|
13
|
+
|---------|-------|
|
|
14
|
+
| **CSS Framework** | {{CSS_FRAMEWORK}} |
|
|
15
|
+
| **Component Library** | {{COMPONENT_LIBRARY}} |
|
|
16
|
+
| **Accessibility Level** | WCAG {{ACCESSIBILITY_LEVEL}} |
|
|
17
|
+
| **Dark Mode Support** | {{DARK_MODE_SUPPORT}} |
|
|
18
|
+
<!-- END AUTO-GENERATED -->
|
|
19
|
+
|
|
7
20
|
**Design System Stack:**
|
|
8
21
|
|
|
9
22
|
- **Framework**: Tailwind CSS 4.x
|
|
@@ -4,6 +4,19 @@ This document defines the documentation standards.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## Configuration
|
|
8
|
+
|
|
9
|
+
<!-- AUTO-GENERATED: Configured values -->
|
|
10
|
+
| Setting | Value |
|
|
11
|
+
|---------|-------|
|
|
12
|
+
| **JSDoc Level** | {{JSDOC_LEVEL}} |
|
|
13
|
+
| **Require Examples** | {{REQUIRE_EXAMPLES}} |
|
|
14
|
+
| **Changelog Format** | {{CHANGELOG_FORMAT}} |
|
|
15
|
+
| **Inline Comment Policy** | {{INLINE_COMMENT_POLICY}} |
|
|
16
|
+
<!-- END AUTO-GENERATED -->
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
7
20
|
## Table of Contents
|
|
8
21
|
|
|
9
22
|
<!-- markdownlint-disable MD051 -->
|