mycontext-cli 4.2.18 → 4.2.20

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 (45) hide show
  1. package/README.md +471 -71
  2. package/dist/agents/implementations/DemoRecorderAgent.d.ts.map +1 -1
  3. package/dist/agents/implementations/DemoRecorderAgent.js +297 -120
  4. package/dist/agents/implementations/DemoRecorderAgent.js.map +1 -1
  5. package/dist/agents/implementations/VisionNavigatorAgent.d.ts.map +1 -1
  6. package/dist/agents/implementations/VisionNavigatorAgent.js +9 -0
  7. package/dist/agents/implementations/VisionNavigatorAgent.js.map +1 -1
  8. package/dist/cli.js +6 -0
  9. package/dist/cli.js.map +1 -1
  10. package/dist/commands/demo.d.ts +14 -0
  11. package/dist/commands/demo.d.ts.map +1 -0
  12. package/dist/commands/demo.js +165 -0
  13. package/dist/commands/demo.js.map +1 -0
  14. package/dist/commands/generate-components-manifest.d.ts +2 -0
  15. package/dist/commands/generate-components-manifest.d.ts.map +1 -1
  16. package/dist/commands/generate-components-manifest.js +75 -53
  17. package/dist/commands/generate-components-manifest.js.map +1 -1
  18. package/dist/commands/generate-screens-list.d.ts +2 -0
  19. package/dist/commands/generate-screens-list.d.ts.map +1 -1
  20. package/dist/commands/generate-screens-list.js +36 -0
  21. package/dist/commands/generate-screens-list.js.map +1 -1
  22. package/dist/commands/generate.d.ts.map +1 -1
  23. package/dist/commands/generate.js +7 -3
  24. package/dist/commands/generate.js.map +1 -1
  25. package/dist/commands/render.d.ts +14 -0
  26. package/dist/commands/render.d.ts.map +1 -0
  27. package/dist/commands/render.js +730 -0
  28. package/dist/commands/render.js.map +1 -0
  29. package/dist/core/ai/AICore.d.ts +4 -0
  30. package/dist/core/ai/AICore.d.ts.map +1 -1
  31. package/dist/core/ai/AICore.js +12 -1
  32. package/dist/core/ai/AICore.js.map +1 -1
  33. package/dist/mcp/vision-test-runner.d.ts +5 -0
  34. package/dist/mcp/vision-test-runner.d.ts.map +1 -1
  35. package/dist/mcp/vision-test-runner.js +40 -1
  36. package/dist/mcp/vision-test-runner.js.map +1 -1
  37. package/dist/templates/sample-authority-blueprint.json +79 -0
  38. package/dist/types/blueprint-types.d.ts +82 -0
  39. package/dist/types/blueprint-types.d.ts.map +1 -0
  40. package/dist/types/blueprint-types.js +9 -0
  41. package/dist/types/blueprint-types.js.map +1 -0
  42. package/dist/utils/geminiClient.d.ts.map +1 -1
  43. package/dist/utils/geminiClient.js +3 -0
  44. package/dist/utils/geminiClient.js.map +1 -1
  45. package/package.json +1 -1
package/README.md CHANGED
@@ -1,71 +1,471 @@
1
- # The Project
2
-
3
- A high-fidelity application built with MyContext.
4
-
5
- ## 🎯 Project Overview
6
- This project is built using a spec-driven development paradigm guided by a central 'Living Brain'.
7
-
8
- ## ✨ Key Features
9
- - **Authentication**: undefined
10
- - **Pricing Table**: undefined
11
- - **FAQ Section**: undefined
12
-
13
- ## 📂 Project Structure
14
- ```bash
15
- 📁 bao-pilot
16
- 📁 bao-pilot
17
- 📄 build-errors-2.txt
18
- 📄 build-errors.txt
19
- 📁 docs
20
- 📁 research
21
- 📁 examples
22
- 📄 mega-context-sample.json
23
- 📄 validate-context.ts
24
- 📁 experiments
25
- 📁 living-brain-blog
26
- 📁 pricing-mission
27
- 📄 jest.config.js
28
- 📄 mycontext-cli-4.2.13.tgz
29
- 📄 mycontext-cli-4.2.14.tgz
30
- 📄 mycontext-cli-4.2.15.tgz
31
- 📄 mycontext-cli-4.2.16.tgz
32
- 📄 package.json
33
- 📁 public
34
- 📁 scripts
35
- 📄 generateTypesFromSchema.ts
36
- 📄 migrate-brain.ts
37
- 📄 run-improvement-analysis.js
38
- 📄 test-tailor-cv.sh
39
- 📁 src
40
- 📁 agents
41
- 📄 cli.ts
42
- 📁 clients
43
- 📁 commands
44
- 📁 config
45
- ```
46
-
47
- ## 🚀 Quick Start
48
- 1. **Install Dependencies**:
49
- ```bash
50
- pnpm install
51
- ```
52
- 2. **Run Dev Server**:
53
- ```bash
54
- npm run dev
55
- ```
56
-
57
- <!-- mycontext:start -->
58
- ### 🎯 Project Overview
59
- AI-driven development platform.
60
-
61
- ### ✨ Key Features
62
- - Authentication
63
- - Pricing Table
64
- - FAQ Section
65
-
66
- ---
67
- _Last synchronized with MyContext Living DB on 3/10/2026_
68
- <!-- mycontext:end -->
69
-
70
- ---
71
- *Generated by MyContext CLI - Living Brain JSON Source*
1
+ # mycontext-cli
2
+
3
+ > The Context Engine for AI-Native Development.
4
+ > Generate high-fidelity scaffolds, maintain a **Living Brain**, and drive your entire codebase with a single source of truth.
5
+
6
+ [![npm version](https://img.shields.io/npm/v/mycontext-cli)](https://www.npmjs.com/package/mycontext-cli)
7
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8
+
9
+ ---
10
+
11
+ ## Table of Contents
12
+
13
+ - [What is MyContext?](#what-is-mycontext)
14
+ - [Installation](#installation)
15
+ - [Quick Start](#quick-start)
16
+ - [Core Concepts](#core-concepts)
17
+ - [Command Reference](#command-reference)
18
+ - [Project Setup](#project-setup)
19
+ - [Living Brain](#living-brain)
20
+ - [AI Agent & Planning](#ai-agent--planning)
21
+ - [Code Generation](#code-generation)
22
+ - [Analysis & Diagnostics](#analysis--diagnostics)
23
+ - [Maintenance](#maintenance)
24
+ - [Typical Workflow](#typical-workflow)
25
+ - [Environment Variables](#environment-variables)
26
+ - [Configuration](#configuration)
27
+
28
+ ---
29
+
30
+ ## What is MyContext?
31
+
32
+ MyContext treats your project spec as a **Living Brain** — a structured JSON document (`.mycontext/context.json`) that describes your app's goals, architecture, components, and design system.
33
+
34
+ Every CLI command — such as screen mapping or component discovery — automatically synchronizes its results back into this central Brain, ensuring your documentation and your code remain perfectly aligned.
35
+
36
+ ---
37
+
38
+ ## Installation
39
+
40
+ ```bash
41
+ npm install -g mycontext-cli
42
+ # or
43
+ pnpm add -g mycontext-cli
44
+ ```
45
+
46
+ Verify:
47
+
48
+ ```bash
49
+ mycontext --version
50
+ ```
51
+
52
+ ---
53
+
54
+ ## Quick Start
55
+
56
+ ```bash
57
+ # 1. Go to your project folder (or an empty directory)
58
+ cd my-app
59
+
60
+ # 2. Initialise the Living Brain
61
+ mycontext init
62
+
63
+ # 3. Configure your AI provider
64
+ mycontext setup
65
+
66
+ # 4. Generate the full context from your PRD
67
+ mycontext generate context --full
68
+
69
+ # 5. Scaffold the entire application
70
+ mycontext build
71
+ ```
72
+
73
+ ---
74
+
75
+ ## Core Concepts
76
+
77
+ | Concept | What it is |
78
+ |---|---|
79
+ | **Living Brain** | `.mycontext/context.json` — single source of truth for your project |
80
+ | **PRD** | `.mycontext/01-prd.md` — your product requirements document |
81
+ | **Design Manifest** | AI-derived design system snapshot |
82
+ | **Sub-agents** | Specialised AI workers (CodeGen, QA, Architect, Security, …) |
83
+ | **FSR** | Feature Spec Record — structured description of a single feature |
84
+
85
+ ---
86
+
87
+ ## Command Reference
88
+
89
+ ### Project Setup
90
+
91
+ #### `mycontext init [project-name]`
92
+
93
+ Initialise a new MyContext project. Creates `.mycontext/` with your PRD template, context skeleton, and (optionally) a framework scaffold.
94
+
95
+ ```bash
96
+ mycontext init my-saas-app
97
+ mycontext init --framework nextjs # Next.js + shadcn/ui
98
+ mycontext init --framework instantdb # Next.js + InstantDB + shadcn (default)
99
+ mycontext init --framework other # MyContext files only
100
+ mycontext init --interactive # Guided 100%-complete spec wizard
101
+ mycontext init --spec-only # Context files only, no framework setup
102
+ ```
103
+
104
+ #### `mycontext setup`
105
+
106
+ Configure AI providers (Anthropic, OpenAI, xAI) and your development stack.
107
+
108
+ ```bash
109
+ mycontext setup
110
+ mycontext setup --stack nextjs-tailwind-shadcn
111
+ ```
112
+
113
+ #### `mycontext auth`
114
+
115
+ Authenticate with the MyContext AI cloud service.
116
+
117
+ ```bash
118
+ mycontext auth --login
119
+ mycontext auth --status
120
+ mycontext auth --logout
121
+ ```
122
+
123
+ #### `mycontext setup-shadcn`
124
+
125
+ Add shadcn/ui to an existing project and wire it to the Living Brain.
126
+
127
+ #### `mycontext setup-database`
128
+
129
+ Set up a database provider (InstantDB, Supabase, Firebase) with schema and auth components.
130
+
131
+ ```bash
132
+ mycontext setup-database --provider instantdb
133
+ ```
134
+
135
+ #### `mycontext setup-instantdb`
136
+
137
+ Full InstantDB + MCP integration wizard.
138
+
139
+ ```bash
140
+ mycontext setup-instantdb --app-id <id> --token <token>
141
+ ```
142
+
143
+ #### `mycontext setup-mcp`
144
+
145
+ Configure a Model Context Protocol (MCP) server for AI-powered tooling.
146
+
147
+ ```bash
148
+ mycontext setup-mcp --provider instantdb
149
+ mycontext setup-mcp --provider github
150
+ mycontext setup-mcp --provider custom --server <url>
151
+ ```
152
+
153
+ ---
154
+
155
+ ### Living Brain
156
+
157
+ #### `mycontext generate [type]`
158
+
159
+ Orchestrate the Living Brain — generate context files, types, brand tokens, and more. All generation commands automatically synchronize their results into `.mycontext/context.json`.
160
+
161
+ ```bash
162
+ mycontext generate context --full # Full PRD + A/B/C/D context files
163
+ mycontext generate context # Incremental update
164
+ mycontext generate:screens-list # Sync routes to the Brain
165
+ mycontext generate:components-manifest # Sync component specs to the Brain
166
+ mycontext generate design-prompt # AI design brief for UI designer
167
+ mycontext generate actions # UI→backend action hooks
168
+ mycontext generate assets # Planned asset list
169
+ mycontext generate sample-data # Seed data for development
170
+ ```
171
+
172
+ #### `mycontext sync`
173
+
174
+ Auto-update `context.json` and `README.md` by scanning the live codebase.
175
+
176
+ ```bash
177
+ mycontext sync # Sync both
178
+ mycontext sync --context # context.json only
179
+ mycontext sync --readme # README.md only
180
+ mycontext sync --dry-run # Preview changes without writing
181
+ ```
182
+
183
+ #### `mycontext sync-readme`
184
+
185
+ Synchronise the root `README.md` with your design manifest.
186
+
187
+ #### `mycontext validate <target>`
188
+
189
+ Validate your PRD or context files for completeness.
190
+
191
+ ```bash
192
+ mycontext validate prd
193
+ mycontext validate context
194
+ mycontext validate --interactive
195
+ ```
196
+
197
+ #### `mycontext status`
198
+
199
+ Show current project status and progress against the Living Brain.
200
+
201
+ ```bash
202
+ mycontext status
203
+ mycontext status --detailed
204
+ ```
205
+
206
+ ---
207
+
208
+ ### AI Agent & Planning
209
+
210
+ #### `mycontext agent [prompt]`
211
+
212
+ Assess a natural-language prompt against the Living Brain and propose (or apply) changes.
213
+
214
+ ```bash
215
+ mycontext agent "Add a dark mode toggle to the nav"
216
+ mycontext agent "Add a dark mode toggle" --execute # Apply changes
217
+ mycontext agent "..." --execute --yes # Skip confirmation
218
+ ```
219
+
220
+ #### `mycontext plan`
221
+
222
+ Interactive feature planning session — produces an FSR (Feature Spec Record).
223
+
224
+ ```bash
225
+ mycontext plan
226
+ ```
227
+
228
+ #### `mycontext build-strategy`
229
+
230
+ Generate an AI-powered build strategy and execution plan from the current Brain state.
231
+
232
+ #### `mycontext ideate`
233
+
234
+ Generate creative UI/UX concepts based on project context.
235
+
236
+ ```bash
237
+ mycontext ideate --industry fintech --count 5
238
+ ```
239
+
240
+ ---
241
+
242
+ ### Code Generation
243
+
244
+ #### `mycontext build`
245
+
246
+ Scaffold the **entire** application from the Living Brain in one shot.
247
+
248
+ ```bash
249
+ mycontext build
250
+ mycontext build --force # Regenerate all components
251
+ ```
252
+
253
+ #### `mycontext build-feature`
254
+
255
+ Build a single feature end-to-end from an FSR.
256
+
257
+ #### `mycontext generate-components [target]`
258
+
259
+ Generate React components from the component manifest.
260
+
261
+ ```bash
262
+ mycontext generate-components all
263
+ mycontext generate-components --core-only # First 10 components only
264
+ mycontext generate-components --group forms
265
+ mycontext generate-components all --with-tests
266
+ ```
267
+
268
+ #### `mycontext add <component>`
269
+
270
+ Add a context-aware component (shadcn primitive or custom).
271
+
272
+ ```bash
273
+ mycontext add button
274
+ mycontext add UserCard --group cards
275
+ mycontext add dialog --shadcn
276
+ ```
277
+
278
+ #### `mycontext enhance`
279
+
280
+ Enhance the project or specific components with AI suggestions.
281
+
282
+ #### `mycontext refine`
283
+
284
+ Refine context or components.
285
+
286
+ #### `mycontext refine:component <componentName>`
287
+
288
+ Refine a single component with targeted AI feedback.
289
+
290
+ ```bash
291
+ mycontext refine:component HeroSection --variant mobile
292
+ mycontext refine:component NavBar --in-place
293
+ ```
294
+
295
+ #### `mycontext migrate [target]`
296
+
297
+ Migrate components to new standards.
298
+
299
+ ```bash
300
+ mycontext migrate rtl # RTL-friendly logical CSS properties
301
+ mycontext migrate rtl --path src/components/Nav.tsx
302
+ mycontext migrate radix --all # Refactor to Radix/shadcn primitives
303
+ ```
304
+
305
+ ---
306
+
307
+ ### Analysis & Diagnostics
308
+
309
+ #### `mycontext analyze`
310
+
311
+ Analyse an **existing** project and generate context files from the live codebase.
312
+
313
+ ```bash
314
+ mycontext analyze
315
+ mycontext analyze --image ./screenshot.png # Analyse a mockup instead
316
+ mycontext analyze --verbose
317
+ ```
318
+
319
+ #### `mycontext design`
320
+
321
+ Design system analysis and manifest generation.
322
+
323
+ ```bash
324
+ mycontext design --analyze
325
+ mycontext design --validate
326
+ mycontext design --summary
327
+ mycontext design --regenerate
328
+ ```
329
+
330
+ #### `mycontext scan`
331
+
332
+ Scan the project tree and assess progress against the Living Brain.
333
+
334
+ ```bash
335
+ mycontext scan
336
+ mycontext scan --assess # AI progress assessment
337
+ mycontext scan --assess --json # Machine-readable output
338
+ ```
339
+
340
+ #### `mycontext health-check`
341
+
342
+ Run health checks across the project.
343
+
344
+ #### `mycontext doctor`
345
+
346
+ Full diagnostic check with auto-fix suggestions.
347
+
348
+ #### `mycontext sanitize`
349
+
350
+ Find and optionally remove redundant, duplicate, or unreachable code.
351
+
352
+ ```bash
353
+ mycontext sanitize
354
+ mycontext sanitize --fix
355
+ mycontext sanitize --verbose
356
+ ```
357
+
358
+ #### `mycontext generate-todos`
359
+
360
+ Generate a contextual todo list from the project's current state.
361
+
362
+ ```bash
363
+ mycontext generate-todos --count 10 --energy high --complexity moderate
364
+ ```
365
+
366
+ ---
367
+
368
+ ### Maintenance
369
+
370
+ #### `mycontext update`
371
+
372
+ Update the CLI to the latest published version.
373
+
374
+ ```bash
375
+ mycontext update
376
+ ```
377
+
378
+ #### `mycontext clean`
379
+
380
+ Clean and repair malformed context files.
381
+
382
+ ```bash
383
+ mycontext clean
384
+ mycontext clean --project ./path/to/project
385
+ ```
386
+
387
+ #### `mycontext help [topic]`
388
+
389
+ Context-aware help for any topic or command.
390
+
391
+ ```bash
392
+ mycontext help
393
+ mycontext help agent
394
+ mycontext help generate --verbose
395
+ ```
396
+
397
+ ---
398
+
399
+ ## Typical Workflow
400
+
401
+ ### Starting a new project
402
+
403
+ ```bash
404
+ mkdir my-app && cd my-app
405
+ mycontext init --spec-only # Context files only
406
+ mycontext setup # Configure AI keys (Gemini, Claude, etc.)
407
+ mycontext generate context --full # Build the Living Brain
408
+ mycontext generate:screens-list # Map routes to Brain
409
+ mycontext generate:components-manifest # Map component specs to Brain
410
+ mycontext generate:design-prompt # Ready for UI designer handoff
411
+ ```
412
+
413
+ ### Adding a feature to an existing project
414
+
415
+ ```bash
416
+ mycontext plan # Describe the feature interactively
417
+ mycontext build-feature # Generate code from the FSR
418
+ mycontext sync # Keep context.json in sync
419
+ ```
420
+
421
+ ### Adopting MyContext on an existing codebase
422
+
423
+ ```bash
424
+ cd existing-project
425
+ mycontext analyze # Reverse-engineer context from code
426
+ mycontext generate context # Fill gaps with AI
427
+ mycontext status # See what's covered
428
+ ```
429
+
430
+ ---
431
+
432
+ ## Environment Variables
433
+
434
+ MyContext loads `.env` files from your project automatically. You can also set these directly:
435
+
436
+ | Variable | Description |
437
+ |---|---|
438
+ | `ANTHROPIC_API_KEY` | Anthropic Claude API key |
439
+ | `OPENAI_API_KEY` | OpenAI API key |
440
+ | `XAI_API_KEY` | xAI (Grok) API key |
441
+ | `MYCONTEXT_API_KEY` | MyContext cloud service key |
442
+ | `INSTANTDB_APP_ID` | InstantDB application ID |
443
+
444
+ Loaded in order (first match wins):
445
+ `.mycontext/.env.local` → `.mycontext/.env` → `.env.local` → `.env`
446
+
447
+ ---
448
+
449
+ ## Configuration
450
+
451
+ All project configuration lives in `.mycontext/`:
452
+
453
+ ```
454
+ .mycontext/
455
+ ├── context.json ← Living Brain (source of truth)
456
+ ├── 01-prd.md ← Product Requirements Document
457
+ ├── .env.local ← Local secrets (git-ignored)
458
+ └── ... ← Generated context files
459
+ ```
460
+
461
+ ---
462
+
463
+ ## Links
464
+
465
+ - [GitHub](https://github.com/farajabien/mycontext-cli)
466
+ - [Issues](https://github.com/farajabien/mycontext-cli/issues)
467
+ - [npm](https://www.npmjs.com/package/mycontext-cli)
468
+
469
+ ---
470
+
471
+ *Built with MyContext — spec-driven development for the AI era.*
@@ -1 +1 @@
1
- {"version":3,"file":"DemoRecorderAgent.d.ts","sourceRoot":"","sources":["../../../src/agents/implementations/DemoRecorderAgent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,cAAc,EAAQ,MAAM,YAAY,CAAC;AAClD,OAAO,EACL,QAAQ,EACT,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,aAAa,EACb,UAAU,EACV,cAAc,EAEf,MAAM,4BAA4B,CAAC;AAQpC,MAAM,WAAW,iBAAiB;IAChC,cAAc,EAAE,cAAc,CAAC;IAC/B,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,MAAM,EAAE,UAAU,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,aAAa,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,qBAAa,iBACX,YAAW,QAAQ,CAAC,iBAAiB,EAAE,kBAAkB,CAAC;IAE1D,IAAI,SAAuB;IAC3B,WAAW,SACoE;IAC/E,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,EAAE,CAAC;IAEpB,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,OAAO,CAAS;;IAmBlB,GAAG,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IA0GhE;;;OAGG;YACW,aAAa;IA4B3B;;OAEG;YACW,mBAAmB;IAiCjC;;OAEG;YACW,kBAAkB;IAsBhC;;OAEG;YACW,sBAAsB;IAsDpC;;OAEG;IACH,OAAO,CAAC,uBAAuB;IA2M/B;;OAEG;YACW,gBAAgB;IAyBxB,QAAQ,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;IASpD,SAAS,IAAI,OAAO,CAAC;QACzB,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,WAAW,GAAG,OAAO,CAAC;QACnD,OAAO,CAAC,EAAE,IAAI,CAAC;QACf,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;CAQH"}
1
+ {"version":3,"file":"DemoRecorderAgent.d.ts","sourceRoot":"","sources":["../../../src/agents/implementations/DemoRecorderAgent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,cAAc,EAAQ,MAAM,YAAY,CAAC;AAClD,OAAO,EACL,QAAQ,EACT,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,aAAa,EACb,UAAU,EACV,cAAc,EAEf,MAAM,4BAA4B,CAAC;AAQpC,MAAM,WAAW,iBAAiB;IAChC,cAAc,EAAE,cAAc,CAAC;IAC/B,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,MAAM,EAAE,UAAU,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,aAAa,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,qBAAa,iBACX,YAAW,QAAQ,CAAC,iBAAiB,EAAE,kBAAkB,CAAC;IAE1D,IAAI,SAAuB;IAC3B,WAAW,SACoE;IAC/E,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,EAAE,CAAC;IAEpB,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,OAAO,CAAS;;IAmBlB,GAAG,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IA0GhE;;;OAGG;YACW,aAAa;IAsB3B;;OAEG;YACW,mBAAmB;IAiCjC;;OAEG;YACW,kBAAkB;IAsBhC;;OAEG;YACW,sBAAsB;IAsDpC;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAwY/B;;OAEG;YACW,gBAAgB;IAyBxB,QAAQ,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;IASpD,SAAS,IAAI,OAAO,CAAC;QACzB,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,WAAW,GAAG,OAAO,CAAC;QACnD,OAAO,CAAC,EAAE,IAAI,CAAC;QACf,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;CAQH"}