@zigrivers/scaffold 3.5.3 → 3.7.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 (89) hide show
  1. package/README.md +150 -8
  2. package/content/knowledge/backend/backend-api-design.md +103 -0
  3. package/content/knowledge/backend/backend-architecture.md +100 -0
  4. package/content/knowledge/backend/backend-async-patterns.md +101 -0
  5. package/content/knowledge/backend/backend-auth-patterns.md +100 -0
  6. package/content/knowledge/backend/backend-conventions.md +105 -0
  7. package/content/knowledge/backend/backend-data-modeling.md +102 -0
  8. package/content/knowledge/backend/backend-deployment.md +100 -0
  9. package/content/knowledge/backend/backend-dev-environment.md +102 -0
  10. package/content/knowledge/backend/backend-observability.md +102 -0
  11. package/content/knowledge/backend/backend-project-structure.md +100 -0
  12. package/content/knowledge/backend/backend-requirements.md +103 -0
  13. package/content/knowledge/backend/backend-security.md +104 -0
  14. package/content/knowledge/backend/backend-testing.md +101 -0
  15. package/content/knowledge/backend/backend-worker-patterns.md +100 -0
  16. package/content/knowledge/cli/cli-architecture.md +101 -0
  17. package/content/knowledge/cli/cli-conventions.md +117 -0
  18. package/content/knowledge/cli/cli-dev-environment.md +121 -0
  19. package/content/knowledge/cli/cli-distribution-patterns.md +106 -0
  20. package/content/knowledge/cli/cli-interactivity-patterns.md +116 -0
  21. package/content/knowledge/cli/cli-output-patterns.md +107 -0
  22. package/content/knowledge/cli/cli-project-structure.md +124 -0
  23. package/content/knowledge/cli/cli-requirements.md +101 -0
  24. package/content/knowledge/cli/cli-shell-integration.md +130 -0
  25. package/content/knowledge/cli/cli-testing.md +134 -0
  26. package/content/knowledge/web-app/web-app-api-patterns.md +224 -0
  27. package/content/knowledge/web-app/web-app-architecture.md +116 -0
  28. package/content/knowledge/web-app/web-app-auth-patterns.md +256 -0
  29. package/content/knowledge/web-app/web-app-conventions.md +121 -0
  30. package/content/knowledge/web-app/web-app-data-patterns.md +218 -0
  31. package/content/knowledge/web-app/web-app-deployment-workflow.md +143 -0
  32. package/content/knowledge/web-app/web-app-deployment.md +134 -0
  33. package/content/knowledge/web-app/web-app-design-system.md +158 -0
  34. package/content/knowledge/web-app/web-app-dev-environment.md +173 -0
  35. package/content/knowledge/web-app/web-app-observability.md +221 -0
  36. package/content/knowledge/web-app/web-app-project-structure.md +160 -0
  37. package/content/knowledge/web-app/web-app-rendering-strategies.md +133 -0
  38. package/content/knowledge/web-app/web-app-requirements.md +112 -0
  39. package/content/knowledge/web-app/web-app-security.md +193 -0
  40. package/content/knowledge/web-app/web-app-session-patterns.md +214 -0
  41. package/content/knowledge/web-app/web-app-testing.md +249 -0
  42. package/content/knowledge/web-app/web-app-ux-patterns.md +162 -0
  43. package/content/methodology/backend-overlay.yml +73 -0
  44. package/content/methodology/cli-overlay.yml +69 -0
  45. package/content/methodology/web-app-overlay.yml +79 -0
  46. package/dist/cli/commands/init.d.ts +26 -0
  47. package/dist/cli/commands/init.d.ts.map +1 -1
  48. package/dist/cli/commands/init.js +354 -7
  49. package/dist/cli/commands/init.js.map +1 -1
  50. package/dist/cli/commands/init.test.js +136 -0
  51. package/dist/cli/commands/init.test.js.map +1 -1
  52. package/dist/config/schema.d.ts +800 -32
  53. package/dist/config/schema.d.ts.map +1 -1
  54. package/dist/config/schema.js +48 -5
  55. package/dist/config/schema.js.map +1 -1
  56. package/dist/config/schema.test.js +156 -1
  57. package/dist/config/schema.test.js.map +1 -1
  58. package/dist/core/assembly/overlay-loader.d.ts.map +1 -1
  59. package/dist/core/assembly/overlay-loader.js +2 -1
  60. package/dist/core/assembly/overlay-loader.js.map +1 -1
  61. package/dist/core/assembly/overlay-loader.test.js +34 -0
  62. package/dist/core/assembly/overlay-loader.test.js.map +1 -1
  63. package/dist/e2e/game-pipeline.test.js +1 -0
  64. package/dist/e2e/game-pipeline.test.js.map +1 -1
  65. package/dist/e2e/project-type-overlays.test.d.ts +15 -0
  66. package/dist/e2e/project-type-overlays.test.d.ts.map +1 -0
  67. package/dist/e2e/project-type-overlays.test.js +534 -0
  68. package/dist/e2e/project-type-overlays.test.js.map +1 -0
  69. package/dist/types/config.d.ts +13 -2
  70. package/dist/types/config.d.ts.map +1 -1
  71. package/dist/types/index.d.ts +0 -1
  72. package/dist/types/index.d.ts.map +1 -1
  73. package/dist/types/index.js +0 -1
  74. package/dist/types/index.js.map +1 -1
  75. package/dist/wizard/questions.d.ts +30 -1
  76. package/dist/wizard/questions.d.ts.map +1 -1
  77. package/dist/wizard/questions.js +181 -36
  78. package/dist/wizard/questions.js.map +1 -1
  79. package/dist/wizard/questions.test.js +334 -4
  80. package/dist/wizard/questions.test.js.map +1 -1
  81. package/dist/wizard/wizard.d.ts +26 -0
  82. package/dist/wizard/wizard.d.ts.map +1 -1
  83. package/dist/wizard/wizard.js +31 -2
  84. package/dist/wizard/wizard.js.map +1 -1
  85. package/package.json +1 -1
  86. package/dist/types/wizard.d.ts +0 -14
  87. package/dist/types/wizard.d.ts.map +0 -1
  88. package/dist/types/wizard.js +0 -2
  89. package/dist/types/wizard.js.map +0 -1
@@ -0,0 +1,162 @@
1
+ ---
2
+ name: web-app-ux-patterns
3
+ description: Responsive design, loading states, error boundaries, offline patterns, optimistic updates, and accessibility (WCAG) for web apps
4
+ topics: [web-app, ux, responsive-design, loading-states, error-handling, accessibility, wcag, offline, optimistic-updates]
5
+ ---
6
+
7
+ UX patterns are the difference between an app that users trust and one they abandon. The patterns covered here are not visual design choices — they are engineering decisions about how the app communicates state, handles failure, and responds to interaction. Implement them consistently across the entire app or they create a fragmented user experience that signals poor quality.
8
+
9
+ ## Summary
10
+
11
+ UX patterns cover responsive mobile-first design, loading states (skeletons, progressive loading, optimistic updates), error boundaries at meaningful granularity, offline patterns for PWAs, and accessibility compliance. Implement these consistently across the entire app. Loading states for sub-100ms operations make the app feel slower; omit them.
12
+
13
+ ## Deep Guidance
14
+
15
+ ### Responsive Design: Mobile-First
16
+
17
+ Design and implement for mobile first, then add complexity for larger screens. This discipline prevents the "desktop first, mobile afterthought" failure mode:
18
+
19
+ ```css
20
+ /* Mobile default: full width stack */
21
+ .product-grid {
22
+ display: grid;
23
+ grid-template-columns: 1fr;
24
+ gap: var(--sp-4);
25
+ }
26
+
27
+ /* Tablet: 2 columns */
28
+ @media (min-width: 768px) {
29
+ .product-grid {
30
+ grid-template-columns: repeat(2, 1fr);
31
+ }
32
+ }
33
+
34
+ /* Desktop: 3 columns */
35
+ @media (min-width: 1024px) {
36
+ .product-grid {
37
+ grid-template-columns: repeat(3, 1fr);
38
+ }
39
+ }
40
+ ```
41
+
42
+ Touch targets must be at least 44 x 44 px (Apple HIG) or 48 x 48 px (Material Design). Smaller tap targets on mobile cause accidental taps and user frustration. This is both a UX and accessibility requirement.
43
+
44
+ Viewport-relative units (`vw`, `vh`, `svh`, `dvh`) handle mobile browser chrome (address bars, bottom navigation) correctly. Use `dvh` for full-height layouts on mobile — `100vh` overflows when the browser chrome is visible.
45
+
46
+ ### Loading States
47
+
48
+ Never show a blank screen or unresponsive UI during data fetching. Use the appropriate loading pattern for the context:
49
+
50
+ - **Skeleton screens**: Render a content-shaped placeholder that mirrors the final layout. Reduces perceived load time and prevents layout shift when content arrives. Preferred over spinners for content that has a predictable layout.
51
+ - **Progressive loading**: Render low-quality or partial content immediately, replace with full content as it loads. Image blur-up (blur-hash placeholder to full image) is a common example.
52
+ - **Inline spinners**: For user-triggered actions (button submit, form save) where a skeleton does not make sense. Keep spinners small and contextual — a full-page spinner on a button press is jarring.
53
+ - **Optimistic updates**: Show the result immediately, apply it to the server in the background (see below). Best perceived performance.
54
+
55
+ Never show a loading state for actions that complete under 100 ms. Adding a spinner to fast operations makes the app feel slower.
56
+
57
+ ### Error Boundaries
58
+
59
+ React error boundaries prevent a single component crash from destroying the entire page:
60
+
61
+ ```tsx
62
+ // components/ErrorBoundary.tsx
63
+ class ErrorBoundary extends React.Component<
64
+ { fallback: ReactNode; children: ReactNode },
65
+ { hasError: boolean }
66
+ > {
67
+ state = { hasError: false };
68
+
69
+ static getDerivedStateFromError() {
70
+ return { hasError: true };
71
+ }
72
+
73
+ componentDidCatch(error: Error, info: ErrorInfo) {
74
+ reportError(error, info); // Send to Sentry, Datadog, etc.
75
+ }
76
+
77
+ render() {
78
+ if (this.state.hasError) return this.props.fallback;
79
+ return this.props.children;
80
+ }
81
+ }
82
+ ```
83
+
84
+ Place error boundaries at meaningful granularity: one per major page section, not one per component (too granular) and not one per app (too coarse). When the sidebar crashes, the main content should still work.
85
+
86
+ Provide actionable fallback UIs: "Something went wrong" with a Retry button, not a blank space. Log errors to your monitoring service with full context (user ID, route, component stack) so you can fix them.
87
+
88
+ ### Offline Patterns
89
+
90
+ If the app targets users who may lose connectivity (mobile users, field workers, PWA), design for it explicitly:
91
+
92
+ - **Detect connectivity**: `navigator.onLine` and the `online`/`offline` events. React Query and SWR automatically pause requests while offline and retry on reconnect.
93
+ - **Cache reads**: Service worker with a cache-first or stale-while-revalidate strategy for read operations. Users see the last known state instead of an error page.
94
+ - **Queue writes**: Store mutations locally (IndexedDB via Dexie, or background sync API) and replay them when connectivity restores. Essential for field apps where users must be able to submit forms offline.
95
+ - **Communicate status**: Show a banner when offline. Tell users which data may be stale. Do not silently fail mutations — tell the user the action is queued.
96
+
97
+ Implementing offline support adds significant complexity. Scope it to the specific user journeys that need it, not the entire app.
98
+
99
+ ### Optimistic Updates
100
+
101
+ Optimistic updates apply the result of a mutation to the UI immediately, before server confirmation:
102
+
103
+ ```typescript
104
+ // React Query optimistic update pattern
105
+ const mutation = useMutation({
106
+ mutationFn: updateTodo,
107
+ onMutate: async (newTodo) => {
108
+ await queryClient.cancelQueries({ queryKey: ["todos"] });
109
+ const previousTodos = queryClient.getQueryData(["todos"]);
110
+ queryClient.setQueryData(["todos"], (old) =>
111
+ old.map((t) => t.id === newTodo.id ? { ...t, ...newTodo } : t)
112
+ );
113
+ return { previousTodos };
114
+ },
115
+ onError: (error, variables, context) => {
116
+ queryClient.setQueryData(["todos"], context.previousTodos);
117
+ showError("Failed to save changes.");
118
+ },
119
+ onSettled: () => queryClient.invalidateQueries({ queryKey: ["todos"] }),
120
+ });
121
+ ```
122
+
123
+ Use optimistic updates for: toggling checkboxes, likes/favorites, reordering, simple field edits. Do not use for: payments, irreversible actions, or anything where showing a false success state is harmful.
124
+
125
+ ### Accessibility Implementation
126
+
127
+ WCAG compliance is a legal requirement in many jurisdictions (ADA, EN 301 549, AODA) and a quality signal for all users:
128
+
129
+ **Keyboard navigation:**
130
+ - Every interactive element reachable by Tab key in logical order
131
+ - Focus styles visible and high-contrast (never `outline: none` without a replacement)
132
+ - Modal dialogs trap focus; Escape closes them
133
+ - Custom interactive components (dropdowns, sliders, date pickers) implement ARIA keyboard patterns from the WAI-ARIA Authoring Practices Guide
134
+
135
+ **Screen reader support:**
136
+ - Semantic HTML first: `<button>` not `<div onClick>`, `<nav>` not `<div class="nav">`, `<h1>`–`<h6>` for heading hierarchy
137
+ - `alt` text on all meaningful images; `alt=""` for decorative images
138
+ - `aria-label` or `aria-labelledby` for elements whose text content does not describe their purpose
139
+ - Live regions (`aria-live="polite"`) for dynamic content updates (error messages, notifications)
140
+ - Test with VoiceOver (macOS/iOS) and NVDA (Windows) — automated tools miss 60–70% of real issues
141
+
142
+ **Color and contrast:**
143
+ - Minimum 4.5:1 contrast ratio for normal text, 3:1 for large text (WCAG AA)
144
+ - Do not rely on color alone to convey meaning — add icons, patterns, or text labels
145
+
146
+ ### Form UX Patterns
147
+
148
+ Forms are the highest-friction interaction in most apps. Apply these patterns:
149
+
150
+ - **Inline validation**: Validate on blur (not on keystroke) to avoid distracting errors as users type. Show success states to confirm correct input.
151
+ - **Error placement**: Show field-level errors directly below the field, not in a summary banner. Users must not hunt to find which field has an error.
152
+ - **Label positioning**: Labels above inputs, not placeholders-as-labels. Placeholder text disappears when the user types and fails accessibility requirements.
153
+ - **Disabled submit vs. validation feedback**: Do not disable the submit button with no explanation. Instead, allow submission and show validation errors. Disabled buttons with no label are inaccessible and frustrating.
154
+
155
+ ### Toast / Notification Patterns
156
+
157
+ Notifications must not interrupt user flow or require dismissal for low-priority information:
158
+
159
+ - **Success toasts**: Auto-dismiss after 4–5 seconds. No action required.
160
+ - **Error toasts**: Persist until dismissed or action taken. User must be able to act on the error.
161
+ - **Placement**: Bottom-right (desktop) or bottom-center (mobile) to avoid covering primary content.
162
+ - **Screen reader**: Announce via `aria-live="polite"` for non-critical messages, `aria-live="assertive"` only for critical errors. Assertive announcements interrupt screen reader narration — use sparingly.
@@ -0,0 +1,73 @@
1
+ # methodology/backend-overlay.yml
2
+ name: backend
3
+ description: >
4
+ Backend service overlay — injects backend domain knowledge into existing
5
+ pipeline steps for API design, data modeling, authentication, async
6
+ processing, and deployment patterns.
7
+ project-type: backend
8
+
9
+ # ---------------------------------------------------------------------------
10
+ # knowledge-overrides
11
+ # ---------------------------------------------------------------------------
12
+ # Map backend knowledge entries into existing pipeline steps so that backend
13
+ # domain expertise is injected during prompt assembly.
14
+ knowledge-overrides:
15
+ # Foundational
16
+ create-prd:
17
+ append: [backend-requirements]
18
+ user-stories:
19
+ append: [backend-requirements]
20
+ coding-standards:
21
+ append: [backend-conventions]
22
+ project-structure:
23
+ append: [backend-project-structure]
24
+ dev-env-setup:
25
+ append: [backend-dev-environment]
26
+ git-workflow:
27
+ append: [backend-deployment]
28
+
29
+ # Architecture & Design
30
+ system-architecture:
31
+ append: [backend-architecture, backend-async-patterns, backend-worker-patterns]
32
+ tech-stack:
33
+ append: [backend-architecture, backend-api-design, backend-auth-patterns]
34
+ adrs:
35
+ append: [backend-architecture]
36
+ domain-modeling:
37
+ append: [backend-data-modeling]
38
+ database-schema:
39
+ append: [backend-data-modeling]
40
+ api-contracts:
41
+ append: [backend-api-design]
42
+ security:
43
+ append: [backend-auth-patterns, backend-security]
44
+ operations:
45
+ append: [backend-deployment, backend-observability, backend-async-patterns, backend-worker-patterns]
46
+
47
+ # Testing
48
+ tdd:
49
+ append: [backend-testing]
50
+ add-e2e-testing:
51
+ append: [backend-testing]
52
+ create-evals:
53
+ append: [backend-testing]
54
+ story-tests:
55
+ append: [backend-testing]
56
+
57
+ # Reviews (mirror authoring steps)
58
+ review-architecture:
59
+ append: [backend-architecture, backend-async-patterns, backend-worker-patterns]
60
+ review-api:
61
+ append: [backend-api-design]
62
+ review-database:
63
+ append: [backend-data-modeling]
64
+ review-security:
65
+ append: [backend-auth-patterns, backend-security]
66
+ review-operations:
67
+ append: [backend-deployment, backend-observability, backend-async-patterns, backend-worker-patterns]
68
+ review-testing:
69
+ append: [backend-testing]
70
+
71
+ # Planning
72
+ implementation-plan:
73
+ append: [backend-architecture]
@@ -0,0 +1,69 @@
1
+ # methodology/cli-overlay.yml
2
+ name: cli
3
+ description: >
4
+ CLI tool overlay — injects CLI domain knowledge into existing pipeline
5
+ steps for command parsing, distribution, interactive prompts, output
6
+ formatting, and shell integration patterns.
7
+ project-type: cli
8
+
9
+ # ---------------------------------------------------------------------------
10
+ # knowledge-overrides
11
+ # ---------------------------------------------------------------------------
12
+ # Map CLI knowledge entries into existing pipeline steps so that CLI tool
13
+ # domain expertise is injected during prompt assembly.
14
+ knowledge-overrides:
15
+ # Foundational
16
+ create-prd:
17
+ append: [cli-requirements]
18
+ user-stories:
19
+ append: [cli-requirements]
20
+ coding-standards:
21
+ append: [cli-conventions]
22
+ project-structure:
23
+ append: [cli-project-structure]
24
+ dev-env-setup:
25
+ append: [cli-dev-environment, cli-shell-integration]
26
+ git-workflow:
27
+ append: [cli-distribution-patterns]
28
+
29
+ # Architecture & Design
30
+ system-architecture:
31
+ append: [cli-architecture, cli-interactivity-patterns]
32
+ tech-stack:
33
+ append: [cli-architecture, cli-distribution-patterns]
34
+ adrs:
35
+ append: [cli-architecture]
36
+ domain-modeling:
37
+ append: [cli-architecture]
38
+ api-contracts:
39
+ append: [cli-output-patterns]
40
+ security:
41
+ append: [cli-conventions]
42
+ operations:
43
+ append: [cli-distribution-patterns, cli-shell-integration]
44
+
45
+ # Testing
46
+ tdd:
47
+ append: [cli-testing]
48
+ add-e2e-testing:
49
+ append: [cli-testing]
50
+ create-evals:
51
+ append: [cli-testing]
52
+ story-tests:
53
+ append: [cli-testing]
54
+
55
+ # Reviews (mirror authoring steps)
56
+ review-architecture:
57
+ append: [cli-architecture, cli-interactivity-patterns]
58
+ review-api:
59
+ append: [cli-output-patterns]
60
+ review-security:
61
+ append: [cli-conventions]
62
+ review-operations:
63
+ append: [cli-distribution-patterns, cli-shell-integration]
64
+ review-testing:
65
+ append: [cli-testing]
66
+
67
+ # Planning
68
+ implementation-plan:
69
+ append: [cli-architecture]
@@ -0,0 +1,79 @@
1
+ # methodology/web-app-overlay.yml
2
+ name: web-app
3
+ description: >
4
+ Web application overlay — injects web-app domain knowledge into existing
5
+ pipeline steps for SSR/SPA architecture, deployment, authentication, and
6
+ real-time patterns.
7
+ project-type: web-app
8
+
9
+ # ---------------------------------------------------------------------------
10
+ # knowledge-overrides
11
+ # ---------------------------------------------------------------------------
12
+ # Map web-app knowledge entries into existing pipeline steps so that web-app
13
+ # domain expertise is injected during prompt assembly.
14
+ knowledge-overrides:
15
+ # Foundational
16
+ create-prd:
17
+ append: [web-app-requirements]
18
+ user-stories:
19
+ append: [web-app-requirements]
20
+ coding-standards:
21
+ append: [web-app-conventions]
22
+ project-structure:
23
+ append: [web-app-project-structure]
24
+ dev-env-setup:
25
+ append: [web-app-dev-environment]
26
+ git-workflow:
27
+ append: [web-app-deployment-workflow]
28
+
29
+ # Architecture & Design
30
+ system-architecture:
31
+ append: [web-app-architecture, web-app-deployment]
32
+ tech-stack:
33
+ append: [web-app-rendering-strategies, web-app-deployment, web-app-auth-patterns]
34
+ adrs:
35
+ append: [web-app-architecture]
36
+ ux-spec:
37
+ append: [web-app-ux-patterns]
38
+ design-system:
39
+ append: [web-app-design-system]
40
+ domain-modeling:
41
+ append: [web-app-session-patterns]
42
+ database-schema:
43
+ append: [web-app-data-patterns]
44
+ api-contracts:
45
+ append: [web-app-api-patterns]
46
+ security:
47
+ append: [web-app-auth-patterns, web-app-security]
48
+ operations:
49
+ append: [web-app-deployment, web-app-observability]
50
+
51
+ # Testing
52
+ tdd:
53
+ append: [web-app-testing]
54
+ add-e2e-testing:
55
+ append: [web-app-testing]
56
+ create-evals:
57
+ append: [web-app-testing]
58
+ story-tests:
59
+ append: [web-app-testing]
60
+
61
+ # Reviews (mirror authoring steps)
62
+ review-architecture:
63
+ append: [web-app-architecture, web-app-deployment]
64
+ review-ux:
65
+ append: [web-app-ux-patterns]
66
+ review-api:
67
+ append: [web-app-api-patterns]
68
+ review-database:
69
+ append: [web-app-data-patterns]
70
+ review-security:
71
+ append: [web-app-auth-patterns, web-app-security]
72
+ review-operations:
73
+ append: [web-app-deployment, web-app-observability]
74
+ review-testing:
75
+ append: [web-app-testing]
76
+
77
+ # Planning
78
+ implementation-plan:
79
+ append: [web-app-architecture]
@@ -8,6 +8,32 @@ interface InitArgs {
8
8
  idea?: string;
9
9
  methodology?: string;
10
10
  'project-type'?: string;
11
+ depth?: number;
12
+ adapters?: string[];
13
+ traits?: string[];
14
+ engine?: string;
15
+ multiplayer?: string;
16
+ 'target-platforms'?: string[];
17
+ 'online-services'?: string[];
18
+ 'content-structure'?: string;
19
+ economy?: string;
20
+ narrative?: string;
21
+ locales?: string[];
22
+ 'npc-ai'?: string;
23
+ modding?: boolean;
24
+ persistence?: string;
25
+ 'web-rendering'?: string;
26
+ 'web-deploy-target'?: string;
27
+ 'web-realtime'?: string;
28
+ 'web-auth-flow'?: string;
29
+ 'backend-api-style'?: string;
30
+ 'backend-data-store'?: string[];
31
+ 'backend-auth'?: string;
32
+ 'backend-messaging'?: string;
33
+ 'backend-deploy-target'?: string;
34
+ 'cli-interactivity'?: string;
35
+ 'cli-distribution'?: string[];
36
+ 'cli-structured-output'?: boolean;
11
37
  }
12
38
  declare const initCommand: CommandModule<Record<string, unknown>, InitArgs>;
13
39
  export default initCommand;
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/init.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAQ,MAAM,OAAO,CAAA;AAOhD,UAAU,QAAQ;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED,QAAA,MAAM,WAAW,EAAE,aAAa,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,QAAQ,CA6EjE,CAAA;AAED,eAAe,WAAW,CAAA"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/init.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAQ,MAAM,OAAO,CAAA;AA6BhD,UAAU,QAAQ;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC5B,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IAExB,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC/B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,uBAAuB,CAAC,EAAE,MAAM,CAAA;IAEhC,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,uBAAuB,CAAC,EAAE,OAAO,CAAA;CAClC;AAED,QAAA,MAAM,WAAW,EAAE,aAAa,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,QAAQ,CA4bjE,CAAA;AAED,eAAe,WAAW,CAAA"}