mycontext-cli 1.0.80 → 1.0.82

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.
@@ -0,0 +1,496 @@
1
+ {
2
+ "buildStrategies": {
3
+ "metadata": {
4
+ "version": "1.0.0",
5
+ "description": "MyContext CLI Build Strategy Framework",
6
+ "lastUpdated": "2025-09-23",
7
+ "author": "MyContext Team"
8
+ },
9
+ "strategies": [
10
+ {
11
+ "id": "foundation-first",
12
+ "name": "Foundation First",
13
+ "description": "Start with authentication, core setup, and architecture before building features",
14
+ "icon": "🏗️",
15
+ "complexity": "medium",
16
+ "timeToFirstDemo": "2-3 weeks",
17
+ "bestFor": ["multi-user apps", "enterprise projects", "client work"],
18
+ "phases": [
19
+ {
20
+ "phase": 1,
21
+ "name": "Core Infrastructure",
22
+ "duration": "1-2 weeks",
23
+ "description": "Set up the foundational systems",
24
+ "tasks": [
25
+ "Project setup (Next.js, TypeScript, Tailwind)",
26
+ "Database schema and migrations",
27
+ "Authentication system (NextAuth/Auth0/Clerk)",
28
+ "User roles and permissions",
29
+ "API structure and middleware",
30
+ "Basic routing and navigation",
31
+ "State management (Zustand/Redux)",
32
+ "Environment configuration"
33
+ ],
34
+ "deliverables": [
35
+ "Working authentication flow",
36
+ "Basic database structure",
37
+ "API endpoints skeleton",
38
+ "Protected routes working"
39
+ ],
40
+ "successCriteria": "User can sign up, log in, and access protected areas"
41
+ },
42
+ {
43
+ "phase": 2,
44
+ "name": "Core Features",
45
+ "duration": "2-3 weeks",
46
+ "description": "Build essential user-facing features",
47
+ "tasks": [
48
+ "User dashboard/profile",
49
+ "Core CRUD operations",
50
+ "Basic UI components",
51
+ "Data validation",
52
+ "Error handling",
53
+ "Loading states"
54
+ ],
55
+ "deliverables": [
56
+ "Functional user dashboard",
57
+ "Basic data management",
58
+ "Consistent UI patterns"
59
+ ],
60
+ "successCriteria": "Core user workflows are functional"
61
+ },
62
+ {
63
+ "phase": 3,
64
+ "name": "Feature Expansion",
65
+ "duration": "3-4 weeks",
66
+ "description": "Add remaining features systematically",
67
+ "tasks": [
68
+ "Advanced features",
69
+ "Integrations",
70
+ "Performance optimization",
71
+ "Testing coverage",
72
+ "Documentation"
73
+ ],
74
+ "deliverables": [
75
+ "Complete feature set",
76
+ "Optimized performance",
77
+ "Comprehensive tests"
78
+ ],
79
+ "successCriteria": "All planned features are working and tested"
80
+ }
81
+ ],
82
+ "pros": [
83
+ "Solid foundation prevents technical debt",
84
+ "Clear architecture from the start",
85
+ "Easier to add features later",
86
+ "Professional approach for clients"
87
+ ],
88
+ "cons": [
89
+ "Slower initial progress",
90
+ "Less visual feedback early",
91
+ "May feel slow for solo projects"
92
+ ]
93
+ },
94
+ {
95
+ "id": "vertical-slice",
96
+ "name": "Vertical Slice (User Journey)",
97
+ "description": "Build one complete user flow end-to-end before moving to other features",
98
+ "icon": "🎯",
99
+ "complexity": "medium",
100
+ "timeToFirstDemo": "1-2 weeks",
101
+ "bestFor": ["client demos", "MVP development", "user-focused apps"],
102
+ "phases": [
103
+ {
104
+ "phase": 1,
105
+ "name": "Primary User Journey",
106
+ "duration": "1-2 weeks",
107
+ "description": "Complete one user flow from start to finish",
108
+ "tasks": [
109
+ "Choose primary user role (e.g., customer, admin)",
110
+ "Map complete user journey",
111
+ "Build authentication for this user",
112
+ "Create all pages in the journey",
113
+ "Implement all backend logic",
114
+ "Connect frontend to backend",
115
+ "Add data validation",
116
+ "Test complete flow"
117
+ ],
118
+ "deliverables": [
119
+ "Complete user onboarding flow",
120
+ "Functional dashboard",
121
+ "Core user actions working",
122
+ "End-to-end user experience"
123
+ ],
124
+ "successCriteria": "Primary user can complete their main workflow"
125
+ },
126
+ {
127
+ "phase": 2,
128
+ "name": "Secondary User Journeys",
129
+ "duration": "2-3 weeks",
130
+ "description": "Build additional user roles and flows",
131
+ "tasks": [
132
+ "Add secondary user roles",
133
+ "Build their complete journeys",
134
+ "Implement role-based permissions",
135
+ "Add cross-user interactions",
136
+ "Polish user experience"
137
+ ],
138
+ "deliverables": [
139
+ "Multiple user roles working",
140
+ "Role-based access control",
141
+ "Cross-user functionality"
142
+ ],
143
+ "successCriteria": "All user types can complete their workflows"
144
+ },
145
+ {
146
+ "phase": 3,
147
+ "name": "Feature Enhancement",
148
+ "duration": "2-3 weeks",
149
+ "description": "Add advanced features and polish",
150
+ "tasks": [
151
+ "Advanced features",
152
+ "Performance optimization",
153
+ "UI/UX improvements",
154
+ "Analytics and monitoring",
155
+ "Testing and documentation"
156
+ ],
157
+ "deliverables": [
158
+ "Enhanced user experience",
159
+ "Performance optimizations",
160
+ "Comprehensive testing"
161
+ ],
162
+ "successCriteria": "Production-ready application"
163
+ }
164
+ ],
165
+ "pros": [
166
+ "Quick demo-able results",
167
+ "Tests entire stack early",
168
+ "Reveals integration issues",
169
+ "Great for client feedback"
170
+ ],
171
+ "cons": [
172
+ "Other features remain untouched",
173
+ "May need refactoring later",
174
+ "Harder to parallelize work"
175
+ ]
176
+ },
177
+ {
178
+ "id": "horizontal-slice",
179
+ "name": "Horizontal Slice (Feature by Feature)",
180
+ "description": "Build complete features/modules one at a time across the entire app",
181
+ "icon": "📦",
182
+ "complexity": "low",
183
+ "timeToFirstDemo": "1-2 weeks",
184
+ "bestFor": ["modular apps", "team development", "well-defined features"],
185
+ "phases": [
186
+ {
187
+ "phase": 1,
188
+ "name": "Core Module",
189
+ "duration": "1-2 weeks",
190
+ "description": "Build the most essential feature completely",
191
+ "tasks": [
192
+ "Choose core feature (e.g., user management)",
193
+ "Design feature architecture",
194
+ "Build frontend components",
195
+ "Implement backend logic",
196
+ "Add database operations",
197
+ "Create API endpoints",
198
+ "Add validation and error handling",
199
+ "Write tests"
200
+ ],
201
+ "deliverables": [
202
+ "Complete feature module",
203
+ "Frontend and backend integration",
204
+ "Database operations",
205
+ "Comprehensive testing"
206
+ ],
207
+ "successCriteria": "Core feature is fully functional and tested"
208
+ },
209
+ {
210
+ "phase": 2,
211
+ "name": "Secondary Modules",
212
+ "duration": "2-4 weeks",
213
+ "description": "Build remaining features systematically",
214
+ "tasks": [
215
+ "Build next priority feature",
216
+ "Ensure module integration",
217
+ "Add cross-module functionality",
218
+ "Implement shared components",
219
+ "Add feature-specific permissions"
220
+ ],
221
+ "deliverables": [
222
+ "Multiple feature modules",
223
+ "Integrated functionality",
224
+ "Shared component library"
225
+ ],
226
+ "successCriteria": "All planned features are complete"
227
+ },
228
+ {
229
+ "phase": 3,
230
+ "name": "Integration & Polish",
231
+ "duration": "1-2 weeks",
232
+ "description": "Connect all modules and polish the experience",
233
+ "tasks": [
234
+ "Cross-module integration",
235
+ "Global state management",
236
+ "Navigation between features",
237
+ "Performance optimization",
238
+ "UI consistency",
239
+ "Final testing"
240
+ ],
241
+ "deliverables": [
242
+ "Fully integrated application",
243
+ "Consistent user experience",
244
+ "Performance optimizations"
245
+ ],
246
+ "successCriteria": "Seamless experience across all features"
247
+ }
248
+ ],
249
+ "pros": [
250
+ "Clear feature boundaries",
251
+ "Easy to parallelize development",
252
+ "Modular architecture",
253
+ "Good for team collaboration"
254
+ ],
255
+ "cons": [
256
+ "Features may not integrate well",
257
+ "Delayed end-to-end testing",
258
+ "May need refactoring for integration"
259
+ ]
260
+ },
261
+ {
262
+ "id": "iterative-scaffolding",
263
+ "name": "Iterative Scaffolding",
264
+ "description": "Create placeholders for all major components, then flesh them out gradually",
265
+ "icon": "🚀",
266
+ "complexity": "low",
267
+ "timeToFirstDemo": "3-5 days",
268
+ "bestFor": ["personal projects", "rapid prototyping", "learning projects"],
269
+ "phases": [
270
+ {
271
+ "phase": 1,
272
+ "name": "Quick Scaffolding",
273
+ "duration": "3-5 days",
274
+ "description": "Create skeleton for entire application",
275
+ "tasks": [
276
+ "Set up basic project structure",
277
+ "Create placeholder pages",
278
+ "Add basic routing",
279
+ "Create component skeletons",
280
+ "Add placeholder data",
281
+ "Set up basic styling",
282
+ "Create navigation structure"
283
+ ],
284
+ "deliverables": [
285
+ "Complete app skeleton",
286
+ "All pages accessible",
287
+ "Basic navigation working",
288
+ "Visual app structure"
289
+ ],
290
+ "successCriteria": "Can navigate through entire app structure"
291
+ },
292
+ {
293
+ "phase": 2,
294
+ "name": "Feature Fleshing",
295
+ "duration": "2-3 weeks",
296
+ "description": "Gradually implement real functionality",
297
+ "tasks": [
298
+ "Replace placeholders with real components",
299
+ "Add actual data handling",
300
+ "Implement user interactions",
301
+ "Add form validation",
302
+ "Connect to backend",
303
+ "Add error handling"
304
+ ],
305
+ "deliverables": [
306
+ "Functional components",
307
+ "Real data integration",
308
+ "User interactions working"
309
+ ],
310
+ "successCriteria": "Core functionality is working"
311
+ },
312
+ {
313
+ "phase": 3,
314
+ "name": "Polish & Optimization",
315
+ "duration": "1-2 weeks",
316
+ "description": "Refine and optimize the application",
317
+ "tasks": [
318
+ "UI/UX improvements",
319
+ "Performance optimization",
320
+ "Code refactoring",
321
+ "Testing implementation",
322
+ "Documentation",
323
+ "Bug fixes"
324
+ ],
325
+ "deliverables": [
326
+ "Polished user experience",
327
+ "Optimized performance",
328
+ "Clean, tested code"
329
+ ],
330
+ "successCriteria": "Production-ready application"
331
+ }
332
+ ],
333
+ "pros": [
334
+ "Quick visual progress",
335
+ "See full app structure early",
336
+ "Flexible development approach",
337
+ "Good for experimentation"
338
+ ],
339
+ "cons": [
340
+ "Many half-done features",
341
+ "Can feel messy initially",
342
+ "May need significant refactoring",
343
+ "Harder to maintain momentum"
344
+ ]
345
+ },
346
+ {
347
+ "id": "hybrid-approach",
348
+ "name": "Hybrid Approach",
349
+ "description": "Combine foundation-first with vertical slicing for optimal results",
350
+ "icon": "🎯",
351
+ "complexity": "high",
352
+ "timeToFirstDemo": "1-2 weeks",
353
+ "bestFor": ["complex applications", "client projects", "production apps"],
354
+ "phases": [
355
+ {
356
+ "phase": 1,
357
+ "name": "Foundation + Primary Journey",
358
+ "duration": "1-2 weeks",
359
+ "description": "Set up foundation and build one complete user flow",
360
+ "tasks": [
361
+ "Set up core infrastructure",
362
+ "Implement authentication",
363
+ "Choose primary user journey",
364
+ "Build complete user flow",
365
+ "Add basic error handling",
366
+ "Test end-to-end flow"
367
+ ],
368
+ "deliverables": [
369
+ "Solid foundation",
370
+ "Complete primary user journey",
371
+ "Working authentication",
372
+ "Basic error handling"
373
+ ],
374
+ "successCriteria": "Foundation is solid and primary user can complete their workflow"
375
+ },
376
+ {
377
+ "phase": 2,
378
+ "name": "Feature Expansion",
379
+ "duration": "2-3 weeks",
380
+ "description": "Add remaining features systematically",
381
+ "tasks": [
382
+ "Add secondary user roles",
383
+ "Build remaining features",
384
+ "Implement cross-feature functionality",
385
+ "Add advanced features",
386
+ "Optimize performance"
387
+ ],
388
+ "deliverables": [
389
+ "Multiple user roles",
390
+ "Complete feature set",
391
+ "Integrated functionality"
392
+ ],
393
+ "successCriteria": "All planned features are working"
394
+ },
395
+ {
396
+ "phase": 3,
397
+ "name": "Production Readiness",
398
+ "duration": "1-2 weeks",
399
+ "description": "Polish and prepare for production",
400
+ "tasks": [
401
+ "Comprehensive testing",
402
+ "Performance optimization",
403
+ "Security hardening",
404
+ "Documentation",
405
+ "Deployment preparation"
406
+ ],
407
+ "deliverables": [
408
+ "Production-ready application",
409
+ "Comprehensive testing",
410
+ "Security measures",
411
+ "Deployment configuration"
412
+ ],
413
+ "successCriteria": "Application is ready for production deployment"
414
+ }
415
+ ],
416
+ "pros": [
417
+ "Best of both worlds",
418
+ "Solid foundation with quick progress",
419
+ "Professional approach",
420
+ "Reduces technical debt"
421
+ ],
422
+ "cons": [
423
+ "More complex to plan",
424
+ "Requires careful coordination",
425
+ "May take longer initially"
426
+ ]
427
+ }
428
+ ],
429
+ "decisionMatrix": {
430
+ "clientWork": {
431
+ "recommended": ["foundation-first", "vertical-slice", "hybrid-approach"],
432
+ "reasoning": "Clients need to see progress and trust the development process. Complete features and solid foundations build confidence."
433
+ },
434
+ "personalProjects": {
435
+ "recommended": ["iterative-scaffolding", "horizontal-slice"],
436
+ "reasoning": "Personal projects benefit from speed and momentum. Quick visual progress keeps motivation high."
437
+ },
438
+ "teamDevelopment": {
439
+ "recommended": ["horizontal-slice", "hybrid-approach"],
440
+ "reasoning": "Teams can work in parallel on different features. Clear boundaries and solid foundations prevent conflicts."
441
+ },
442
+ "mvpDevelopment": {
443
+ "recommended": ["vertical-slice", "iterative-scaffolding"],
444
+ "reasoning": "MVPs need quick results and demo-able features. Focus on core user journeys first."
445
+ },
446
+ "enterpriseApplications": {
447
+ "recommended": ["foundation-first", "hybrid-approach"],
448
+ "reasoning": "Enterprise apps need solid architecture and security. Foundation-first prevents technical debt."
449
+ }
450
+ },
451
+ "contextualFactors": {
452
+ "appComplexity": {
453
+ "simple": ["iterative-scaffolding", "horizontal-slice"],
454
+ "medium": ["vertical-slice", "hybrid-approach"],
455
+ "complex": ["foundation-first", "hybrid-approach"]
456
+ },
457
+ "userRoles": {
458
+ "single": ["horizontal-slice", "iterative-scaffolding"],
459
+ "multiple": ["foundation-first", "vertical-slice", "hybrid-approach"]
460
+ },
461
+ "timeline": {
462
+ "urgent": ["iterative-scaffolding", "vertical-slice"],
463
+ "moderate": ["horizontal-slice", "hybrid-approach"],
464
+ "flexible": ["foundation-first", "hybrid-approach"]
465
+ },
466
+ "teamSize": {
467
+ "solo": ["iterative-scaffolding", "vertical-slice"],
468
+ "small": ["horizontal-slice", "hybrid-approach"],
469
+ "large": ["foundation-first", "horizontal-slice"]
470
+ }
471
+ },
472
+ "implementationGuidance": {
473
+ "beforeStarting": [
474
+ "Analyze your app's complexity and user roles",
475
+ "Consider your timeline and team constraints",
476
+ "Choose strategy based on decision matrix",
477
+ "Plan phases and milestones",
478
+ "Set up project tracking"
479
+ ],
480
+ "duringDevelopment": [
481
+ "Stick to chosen strategy initially",
482
+ "Adjust if major issues arise",
483
+ "Track progress against milestones",
484
+ "Get feedback early and often",
485
+ "Document decisions and changes"
486
+ ],
487
+ "commonPitfalls": [
488
+ "Switching strategies mid-project",
489
+ "Over-engineering early features",
490
+ "Under-estimating integration complexity",
491
+ "Skipping testing and validation",
492
+ "Not getting user feedback early"
493
+ ]
494
+ }
495
+ }
496
+ }
@@ -0,0 +1,95 @@
1
+ export interface BuildStrategy {
2
+ id: string;
3
+ name: string;
4
+ description: string;
5
+ icon: string;
6
+ complexity: "low" | "medium" | "high";
7
+ timeToFirstDemo: string;
8
+ bestFor: string[];
9
+ pros: string[];
10
+ cons: string[];
11
+ phases: BuildPhase[];
12
+ }
13
+ export interface BuildPhase {
14
+ phase: number;
15
+ name: string;
16
+ duration: string;
17
+ tasks: string[];
18
+ deliverables: string[];
19
+ successCriteria: string;
20
+ }
21
+ export interface TaskDetail {
22
+ id: string;
23
+ title: string;
24
+ description: string;
25
+ priority: "high" | "medium" | "low";
26
+ estimatedTime: string;
27
+ dependencies: string[];
28
+ deliverables: string[];
29
+ }
30
+ /**
31
+ * BuildStrategyManager - LLM-Powered Strategy Generation
32
+ *
33
+ * This manager uses AI to generate 100% accurate, project-specific build strategies
34
+ * by analyzing your project context and providing intelligent recommendations.
35
+ */
36
+ export declare class BuildStrategyManager {
37
+ private contextLoader;
38
+ private aiClient;
39
+ constructor();
40
+ /**
41
+ * Load project context from .mycontext files
42
+ */
43
+ loadProjectContext(): Promise<{
44
+ projectName: string;
45
+ description: string;
46
+ components: string[];
47
+ userRoles: string[];
48
+ techStack: string[];
49
+ prd: string;
50
+ types: string;
51
+ brand: string;
52
+ componentList: any;
53
+ features: string;
54
+ userFlows: string;
55
+ edgeCases: string;
56
+ technicalSpecs: string;
57
+ }>;
58
+ /**
59
+ * Save strategy data to JSON file
60
+ */
61
+ private saveStrategyData;
62
+ /**
63
+ * Load strategy data from JSON file
64
+ */
65
+ loadStrategyData(type: string, date?: string): Promise<any>;
66
+ /**
67
+ * Find the latest strategy file of a given type
68
+ */
69
+ private findLatestStrategyFile;
70
+ /**
71
+ * List all available strategy files
72
+ */
73
+ listStrategyFiles(): Promise<Array<{
74
+ type: string;
75
+ date: string;
76
+ filepath: string;
77
+ }>>;
78
+ /**
79
+ * Get AI-powered strategy recommendations
80
+ */
81
+ recommendStrategies(userPreferences?: any): Promise<any>;
82
+ /**
83
+ * Generate AI-powered build plan
84
+ */
85
+ generateBuildPlan(strategyId?: string): Promise<any>;
86
+ /**
87
+ * Generate AI-powered task list
88
+ */
89
+ generateTaskList(strategyId?: string, phaseNumber?: number): Promise<any>;
90
+ /**
91
+ * Compare strategies using AI
92
+ */
93
+ compareStrategies(): Promise<any>;
94
+ }
95
+ //# sourceMappingURL=buildStrategyManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buildStrategyManager.d.ts","sourceRoot":"","sources":["../../src/utils/buildStrategyManager.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;IACtC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,EAAE,UAAU,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,GAAG,QAAQ,GAAG,KAAK,CAAC;IACpC,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB;AAED;;;;;GAKG;AACH,qBAAa,oBAAoB;IAC/B,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,QAAQ,CAAiB;;IAOjC;;OAEG;IACG,kBAAkB,IAAI,OAAO,CAAC;QAClC,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,EAAE,CAAC;QACrB,SAAS,EAAE,MAAM,EAAE,CAAC;QACpB,SAAS,EAAE,MAAM,EAAE,CAAC;QACpB,GAAG,EAAE,MAAM,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,MAAM,CAAC;QACd,aAAa,EAAE,GAAG,CAAC;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,EAAE,MAAM,CAAC;QAClB,cAAc,EAAE,MAAM,CAAC;KACxB,CAAC;IA+HF;;OAEG;YACW,gBAAgB;IAoB9B;;OAEG;IACG,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAcjE;;OAEG;YACW,sBAAsB;IAmBpC;;OAEG;IACG,iBAAiB,IAAI,OAAO,CAChC,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CACxD;IAmCD;;OAEG;IACG,mBAAmB,CAAC,eAAe,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAuG9D;;OAEG;IACG,iBAAiB,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAqG1D;;OAEG;IACG,gBAAgB,CACpB,UAAU,CAAC,EAAE,MAAM,EACnB,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,GAAG,CAAC;IA8Ff;;OAEG;IACG,iBAAiB,IAAI,OAAO,CAAC,GAAG,CAAC;CAgFxC"}