wize-dev-kit 0.3.0 → 0.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 (31) hide show
  1. package/AGENTS.md +21 -0
  2. package/ARCH.md +40 -4
  3. package/CHANGELOG.md +26 -0
  4. package/README.md +3 -1
  5. package/package.json +3 -2
  6. package/src/method-skills/1-analysis/wize-document-project/documentation-requirements.csv +12 -0
  7. package/src/method-skills/1-analysis/wize-document-project/templates/api-contracts-template.md +38 -0
  8. package/src/method-skills/1-analysis/wize-document-project/templates/architecture-template.md +54 -0
  9. package/src/method-skills/1-analysis/wize-document-project/templates/component-inventory-template.md +40 -0
  10. package/src/method-skills/1-analysis/wize-document-project/templates/contribution-guide-template.md +34 -0
  11. package/src/method-skills/1-analysis/wize-document-project/templates/data-models-template.md +36 -0
  12. package/src/method-skills/1-analysis/wize-document-project/templates/deep-dive-template.md +312 -0
  13. package/src/method-skills/1-analysis/wize-document-project/templates/deployment-guide-template.md +42 -0
  14. package/src/method-skills/1-analysis/wize-document-project/templates/development-guide-template.md +61 -0
  15. package/src/method-skills/1-analysis/wize-document-project/templates/index-template.md +185 -0
  16. package/src/method-skills/1-analysis/wize-document-project/templates/project-overview-template.md +110 -0
  17. package/src/method-skills/1-analysis/wize-document-project/templates/project-scan-report-schema.json +159 -0
  18. package/src/method-skills/1-analysis/wize-document-project/templates/source-tree-template.md +142 -0
  19. package/src/method-skills/1-analysis/wize-document-project/workflow.md +23 -0
  20. package/src/tea-skills/wize-tea-risk/workflow.md +11 -0
  21. package/tools/installer/commands/doctor.js +27 -1
  22. package/tools/installer/commands/document-project.js +93 -0
  23. package/tools/installer/document-project/batch-scanner.js +93 -0
  24. package/tools/installer/document-project/classify.js +170 -0
  25. package/tools/installer/document-project/modes/deep-dive.js +196 -0
  26. package/tools/installer/document-project/modes/full-rescan.js +15 -0
  27. package/tools/installer/document-project/modes/initial-scan.js +100 -0
  28. package/tools/installer/document-project/modes/quick.js +211 -0
  29. package/tools/installer/document-project/render-index.js +101 -0
  30. package/tools/installer/document-project/state.js +110 -0
  31. package/tools/installer/wize-cli.js +46 -30
@@ -0,0 +1,312 @@
1
+ ---
2
+ status: baseline
3
+ owner: Pepper Potts + Tony Stark
4
+ created: {{date}}
5
+ last_refreshed: {{date}}
6
+ ---
7
+
8
+ # {{target_name}} - Deep Dive Documentation
9
+
10
+ **Generated:** {{date}}
11
+ **Scope:** {{target_path}}
12
+ **Files Analyzed:** {{file_count}}
13
+ **Lines of Code:** {{total_loc}}
14
+ **Workflow Mode:** Exhaustive Deep-Dive
15
+
16
+ ## Overview
17
+
18
+ {{target_description}}
19
+
20
+ **Purpose:** {{target_purpose}}
21
+ **Key Responsibilities:** {{responsibilities}}
22
+ **Integration Points:** {{integration_summary}}
23
+
24
+ ## Complete File Inventory
25
+
26
+ {{#each files_in_inventory}}
27
+
28
+ ### {{file_path}}
29
+
30
+ **Purpose:** {{purpose}}
31
+ **Lines of Code:** {{loc}}
32
+ **File Type:** {{file_type}}
33
+
34
+ **What Future Contributors Must Know:** {{contributor_note}}
35
+
36
+ **Exports:**
37
+ {{#each exports}}
38
+
39
+ - `{{signature}}` - {{description}}
40
+ {{/each}}
41
+
42
+ **Dependencies:**
43
+ {{#each imports}}
44
+
45
+ - `{{import_path}}` - {{reason}}
46
+ {{/each}}
47
+
48
+ **Used By:**
49
+ {{#each dependents}}
50
+
51
+ - `{{dependent_path}}`
52
+ {{/each}}
53
+
54
+ **Key Implementation Details:**
55
+
56
+ ```{{language}}
57
+ {{key_code_snippet}}
58
+ ```
59
+
60
+ {{implementation_notes}}
61
+
62
+ **Patterns Used:**
63
+ {{#each patterns}}
64
+
65
+ - {{pattern_name}}: {{pattern_description}}
66
+ {{/each}}
67
+
68
+ **State Management:** {{state_approach}}
69
+
70
+ **Side Effects:**
71
+ {{#each side_effects}}
72
+
73
+ - {{effect_type}}: {{effect_description}}
74
+ {{/each}}
75
+
76
+ **Error Handling:** {{error_handling_approach}}
77
+
78
+ **Testing:**
79
+
80
+ - Test File: {{test_file_path}}
81
+ - Coverage: {{coverage_percentage}}%
82
+ - Test Approach: {{test_approach}}
83
+
84
+ **Comments/TODOs:**
85
+ {{#each todos}}
86
+
87
+ - Line {{line_number}}: {{todo_text}}
88
+ {{/each}}
89
+
90
+ ---
91
+ {{/each}}
92
+
93
+ ## Contributor Checklist
94
+
95
+ - **Risks & Gotchas:** {{risks_notes}}
96
+ - **Pre-change Verification Steps:** {{verification_steps}}
97
+ - **Suggested Tests Before PR:** {{suggested_tests}}
98
+
99
+ ## Architecture & Design Patterns
100
+
101
+ ### Code Organization
102
+
103
+ {{organization_approach}}
104
+
105
+ ### Design Patterns
106
+
107
+ {{#each design_patterns}}
108
+
109
+ - **{{pattern_name}}**: {{usage_description}}
110
+ {{/each}}
111
+
112
+ ### State Management Strategy
113
+
114
+ {{state_management_details}}
115
+
116
+ ### Error Handling Philosophy
117
+
118
+ {{error_handling_philosophy}}
119
+
120
+ ### Testing Strategy
121
+
122
+ {{testing_strategy}}
123
+
124
+ ## Data Flow
125
+
126
+ {{data_flow_diagram}}
127
+
128
+ ### Data Entry Points
129
+
130
+ {{#each entry_points}}
131
+
132
+ - **{{entry_name}}**: {{entry_description}}
133
+ {{/each}}
134
+
135
+ ### Data Transformations
136
+
137
+ {{#each transformations}}
138
+
139
+ - **{{transformation_name}}**: {{transformation_description}}
140
+ {{/each}}
141
+
142
+ ### Data Exit Points
143
+
144
+ {{#each exit_points}}
145
+
146
+ - **{{exit_name}}**: {{exit_description}}
147
+ {{/each}}
148
+
149
+ ## Integration Points
150
+
151
+ ### APIs Consumed
152
+
153
+ {{#each apis_consumed}}
154
+
155
+ - **{{api_endpoint}}**: {{api_description}}
156
+ - Method: {{method}}
157
+ - Authentication: {{auth_requirement}}
158
+ - Response: {{response_schema}}
159
+ {{/each}}
160
+
161
+ ### APIs Exposed
162
+
163
+ {{#each apis_exposed}}
164
+
165
+ - **{{api_endpoint}}**: {{api_description}}
166
+ - Method: {{method}}
167
+ - Request: {{request_schema}}
168
+ - Response: {{response_schema}}
169
+ {{/each}}
170
+
171
+ ### Shared State
172
+
173
+ {{#each shared_state}}
174
+
175
+ - **{{state_name}}**: {{state_description}}
176
+ - Type: {{state_type}}
177
+ - Accessed By: {{accessors}}
178
+ {{/each}}
179
+
180
+ ### Events
181
+
182
+ {{#each events}}
183
+
184
+ - **{{event_name}}**: {{event_description}}
185
+ - Type: {{publish_or_subscribe}}
186
+ - Payload: {{payload_schema}}
187
+ {{/each}}
188
+
189
+ ### Database Access
190
+
191
+ {{#each database_operations}}
192
+
193
+ - **{{table_name}}**: {{operation_type}}
194
+ - Queries: {{query_patterns}}
195
+ - Indexes Used: {{indexes}}
196
+ {{/each}}
197
+
198
+ ## Testing Analysis
199
+
200
+ ### Test Coverage Summary
201
+
202
+ - **Statements:** {{statements_coverage}}%
203
+ - **Branches:** {{branches_coverage}}%
204
+ - **Functions:** {{functions_coverage}}%
205
+ - **Lines:** {{lines_coverage}}%
206
+
207
+ ### Test Files
208
+
209
+ {{#each test_files}}
210
+
211
+ - **{{test_file_path}}**
212
+ - Tests: {{test_count}}
213
+ - Approach: {{test_approach}}
214
+ - Mocking Strategy: {{mocking_strategy}}
215
+ {{/each}}
216
+
217
+ ### Testing Gaps
218
+
219
+ {{#each testing_gaps}}
220
+
221
+ - {{gap_description}}
222
+ {{/each}}
223
+
224
+ ## Related Code & Reuse Opportunities
225
+
226
+ ### Similar Features Elsewhere
227
+
228
+ {{#each similar_features}}
229
+
230
+ - **{{feature_name}}** (`{{feature_path}}`)
231
+ - Similarity: {{similarity_description}}
232
+ - Can Reference For: {{reference_use_case}}
233
+ {{/each}}
234
+
235
+ ### Reusable Utilities Available
236
+
237
+ {{#each reusable_utilities}}
238
+
239
+ - **{{utility_name}}** (`{{utility_path}}`)
240
+ - Purpose: {{utility_purpose}}
241
+ - How to Use: {{usage_example}}
242
+ {{/each}}
243
+
244
+ ### Patterns to Follow
245
+
246
+ {{#each patterns_to_follow}}
247
+
248
+ - **{{pattern_name}}**: Reference `{{reference_file}}` for implementation
249
+ {{/each}}
250
+
251
+ ## Implementation Notes
252
+
253
+ ### Code Quality Observations
254
+
255
+ {{#each quality_observations}}
256
+
257
+ - {{observation}}
258
+ {{/each}}
259
+
260
+ ### TODOs and Future Work
261
+
262
+ {{#each all_todos}}
263
+
264
+ - **{{file_path}}:{{line_number}}**: {{todo_text}}
265
+ {{/each}}
266
+
267
+ ### Known Issues
268
+
269
+ {{#each known_issues}}
270
+
271
+ - {{issue_description}}
272
+ {{/each}}
273
+
274
+ ### Optimization Opportunities
275
+
276
+ {{#each optimizations}}
277
+
278
+ - {{optimization_suggestion}}
279
+ {{/each}}
280
+
281
+ ### Technical Debt
282
+
283
+ {{#each tech_debt_items}}
284
+
285
+ - {{debt_description}}
286
+ {{/each}}
287
+
288
+ ## Modification Guidance
289
+
290
+ ### To Add New Functionality
291
+
292
+ {{modification_guidance_add}}
293
+
294
+ ### To Modify Existing Functionality
295
+
296
+ {{modification_guidance_modify}}
297
+
298
+ ### To Remove/Deprecate
299
+
300
+ {{modification_guidance_remove}}
301
+
302
+ ### Testing Checklist for Changes
303
+
304
+ {{#each testing_checklist_items}}
305
+
306
+ - [ ] {{checklist_item}}
307
+ {{/each}}
308
+
309
+ ---
310
+
311
+ _Generated by Wize Dev Kit `document-project` workflow (deep-dive mode)_
312
+ _Base Documentation: [index.md](./index.md)_
@@ -0,0 +1,42 @@
1
+ ---
2
+ status: baseline
3
+ owner: Pepper Potts + Tony Stark
4
+ created: {{date}}
5
+ last_refreshed: {{date}}
6
+ ---
7
+
8
+ # {{project_name}} — Deployment Guide{{#if part_id}} — {{part_id}}{{/if}}
9
+
10
+ **Date:** {{date}}
11
+
12
+ ## CI/CD
13
+
14
+ {{cicd_description}}
15
+
16
+ {{#each pipelines}}
17
+ - **{{name}}** — {{description}}
18
+ {{/each}}
19
+
20
+ ## Infrastructure
21
+
22
+ {{infrastructure_description}}
23
+
24
+ {{#each resources}}
25
+ - **{{name}}** — {{description}}
26
+ {{/each}}
27
+
28
+ ## Environments
29
+
30
+ {{#each environments}}
31
+ ### {{name}}
32
+ - **URL:** {{url}}
33
+ - **Config:** {{config_notes}}
34
+ {{/each}}
35
+
36
+ ## Release Process
37
+
38
+ {{release_process}}
39
+
40
+ ---
41
+
42
+ _Generated using Wize Dev Kit `document-project` workflow_
@@ -0,0 +1,61 @@
1
+ ---
2
+ status: baseline
3
+ owner: Pepper Potts + Peggy Carter
4
+ created: {{date}}
5
+ last_refreshed: {{date}}
6
+ ---
7
+
8
+ # {{project_name}} — Development Guide{{#if part_id}} — {{part_id}}{{/if}}
9
+
10
+ **Date:** {{date}}
11
+ **Type:** {{project_type}}
12
+
13
+ ## Local Setup
14
+
15
+ {{setup_instructions}}
16
+
17
+ ### Prerequisites
18
+
19
+ {{prerequisites}}
20
+
21
+ ### Install
22
+
23
+ ```bash
24
+ {{install_command}}
25
+ ```
26
+
27
+ ### Run
28
+
29
+ ```bash
30
+ {{run_command}}
31
+ ```
32
+
33
+ ### Test
34
+
35
+ ```bash
36
+ {{test_command}}
37
+ ```
38
+
39
+ ## Development Workflow
40
+
41
+ {{workflow_description}}
42
+
43
+ ## Conventions
44
+
45
+ {{conventions_summary}}
46
+
47
+ ## Common Commands
48
+
49
+ {{#each commands}}
50
+ - `{{command}}` — {{description}}
51
+ {{/each}}
52
+
53
+ ## Troubleshooting
54
+
55
+ {{#each troubleshooting_notes}}
56
+ - {{issue}}: {{solution}}
57
+ {{/each}}
58
+
59
+ ---
60
+
61
+ _Generated using Wize Dev Kit `document-project` workflow_
@@ -0,0 +1,185 @@
1
+ ---
2
+ status: baseline
3
+ owner: Pepper Potts + Peggy Carter
4
+ created: {{date}}
5
+ last_refreshed: {{date}}
6
+ ---
7
+
8
+ # {{project_name}} Documentation Index
9
+
10
+ **Type:** {{repository_type}}{{#if is_multi_part}} with {{parts_count}} parts{{/if}}
11
+ **Primary Language:** {{primary_language}}
12
+ **Architecture:** {{architecture_type}}
13
+ **Last Updated:** {{date}}
14
+
15
+ ## Project Overview
16
+
17
+ {{project_description}}
18
+
19
+ {{#if is_multi_part}}
20
+
21
+ ## Project Structure
22
+
23
+ This project consists of {{parts_count}} parts:
24
+
25
+ {{#each project_parts}}
26
+
27
+ ### {{part_name}} ({{part_id}})
28
+
29
+ - **Type:** {{project_type}}
30
+ - **Location:** `{{root_path}}`
31
+ - **Tech Stack:** {{tech_stack_summary}}
32
+ - **Entry Point:** {{entry_point}}
33
+ {{/each}}
34
+
35
+ ## Cross-Part Integration
36
+
37
+ {{integration_summary}}
38
+
39
+ {{/if}}
40
+
41
+ ## Quick Reference
42
+
43
+ {{#if is_single_part}}
44
+
45
+ - **Tech Stack:** {{tech_stack_summary}}
46
+ - **Entry Point:** {{entry_point}}
47
+ - **Architecture Pattern:** {{architecture_pattern}}
48
+ - **Database:** {{database}}
49
+ - **Deployment:** {{deployment_platform}}
50
+ {{else}}
51
+ {{#each project_parts}}
52
+
53
+ ### {{part_name}} Quick Ref
54
+
55
+ - **Stack:** {{tech_stack_summary}}
56
+ - **Entry:** {{entry_point}}
57
+ - **Pattern:** {{architecture_pattern}}
58
+ {{/each}}
59
+ {{/if}}
60
+
61
+ ## Generated Documentation
62
+
63
+ ### Core Documentation
64
+
65
+ - [Project Overview](./project-overview.md) - Executive summary and high-level architecture
66
+ - [Source Tree Analysis](./source-tree-analysis.md) - Annotated directory structure
67
+
68
+ {{#if is_single_part}}
69
+
70
+ - [Architecture](./architecture.md) - Detailed technical architecture
71
+ - [Component Inventory](./component-inventory.md) - Catalog of major components{{#if has_ui_components}} and UI elements{{/if}}
72
+ - [Development Guide](./development-guide.md) - Local setup and development workflow
73
+ {{#if has_api_docs}}- [API Contracts](./api-contracts.md) - API endpoints and schemas{{/if}}
74
+ {{#if has_data_models}}- [Data Models](./data-models.md) - Database schema and models{{/if}}
75
+ {{else}}
76
+
77
+ ### Part-Specific Documentation
78
+
79
+ {{#each project_parts}}
80
+
81
+ #### {{part_name}} ({{part_id}})
82
+
83
+ - [Architecture](./architecture-{{part_id}}.md) - Technical architecture for {{part_name}}
84
+ {{#if has_components}}- [Components](./component-inventory-{{part_id}}.md) - Component catalog{{/if}}
85
+ - [Development Guide](./development-guide-{{part_id}}.md) - Setup and dev workflow
86
+ {{#if has_api}}- [API Contracts](./api-contracts-{{part_id}}.md) - API documentation{{/if}}
87
+ {{#if has_data}}- [Data Models](./data-models-{{part_id}}.md) - Data architecture{{/if}}
88
+ {{/each}}
89
+
90
+ ### Integration
91
+
92
+ - [Integration Architecture](./integration-architecture.md) - How parts communicate
93
+ - [Project Parts Metadata](./project-parts.json) - Machine-readable structure
94
+ {{/if}}
95
+
96
+ ### Optional Documentation
97
+
98
+ {{#if has_deployment_guide}}- [Deployment Guide](./deployment-guide.md) - Deployment process and infrastructure{{/if}}
99
+ {{#if has_contribution_guide}}- [Contribution Guide](./contribution-guide.md) - Contributing guidelines and standards{{/if}}
100
+
101
+ ## Brownfield Baseline
102
+
103
+ - [Overview](./overview.md)
104
+ - [Architecture Snapshot](./architecture-snapshot.md)
105
+ - [Conventions](./conventions.md)
106
+ - [Dependencies](./dependencies.md)
107
+ - [Risk Spots](./risk-spots.md)
108
+ - [Open Questions](./open-questions.md)
109
+
110
+ ## Existing Documentation
111
+
112
+ {{#if has_existing_docs}}
113
+ {{#each existing_docs}}
114
+
115
+ - [{{title}}]({{path}}) - {{description}}
116
+ {{/each}}
117
+ {{else}}
118
+ No existing documentation files were found in the project.
119
+ {{/if}}
120
+
121
+ ## Getting Started
122
+
123
+ {{#if is_single_part}}
124
+
125
+ ### Prerequisites
126
+
127
+ {{prerequisites}}
128
+
129
+ ### Setup
130
+
131
+ ```bash
132
+ {{setup_commands}}
133
+ ```
134
+
135
+ ### Run Locally
136
+
137
+ ```bash
138
+ {{run_commands}}
139
+ ```
140
+
141
+ ### Run Tests
142
+
143
+ ```bash
144
+ {{test_commands}}
145
+ ```
146
+
147
+ {{else}}
148
+ {{#each project_parts}}
149
+
150
+ ### {{part_name}} Setup
151
+
152
+ **Prerequisites:** {{prerequisites}}
153
+
154
+ **Install & Run:**
155
+
156
+ ```bash
157
+ cd {{root_path}}
158
+ {{setup_command}}
159
+ {{run_command}}
160
+ ```
161
+
162
+ {{/each}}
163
+ {{/if}}
164
+
165
+ ## For AI-Assisted Development
166
+
167
+ This documentation was generated specifically to enable AI agents to understand and extend this codebase.
168
+
169
+ ### When Planning New Features:
170
+
171
+ **UI-only features:**
172
+ {{#if is_multi_part}}→ Reference: `architecture-{{ui_part_id}}.md`, `component-inventory-{{ui_part_id}}.md`{{else}}→ Reference: `architecture.md`, `component-inventory.md`{{/if}}
173
+
174
+ **API/Backend features:**
175
+ {{#if is_multi_part}}→ Reference: `architecture-{{api_part_id}}.md`, `api-contracts-{{api_part_id}}.md`, `data-models-{{api_part_id}}.md`{{else}}→ Reference: `architecture.md`{{#if has_api_docs}}, `api-contracts.md`{{/if}}{{#if has_data_models}}, `data-models.md`{{/if}}{{/if}}
176
+
177
+ **Full-stack features:**
178
+ → Reference: All architecture docs{{#if is_multi_part}} + `integration-architecture.md`{{/if}}
179
+
180
+ **Deployment changes:**
181
+ {{#if has_deployment_guide}}→ Reference: `deployment-guide.md`{{else}}→ Review CI/CD configs in project{{/if}}
182
+
183
+ ---
184
+
185
+ _Documentation generated by Wize Dev Kit `document-project` workflow_
@@ -0,0 +1,110 @@
1
+ ---
2
+ status: baseline
3
+ owner: Pepper Potts + Peggy Carter
4
+ created: {{date}}
5
+ last_refreshed: {{date}}
6
+ ---
7
+
8
+ # {{project_name}} - Project Overview
9
+
10
+ **Date:** {{date}}
11
+ **Type:** {{project_type}}
12
+ **Architecture:** {{architecture_type}}
13
+
14
+ ## Executive Summary
15
+
16
+ {{executive_summary}}
17
+
18
+ ## Project Classification
19
+
20
+ - **Repository Type:** {{repository_type}}
21
+ - **Project Type(s):** {{project_types_list}}
22
+ - **Primary Language(s):** {{primary_languages}}
23
+ - **Architecture Pattern:** {{architecture_pattern}}
24
+
25
+ {{#if is_multi_part}}
26
+
27
+ ## Multi-Part Structure
28
+
29
+ This project consists of {{parts_count}} distinct parts:
30
+
31
+ {{#each project_parts}}
32
+
33
+ ### {{part_name}}
34
+
35
+ - **Type:** {{project_type}}
36
+ - **Location:** `{{root_path}}`
37
+ - **Purpose:** {{purpose}}
38
+ - **Tech Stack:** {{tech_stack}}
39
+ {{/each}}
40
+
41
+ ### How Parts Integrate
42
+
43
+ {{integration_description}}
44
+ {{/if}}
45
+
46
+ ## Technology Stack Summary
47
+
48
+ {{#if is_single_part}}
49
+ {{technology_table}}
50
+ {{else}}
51
+ {{#each project_parts}}
52
+
53
+ ### {{part_name}} Stack
54
+
55
+ {{technology_table}}
56
+ {{/each}}
57
+ {{/if}}
58
+
59
+ ## Key Features
60
+
61
+ {{key_features}}
62
+
63
+ ## Architecture Highlights
64
+
65
+ {{architecture_highlights}}
66
+
67
+ ## Development Overview
68
+
69
+ ### Prerequisites
70
+
71
+ {{prerequisites}}
72
+
73
+ ### Getting Started
74
+
75
+ {{getting_started_summary}}
76
+
77
+ ### Key Commands
78
+
79
+ {{#if is_single_part}}
80
+
81
+ - **Install:** `{{install_command}}`
82
+ - **Dev:** `{{dev_command}}`
83
+ - **Build:** `{{build_command}}`
84
+ - **Test:** `{{test_command}}`
85
+ {{else}}
86
+ {{#each project_parts}}
87
+
88
+ #### {{part_name}}
89
+
90
+ - **Install:** `{{install_command}}`
91
+ - **Dev:** `{{dev_command}}`
92
+ {{/each}}
93
+ {{/if}}
94
+
95
+ ## Repository Structure
96
+
97
+ {{repository_structure_summary}}
98
+
99
+ ## Documentation Map
100
+
101
+ For detailed information, see:
102
+
103
+ - [index.md](./index.md) - Master documentation index
104
+ - [architecture.md](./architecture{{#if is_multi_part}}-{{part_id}}{{/if}}.md) - Detailed architecture
105
+ - [source-tree-analysis.md](./source-tree-analysis.md) - Directory structure
106
+ - [development-guide.md](./development-guide{{#if is_multi_part}}-{{part_id}}{{/if}}.md) - Development workflow
107
+
108
+ ---
109
+
110
+ _Generated using Wize Dev Kit `document-project` workflow_