@mytechtoday/augment-extensions 1.3.0 → 1.3.1

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 (95) hide show
  1. package/LICENSE +22 -22
  2. package/augment-extensions/domain-rules/software-architecture/README.md +143 -143
  3. package/augment-extensions/domain-rules/software-architecture/examples/banking-layered.md +961 -961
  4. package/augment-extensions/domain-rules/software-architecture/examples/ecommerce-microservices.md +990 -990
  5. package/augment-extensions/domain-rules/software-architecture/examples/iot-eventdriven.md +882 -882
  6. package/augment-extensions/domain-rules/software-architecture/examples/monolith-to-microservices-migration.md +703 -703
  7. package/augment-extensions/domain-rules/software-architecture/examples/serverless-imageprocessing.md +957 -957
  8. package/augment-extensions/domain-rules/software-architecture/examples/trading-eventdriven.md +747 -747
  9. package/augment-extensions/domain-rules/software-architecture/module.json +119 -119
  10. package/augment-extensions/domain-rules/software-architecture/rules/challenges-solutions.md +763 -763
  11. package/augment-extensions/domain-rules/software-architecture/rules/definitions-terminology.md +409 -409
  12. package/augment-extensions/domain-rules/software-architecture/rules/design-principles.md +684 -684
  13. package/augment-extensions/domain-rules/software-architecture/rules/evaluation-testing.md +1381 -1381
  14. package/augment-extensions/domain-rules/software-architecture/rules/event-driven-architecture.md +616 -616
  15. package/augment-extensions/domain-rules/software-architecture/rules/fundamentals.md +306 -306
  16. package/augment-extensions/domain-rules/software-architecture/rules/industry-architectures.md +554 -554
  17. package/augment-extensions/domain-rules/software-architecture/rules/layered-architecture.md +776 -776
  18. package/augment-extensions/domain-rules/software-architecture/rules/microservices-architecture.md +503 -503
  19. package/augment-extensions/domain-rules/software-architecture/rules/modeling-documentation.md +1199 -1199
  20. package/augment-extensions/domain-rules/software-architecture/rules/monolithic-architecture.md +351 -351
  21. package/augment-extensions/domain-rules/software-architecture/rules/principles.md +556 -556
  22. package/augment-extensions/domain-rules/software-architecture/rules/quality-attributes.md +797 -797
  23. package/augment-extensions/domain-rules/software-architecture/rules/scalability-performance.md +1345 -1345
  24. package/augment-extensions/domain-rules/software-architecture/rules/security-architecture.md +1039 -1039
  25. package/augment-extensions/domain-rules/software-architecture/rules/serverless-architecture.md +711 -711
  26. package/augment-extensions/domain-rules/software-architecture/rules/skills-development.md +568 -568
  27. package/augment-extensions/domain-rules/software-architecture/rules/tools-methodologies.md +961 -961
  28. package/augment-extensions/visual-design/CHANGELOG.md +132 -132
  29. package/augment-extensions/visual-design/README.md +255 -255
  30. package/augment-extensions/visual-design/__tests__/README.md +119 -119
  31. package/augment-extensions/visual-design/__tests__/style-selector.test.ts +172 -172
  32. package/augment-extensions/visual-design/__tests__/vendor-styles.test.ts +214 -214
  33. package/augment-extensions/visual-design/domains/other/ai-prompt-helper.ts +157 -157
  34. package/augment-extensions/visual-design/domains/other/dotnet-application.ts +156 -156
  35. package/augment-extensions/visual-design/domains/other/linux-platform.ts +156 -156
  36. package/augment-extensions/visual-design/domains/other/mobile-application.ts +157 -157
  37. package/augment-extensions/visual-design/domains/other/motion-picture.ts +156 -156
  38. package/augment-extensions/visual-design/domains/other/os-application.ts +156 -156
  39. package/augment-extensions/visual-design/domains/other/print-campaigns.ts +158 -158
  40. package/augment-extensions/visual-design/domains/other/web-app.ts +157 -157
  41. package/augment-extensions/visual-design/domains/other/website.ts +161 -161
  42. package/augment-extensions/visual-design/domains/other/windows-platform.ts +156 -156
  43. package/augment-extensions/visual-design/domains/web-page-styles/amazon-cloudscape.ts +506 -506
  44. package/augment-extensions/visual-design/domains/web-page-styles/google-modern.ts +615 -615
  45. package/augment-extensions/visual-design/domains/web-page-styles/microsoft-fluent.ts +531 -531
  46. package/augment-extensions/visual-design/examples/README.md +97 -97
  47. package/augment-extensions/visual-design/examples/ai-prompt-generation.md +233 -233
  48. package/augment-extensions/visual-design/examples/basic-usage.md +216 -216
  49. package/augment-extensions/visual-design/examples/domain-workflows.md +257 -257
  50. package/augment-extensions/visual-design/examples/vendor-comparison.md +247 -247
  51. package/augment-extensions/visual-design/module.json +78 -78
  52. package/augment-extensions/visual-design/style-selector.ts +177 -177
  53. package/augment-extensions/visual-design/types.ts +302 -302
  54. package/augment-extensions/visual-design/visual-design-core.ts +469 -469
  55. package/augment-extensions/workflows/adr-support/README.md +227 -227
  56. package/augment-extensions/workflows/adr-support/__tests__/adr-validator.test.ts +203 -203
  57. package/augment-extensions/workflows/adr-support/adr-validator.ts +162 -162
  58. package/augment-extensions/workflows/adr-support/examples/complete-lifecycle-example.md +449 -449
  59. package/augment-extensions/workflows/adr-support/examples/integration-example.md +580 -580
  60. package/augment-extensions/workflows/adr-support/examples/superseding-example.md +436 -436
  61. package/augment-extensions/workflows/adr-support/module.json +112 -112
  62. package/augment-extensions/workflows/adr-support/rules/adr-creation.md +372 -372
  63. package/augment-extensions/workflows/adr-support/rules/beads-integration.md +443 -443
  64. package/augment-extensions/workflows/adr-support/rules/conflict-detection.md +486 -486
  65. package/augment-extensions/workflows/adr-support/rules/decision-detection.md +362 -362
  66. package/augment-extensions/workflows/adr-support/rules/lifecycle-management.md +427 -427
  67. package/augment-extensions/workflows/adr-support/rules/openspec-integration.md +465 -465
  68. package/augment-extensions/workflows/adr-support/rules/template-selection.md +405 -405
  69. package/augment-extensions/workflows/adr-support/rules/validation-rules.md +543 -543
  70. package/augment-extensions/workflows/adr-support/schemas/adr-config.json +191 -191
  71. package/augment-extensions/workflows/adr-support/schemas/adr-metadata.json +172 -172
  72. package/augment-extensions/workflows/adr-support/templates/business-case.md +235 -235
  73. package/augment-extensions/workflows/adr-support/templates/madr-elaborate.md +197 -197
  74. package/augment-extensions/workflows/adr-support/templates/madr-simple.md +68 -68
  75. package/augment-extensions/workflows/adr-support/templates/nygard.md +84 -84
  76. package/augment-extensions/writing-standards/screenplay/rules/file-organization.md +213 -213
  77. package/augment-extensions/writing-standards/screenplay/utils/__tests__/file-organization.test.ts +169 -169
  78. package/augment-extensions/writing-standards/screenplay/utils/file-organization.ts +165 -165
  79. package/cli/dist/utils/auto-sync.js +19 -19
  80. package/package.json +5 -3
  81. package/augment-extensions/workflows/openspec/README.md +0 -96
  82. package/augment-extensions/workflows/openspec/examples/complete-change-example.md +0 -244
  83. package/augment-extensions/workflows/openspec/module.json +0 -54
  84. package/augment-extensions/workflows/openspec/rules/best-practices.md +0 -272
  85. package/augment-extensions/workflows/openspec/rules/manual-setup.md +0 -231
  86. package/augment-extensions/workflows/openspec/rules/spec-format.md +0 -236
  87. package/augment-extensions/workflows/openspec/rules/workflow.md +0 -214
  88. package/cli/dist/utils/__tests__/adr-validator.example.d.ts +0 -6
  89. package/cli/dist/utils/__tests__/adr-validator.example.d.ts.map +0 -1
  90. package/cli/dist/utils/__tests__/adr-validator.example.js +0 -148
  91. package/cli/dist/utils/__tests__/adr-validator.example.js.map +0 -1
  92. package/cli/dist/utils/adr-validator.d.ts +0 -65
  93. package/cli/dist/utils/adr-validator.d.ts.map +0 -1
  94. package/cli/dist/utils/adr-validator.js +0 -203
  95. package/cli/dist/utils/adr-validator.js.map +0 -1
@@ -1,247 +1,247 @@
1
- # Vendor Style Comparison
2
-
3
- ## Overview
4
-
5
- This example compares the three major vendor design systems: Google Material 3 Expressive, Microsoft Fluent 2, and Amazon Cloudscape.
6
-
7
- ## Quick Comparison Table
8
-
9
- | Aspect | Google Material 3 | Microsoft Fluent 2 | Amazon Cloudscape |
10
- |--------|-------------------|-------------------|-------------------|
11
- | **Primary Use** | Consumer apps, web | Enterprise, Windows | AWS dashboards, enterprise |
12
- | **Color System** | Dynamic color theming | Adaptive tokens | Neutral with blue accents |
13
- | **Typography** | Google Sans, Roboto | Segoe UI Variable | Amazon Ember |
14
- | **Layout** | 12-column grid | Responsive grid | Component-heavy |
15
- | **Motion** | Springy, expressive | Subtle, professional | Minimal, functional |
16
- | **Elevation** | Subtle shadows | Layered depth | Flat with borders |
17
- | **Best For** | Modern web apps | Windows apps, enterprise | Data dashboards, AWS tools |
18
-
19
- ## 1. Google Material 3 Expressive
20
-
21
- ### Characteristics
22
-
23
- ```typescript
24
- import { GOOGLE_MODERN } from './domains/web-page-styles/google-modern';
25
-
26
- // Key features:
27
- // - Dynamic color theming with tonal palettes
28
- // - Rounded corners (8px, 12px, 16px)
29
- // - Springy motion (cubic-bezier(0.2, 0, 0, 1))
30
- // - Subtle elevation shadows
31
- // - Accessibility-first (WCAG AA)
32
- ```
33
-
34
- ### When to Use
35
-
36
- - **Consumer-facing applications**: Mobile apps, web apps
37
- - **Modern, expressive designs**: Colorful, dynamic interfaces
38
- - **Google ecosystem**: Android, Chrome, Google Workspace
39
- - **Accessibility priority**: WCAG AA/AAA compliance
40
-
41
- ### Example: Landing Page Hero
42
-
43
- ```css
44
- .hero {
45
- background: linear-gradient(135deg, #6750A4 0%, #EADDFF 100%);
46
- border-radius: 16px;
47
- padding: 48px;
48
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
49
- }
50
-
51
- .hero h1 {
52
- font-family: 'Google Sans', sans-serif;
53
- font-size: 3.5rem;
54
- font-weight: 700;
55
- color: #FFFFFF;
56
- }
57
-
58
- .cta-button {
59
- background: #6750A4;
60
- color: #FFFFFF;
61
- border-radius: 20px;
62
- padding: 12px 24px;
63
- transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
64
- }
65
-
66
- .cta-button:hover {
67
- transform: scale(1.05);
68
- box-shadow: 0 8px 16px rgba(103, 80, 164, 0.3);
69
- }
70
- ```
71
-
72
- ## 2. Microsoft Fluent 2
73
-
74
- ### Characteristics
75
-
76
- ```typescript
77
- import { MICROSOFT_FLUENT } from './domains/web-page-styles/microsoft-fluent';
78
-
79
- // Key features:
80
- // - Adaptive color tokens (light/dark mode)
81
- // - Acrylic/Mica materials (transparency, blur)
82
- // - Segoe UI Variable (variable font)
83
- // - Layered elevation (depth)
84
- // - Cross-platform consistency
85
- ```
86
-
87
- ### When to Use
88
-
89
- - **Enterprise applications**: Business tools, productivity apps
90
- - **Windows ecosystem**: Windows 11, Microsoft 365
91
- - **Professional interfaces**: Clean, corporate aesthetics
92
- - **Cross-platform apps**: Windows, web, mobile
93
-
94
- ### Example: Dashboard Card
95
-
96
- ```css
97
- .dashboard-card {
98
- background: rgba(255, 255, 255, 0.7);
99
- backdrop-filter: blur(30px); /* Acrylic material */
100
- border: 1px solid rgba(0, 0, 0, 0.08);
101
- border-radius: 8px;
102
- padding: 24px;
103
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
104
- }
105
-
106
- .dashboard-card h2 {
107
- font-family: 'Segoe UI Variable', sans-serif;
108
- font-size: 1.5rem;
109
- font-weight: 600;
110
- color: #242424;
111
- }
112
-
113
- .dashboard-card:hover {
114
- background: rgba(255, 255, 255, 0.8);
115
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
116
- transition: all 0.2s ease-out;
117
- }
118
- ```
119
-
120
- ## 3. Amazon Cloudscape
121
-
122
- ### Characteristics
123
-
124
- ```typescript
125
- import { AMAZON_CLOUDSCAPE } from './domains/web-page-styles/amazon-cloudscape';
126
-
127
- // Key features:
128
- // - Neutral color palette (grays, blues)
129
- // - Amazon Ember typography
130
- // - Component-heavy patterns
131
- // - Data-dense layouts
132
- // - Enterprise dashboard focus
133
- ```
134
-
135
- ### When to Use
136
-
137
- - **AWS dashboards**: Cloud management interfaces
138
- - **Data-heavy applications**: Tables, charts, analytics
139
- - **Enterprise tools**: B2B SaaS, admin panels
140
- - **Amazon ecosystem**: AWS, Amazon services
141
-
142
- ### Example: Data Table
143
-
144
- ```css
145
- .data-table {
146
- background: #FFFFFF;
147
- border: 1px solid #D5DBDB;
148
- border-radius: 4px;
149
- overflow: hidden;
150
- }
151
-
152
- .data-table th {
153
- font-family: 'Amazon Ember', sans-serif;
154
- font-size: 0.875rem;
155
- font-weight: 700;
156
- color: #16191F;
157
- background: #FAFAFA;
158
- padding: 12px 16px;
159
- text-align: left;
160
- border-bottom: 2px solid #D5DBDB;
161
- }
162
-
163
- .data-table td {
164
- font-family: 'Amazon Ember', sans-serif;
165
- font-size: 0.875rem;
166
- color: #16191F;
167
- padding: 12px 16px;
168
- border-bottom: 1px solid #EAEDED;
169
- }
170
-
171
- .data-table tr:hover {
172
- background: #F9F9F9;
173
- }
174
- ```
175
-
176
- ## Side-by-Side Comparison
177
-
178
- ### Button Styles
179
-
180
- **Google Material 3**:
181
- ```css
182
- .button-google {
183
- background: #6750A4;
184
- color: #FFFFFF;
185
- border-radius: 20px;
186
- padding: 12px 24px;
187
- font-weight: 500;
188
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
189
- }
190
- ```
191
-
192
- **Microsoft Fluent 2**:
193
- ```css
194
- .button-microsoft {
195
- background: #0078D4;
196
- color: #FFFFFF;
197
- border-radius: 4px;
198
- padding: 10px 20px;
199
- font-weight: 600;
200
- border: 1px solid transparent;
201
- }
202
- ```
203
-
204
- **Amazon Cloudscape**:
205
- ```css
206
- .button-amazon {
207
- background: #0972D3;
208
- color: #FFFFFF;
209
- border-radius: 4px;
210
- padding: 8px 16px;
211
- font-weight: 700;
212
- border: none;
213
- }
214
- ```
215
-
216
- ## Choosing the Right Vendor
217
-
218
- ### Decision Tree
219
-
220
- 1. **Building for AWS/enterprise dashboards?** → Amazon Cloudscape
221
- 2. **Building for Windows/Microsoft ecosystem?** → Microsoft Fluent 2
222
- 3. **Building consumer apps or modern web?** → Google Material 3
223
-
224
- ### Hybrid Approach
225
-
226
- You can mix vendor styles for different parts of your application:
227
-
228
- ```typescript
229
- import { createStyleSelector } from './style-selector';
230
-
231
- // Use Google for public-facing pages
232
- const publicSelector = createStyleSelector(['google']);
233
-
234
- // Use Amazon for admin dashboard
235
- const adminSelector = createStyleSelector(['amazon']);
236
-
237
- // Use Microsoft for Windows desktop app
238
- const desktopSelector = createStyleSelector(['microsoft']);
239
- ```
240
-
241
- ## Next Steps
242
-
243
- - Explore detailed vendor documentation
244
- - Try each vendor style with your use case
245
- - Customize vendor styles with your brand colors
246
- - Test accessibility across all vendors
247
-
1
+ # Vendor Style Comparison
2
+
3
+ ## Overview
4
+
5
+ This example compares the three major vendor design systems: Google Material 3 Expressive, Microsoft Fluent 2, and Amazon Cloudscape.
6
+
7
+ ## Quick Comparison Table
8
+
9
+ | Aspect | Google Material 3 | Microsoft Fluent 2 | Amazon Cloudscape |
10
+ |--------|-------------------|-------------------|-------------------|
11
+ | **Primary Use** | Consumer apps, web | Enterprise, Windows | AWS dashboards, enterprise |
12
+ | **Color System** | Dynamic color theming | Adaptive tokens | Neutral with blue accents |
13
+ | **Typography** | Google Sans, Roboto | Segoe UI Variable | Amazon Ember |
14
+ | **Layout** | 12-column grid | Responsive grid | Component-heavy |
15
+ | **Motion** | Springy, expressive | Subtle, professional | Minimal, functional |
16
+ | **Elevation** | Subtle shadows | Layered depth | Flat with borders |
17
+ | **Best For** | Modern web apps | Windows apps, enterprise | Data dashboards, AWS tools |
18
+
19
+ ## 1. Google Material 3 Expressive
20
+
21
+ ### Characteristics
22
+
23
+ ```typescript
24
+ import { GOOGLE_MODERN } from './domains/web-page-styles/google-modern';
25
+
26
+ // Key features:
27
+ // - Dynamic color theming with tonal palettes
28
+ // - Rounded corners (8px, 12px, 16px)
29
+ // - Springy motion (cubic-bezier(0.2, 0, 0, 1))
30
+ // - Subtle elevation shadows
31
+ // - Accessibility-first (WCAG AA)
32
+ ```
33
+
34
+ ### When to Use
35
+
36
+ - **Consumer-facing applications**: Mobile apps, web apps
37
+ - **Modern, expressive designs**: Colorful, dynamic interfaces
38
+ - **Google ecosystem**: Android, Chrome, Google Workspace
39
+ - **Accessibility priority**: WCAG AA/AAA compliance
40
+
41
+ ### Example: Landing Page Hero
42
+
43
+ ```css
44
+ .hero {
45
+ background: linear-gradient(135deg, #6750A4 0%, #EADDFF 100%);
46
+ border-radius: 16px;
47
+ padding: 48px;
48
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
49
+ }
50
+
51
+ .hero h1 {
52
+ font-family: 'Google Sans', sans-serif;
53
+ font-size: 3.5rem;
54
+ font-weight: 700;
55
+ color: #FFFFFF;
56
+ }
57
+
58
+ .cta-button {
59
+ background: #6750A4;
60
+ color: #FFFFFF;
61
+ border-radius: 20px;
62
+ padding: 12px 24px;
63
+ transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
64
+ }
65
+
66
+ .cta-button:hover {
67
+ transform: scale(1.05);
68
+ box-shadow: 0 8px 16px rgba(103, 80, 164, 0.3);
69
+ }
70
+ ```
71
+
72
+ ## 2. Microsoft Fluent 2
73
+
74
+ ### Characteristics
75
+
76
+ ```typescript
77
+ import { MICROSOFT_FLUENT } from './domains/web-page-styles/microsoft-fluent';
78
+
79
+ // Key features:
80
+ // - Adaptive color tokens (light/dark mode)
81
+ // - Acrylic/Mica materials (transparency, blur)
82
+ // - Segoe UI Variable (variable font)
83
+ // - Layered elevation (depth)
84
+ // - Cross-platform consistency
85
+ ```
86
+
87
+ ### When to Use
88
+
89
+ - **Enterprise applications**: Business tools, productivity apps
90
+ - **Windows ecosystem**: Windows 11, Microsoft 365
91
+ - **Professional interfaces**: Clean, corporate aesthetics
92
+ - **Cross-platform apps**: Windows, web, mobile
93
+
94
+ ### Example: Dashboard Card
95
+
96
+ ```css
97
+ .dashboard-card {
98
+ background: rgba(255, 255, 255, 0.7);
99
+ backdrop-filter: blur(30px); /* Acrylic material */
100
+ border: 1px solid rgba(0, 0, 0, 0.08);
101
+ border-radius: 8px;
102
+ padding: 24px;
103
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
104
+ }
105
+
106
+ .dashboard-card h2 {
107
+ font-family: 'Segoe UI Variable', sans-serif;
108
+ font-size: 1.5rem;
109
+ font-weight: 600;
110
+ color: #242424;
111
+ }
112
+
113
+ .dashboard-card:hover {
114
+ background: rgba(255, 255, 255, 0.8);
115
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
116
+ transition: all 0.2s ease-out;
117
+ }
118
+ ```
119
+
120
+ ## 3. Amazon Cloudscape
121
+
122
+ ### Characteristics
123
+
124
+ ```typescript
125
+ import { AMAZON_CLOUDSCAPE } from './domains/web-page-styles/amazon-cloudscape';
126
+
127
+ // Key features:
128
+ // - Neutral color palette (grays, blues)
129
+ // - Amazon Ember typography
130
+ // - Component-heavy patterns
131
+ // - Data-dense layouts
132
+ // - Enterprise dashboard focus
133
+ ```
134
+
135
+ ### When to Use
136
+
137
+ - **AWS dashboards**: Cloud management interfaces
138
+ - **Data-heavy applications**: Tables, charts, analytics
139
+ - **Enterprise tools**: B2B SaaS, admin panels
140
+ - **Amazon ecosystem**: AWS, Amazon services
141
+
142
+ ### Example: Data Table
143
+
144
+ ```css
145
+ .data-table {
146
+ background: #FFFFFF;
147
+ border: 1px solid #D5DBDB;
148
+ border-radius: 4px;
149
+ overflow: hidden;
150
+ }
151
+
152
+ .data-table th {
153
+ font-family: 'Amazon Ember', sans-serif;
154
+ font-size: 0.875rem;
155
+ font-weight: 700;
156
+ color: #16191F;
157
+ background: #FAFAFA;
158
+ padding: 12px 16px;
159
+ text-align: left;
160
+ border-bottom: 2px solid #D5DBDB;
161
+ }
162
+
163
+ .data-table td {
164
+ font-family: 'Amazon Ember', sans-serif;
165
+ font-size: 0.875rem;
166
+ color: #16191F;
167
+ padding: 12px 16px;
168
+ border-bottom: 1px solid #EAEDED;
169
+ }
170
+
171
+ .data-table tr:hover {
172
+ background: #F9F9F9;
173
+ }
174
+ ```
175
+
176
+ ## Side-by-Side Comparison
177
+
178
+ ### Button Styles
179
+
180
+ **Google Material 3**:
181
+ ```css
182
+ .button-google {
183
+ background: #6750A4;
184
+ color: #FFFFFF;
185
+ border-radius: 20px;
186
+ padding: 12px 24px;
187
+ font-weight: 500;
188
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
189
+ }
190
+ ```
191
+
192
+ **Microsoft Fluent 2**:
193
+ ```css
194
+ .button-microsoft {
195
+ background: #0078D4;
196
+ color: #FFFFFF;
197
+ border-radius: 4px;
198
+ padding: 10px 20px;
199
+ font-weight: 600;
200
+ border: 1px solid transparent;
201
+ }
202
+ ```
203
+
204
+ **Amazon Cloudscape**:
205
+ ```css
206
+ .button-amazon {
207
+ background: #0972D3;
208
+ color: #FFFFFF;
209
+ border-radius: 4px;
210
+ padding: 8px 16px;
211
+ font-weight: 700;
212
+ border: none;
213
+ }
214
+ ```
215
+
216
+ ## Choosing the Right Vendor
217
+
218
+ ### Decision Tree
219
+
220
+ 1. **Building for AWS/enterprise dashboards?** → Amazon Cloudscape
221
+ 2. **Building for Windows/Microsoft ecosystem?** → Microsoft Fluent 2
222
+ 3. **Building consumer apps or modern web?** → Google Material 3
223
+
224
+ ### Hybrid Approach
225
+
226
+ You can mix vendor styles for different parts of your application:
227
+
228
+ ```typescript
229
+ import { createStyleSelector } from './style-selector';
230
+
231
+ // Use Google for public-facing pages
232
+ const publicSelector = createStyleSelector(['google']);
233
+
234
+ // Use Amazon for admin dashboard
235
+ const adminSelector = createStyleSelector(['amazon']);
236
+
237
+ // Use Microsoft for Windows desktop app
238
+ const desktopSelector = createStyleSelector(['microsoft']);
239
+ ```
240
+
241
+ ## Next Steps
242
+
243
+ - Explore detailed vendor documentation
244
+ - Try each vendor style with your use case
245
+ - Customize vendor styles with your brand colors
246
+ - Test accessibility across all vendors
247
+
@@ -1,78 +1,78 @@
1
- {
2
- "name": "visual-design",
3
- "version": "1.0.0",
4
- "displayName": "Visual Design System",
5
- "description": "Comprehensive visual design module with vendor-specific design systems (Google Material 3, Microsoft Fluent 2, Amazon Cloudscape) and domain-specific styles (Website, Web-app, Mobile, .NET, Linux, Windows, Motion Picture, AI Prompt Helper, Print Campaigns). Provides design elements, principles, and skills for AI-driven design generation.",
6
- "type": "domain-rules",
7
- "tags": [
8
- "visual-design",
9
- "design-systems",
10
- "material-design",
11
- "fluent-design",
12
- "cloudscape",
13
- "typography",
14
- "color-theory",
15
- "layout",
16
- "ui-ux"
17
- ],
18
- "augment": {
19
- "inject": "on-demand",
20
- "priority": "medium",
21
- "contexts": [
22
- "design",
23
- "ui",
24
- "ux",
25
- "frontend",
26
- "web-development",
27
- "visual-identity"
28
- ]
29
- },
30
- "characterCount": 85000,
31
- "contents": {
32
- "core": [
33
- "visual-design-core.ts",
34
- "types.ts",
35
- "style-selector.ts"
36
- ],
37
- "vendors": {
38
- "web-page-styles": [
39
- "google-modern.ts",
40
- "microsoft-fluent.ts",
41
- "amazon-cloudscape.ts"
42
- ]
43
- },
44
- "domains": {
45
- "other": [
46
- "website.ts",
47
- "web-app.ts",
48
- "mobile-application.ts",
49
- "dotnet-application.ts",
50
- "linux-platform.ts",
51
- "windows-platform.ts",
52
- "motion-picture.ts",
53
- "ai-prompt-helper.ts",
54
- "print-campaigns.ts",
55
- "os-application.ts"
56
- ]
57
- },
58
- "tests": [
59
- "__tests__/"
60
- ],
61
- "examples": [
62
- "examples/"
63
- ]
64
- },
65
- "vendorPriority": [
66
- "google",
67
- "microsoft",
68
- "amazon"
69
- ],
70
- "installation": {
71
- "steps": [
72
- "Run: augx link visual-design",
73
- "Configure vendor preference in .augment/extensions.json (optional)",
74
- "Use: augx show visual-design to view module content"
75
- ]
76
- }
77
- }
78
-
1
+ {
2
+ "name": "visual-design",
3
+ "version": "1.0.0",
4
+ "displayName": "Visual Design System",
5
+ "description": "Comprehensive visual design module with vendor-specific design systems (Google Material 3, Microsoft Fluent 2, Amazon Cloudscape) and domain-specific styles (Website, Web-app, Mobile, .NET, Linux, Windows, Motion Picture, AI Prompt Helper, Print Campaigns). Provides design elements, principles, and skills for AI-driven design generation.",
6
+ "type": "domain-rules",
7
+ "tags": [
8
+ "visual-design",
9
+ "design-systems",
10
+ "material-design",
11
+ "fluent-design",
12
+ "cloudscape",
13
+ "typography",
14
+ "color-theory",
15
+ "layout",
16
+ "ui-ux"
17
+ ],
18
+ "augment": {
19
+ "inject": "on-demand",
20
+ "priority": "medium",
21
+ "contexts": [
22
+ "design",
23
+ "ui",
24
+ "ux",
25
+ "frontend",
26
+ "web-development",
27
+ "visual-identity"
28
+ ]
29
+ },
30
+ "characterCount": 85000,
31
+ "contents": {
32
+ "core": [
33
+ "visual-design-core.ts",
34
+ "types.ts",
35
+ "style-selector.ts"
36
+ ],
37
+ "vendors": {
38
+ "web-page-styles": [
39
+ "google-modern.ts",
40
+ "microsoft-fluent.ts",
41
+ "amazon-cloudscape.ts"
42
+ ]
43
+ },
44
+ "domains": {
45
+ "other": [
46
+ "website.ts",
47
+ "web-app.ts",
48
+ "mobile-application.ts",
49
+ "dotnet-application.ts",
50
+ "linux-platform.ts",
51
+ "windows-platform.ts",
52
+ "motion-picture.ts",
53
+ "ai-prompt-helper.ts",
54
+ "print-campaigns.ts",
55
+ "os-application.ts"
56
+ ]
57
+ },
58
+ "tests": [
59
+ "__tests__/"
60
+ ],
61
+ "examples": [
62
+ "examples/"
63
+ ]
64
+ },
65
+ "vendorPriority": [
66
+ "google",
67
+ "microsoft",
68
+ "amazon"
69
+ ],
70
+ "installation": {
71
+ "steps": [
72
+ "Run: augx link visual-design",
73
+ "Configure vendor preference in .augment/extensions.json (optional)",
74
+ "Use: augx show visual-design to view module content"
75
+ ]
76
+ }
77
+ }
78
+