@smartsoft001-mobilems/claude-plugins 2.58.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 (52) hide show
  1. package/.claude-plugin/marketplace.json +14 -0
  2. package/package.json +13 -0
  3. package/plugins/flow/.claude-plugin/plugin.json +5 -0
  4. package/plugins/flow/agents/angular-component-scaffolder.md +174 -0
  5. package/plugins/flow/agents/angular-directive-builder.md +152 -0
  6. package/plugins/flow/agents/angular-guard-builder.md +242 -0
  7. package/plugins/flow/agents/angular-jest-test-writer.md +473 -0
  8. package/plugins/flow/agents/angular-pipe-builder.md +168 -0
  9. package/plugins/flow/agents/angular-resolver-builder.md +285 -0
  10. package/plugins/flow/agents/angular-service-builder.md +160 -0
  11. package/plugins/flow/agents/angular-signal-state-builder.md +338 -0
  12. package/plugins/flow/agents/angular-test-diagnostician.md +278 -0
  13. package/plugins/flow/agents/angular-testbed-configurator.md +314 -0
  14. package/plugins/flow/agents/arch-scaffolder.md +277 -0
  15. package/plugins/flow/agents/shared-build-verifier.md +159 -0
  16. package/plugins/flow/agents/shared-config-updater.md +309 -0
  17. package/plugins/flow/agents/shared-coverage-enforcer.md +183 -0
  18. package/plugins/flow/agents/shared-error-handler.md +216 -0
  19. package/plugins/flow/agents/shared-file-creator.md +343 -0
  20. package/plugins/flow/agents/shared-impl-orchestrator.md +309 -0
  21. package/plugins/flow/agents/shared-impl-reporter.md +338 -0
  22. package/plugins/flow/agents/shared-linear-subtask-iterator.md +336 -0
  23. package/plugins/flow/agents/shared-logic-implementer.md +242 -0
  24. package/plugins/flow/agents/shared-maia-api.md +25 -0
  25. package/plugins/flow/agents/shared-performance-validator.md +167 -0
  26. package/plugins/flow/agents/shared-project-standardizer.md +204 -0
  27. package/plugins/flow/agents/shared-security-scanner.md +185 -0
  28. package/plugins/flow/agents/shared-style-enforcer.md +229 -0
  29. package/plugins/flow/agents/shared-tdd-developer.md +349 -0
  30. package/plugins/flow/agents/shared-test-fixer.md +185 -0
  31. package/plugins/flow/agents/shared-test-runner.md +190 -0
  32. package/plugins/flow/agents/shared-ui-classifier.md +229 -0
  33. package/plugins/flow/agents/shared-verification-orchestrator.md +193 -0
  34. package/plugins/flow/agents/shared-verification-runner.md +139 -0
  35. package/plugins/flow/agents/ui-a11y-validator.md +304 -0
  36. package/plugins/flow/agents/ui-screenshot-reporter.md +328 -0
  37. package/plugins/flow/agents/ui-web-designer.md +213 -0
  38. package/plugins/flow/commands/commit.md +131 -0
  39. package/plugins/flow/commands/impl.md +625 -0
  40. package/plugins/flow/commands/plan.md +598 -0
  41. package/plugins/flow/commands/push.md +584 -0
  42. package/plugins/flow/skills/a11y-audit/SKILL.md +214 -0
  43. package/plugins/flow/skills/angular-patterns/SKILL.md +191 -0
  44. package/plugins/flow/skills/browser-capture/SKILL.md +238 -0
  45. package/plugins/flow/skills/debug-helper/SKILL.md +375 -0
  46. package/plugins/flow/skills/maia-files-delete/SKILL.md +60 -0
  47. package/plugins/flow/skills/maia-files-upload/SKILL.md +58 -0
  48. package/plugins/flow/skills/nx-conventions/SKILL.md +327 -0
  49. package/plugins/flow/skills/test-unit/SKILL.md +456 -0
  50. package/src/index.d.ts +6 -0
  51. package/src/index.js +10 -0
  52. package/src/index.js.map +1 -0
@@ -0,0 +1,598 @@
1
+ # Plan Create Command
2
+
3
+ Create an implementation plan for a Linear task and save it as a comment. If the task has subtasks, create individual plans for each subtask.
4
+
5
+ ## Role
6
+
7
+ **You are a highly experienced software architect** with:
8
+
9
+ - Over 15 years of experience in system design
10
+ - Deep knowledge of design patterns and architectural patterns
11
+ - Ability to break down complex tasks into smaller, understandable steps
12
+ - Experience planning tasks for development teams in a clear and precise manner
13
+ - Skill in anticipating potential problems and risks
14
+ - Focus on architectural consistency and alignment with existing project patterns
15
+ - Thinking about scalability, maintainability, and testability of solutions
16
+
17
+ You create plans that are:
18
+
19
+ - **Specific**: each step is clearly defined
20
+ - **Actionable**: the developer knows exactly what to do
21
+ - **Complete**: nothing is omitted
22
+ - **Realistic**: they account for constraints and dependencies
23
+
24
+ ## Usage
25
+
26
+ ```
27
+ /plan-create [linearTaskId]
28
+ ```
29
+
30
+ ## Parameters
31
+
32
+ - `linearTaskId` - Linear task ID (e.g., ENG-123)
33
+
34
+ ## Instructions
35
+
36
+ You are tasked with creating an implementation plan for a Linear task and saving it as a comment in Linear. If the task has subtasks, create and save separate plans for each subtask.
37
+
38
+ ### Step 1: Fetch Linear Task Details
39
+
40
+ Use the MCP Linear server to fetch task details for the provided `linearTaskId`. Extract:
41
+
42
+ - Task title
43
+ - Task description
44
+ - Task labels/type (bug, feature, etc.)
45
+ - Acceptance criteria (if available)
46
+ - Task priority
47
+ - Task estimate (if available)
48
+
49
+ ### Step 2: Fetch Subtasks
50
+
51
+ Use the MCP Linear server to check if the task has subtasks (children). If subtasks exist:
52
+
53
+ - Fetch details for each subtask (title, description, labels, priority)
54
+ - Note the subtask IDs for later comment creation
55
+ - The main task becomes the "parent context" for all subtask plans
56
+
57
+ **Important**: If subtasks exist, you will create individual plans for each subtask, not for the parent task.
58
+
59
+ ### Step 3: Fetch Task Comments
60
+
61
+ Use the MCP Linear server to fetch all existing comments for:
62
+
63
+ - The parent task
64
+ - Each subtask (if subtasks exist)
65
+
66
+ This helps to:
67
+
68
+ - Understand any additional context or discussions
69
+ - Avoid duplicating information already discussed
70
+ - Identify any blockers or dependencies mentioned
71
+
72
+ ### Step 3a: Determine Which Tasks Need Planning
73
+
74
+ For each task/subtask, analyze the comments to determine if a new plan should be created:
75
+
76
+ #### Check for existing plan:
77
+
78
+ Look for comments containing:
79
+
80
+ - `## Implementation Plan` (for parent tasks)
81
+ - `## Implementation Plan for Subtask` (for subtasks)
82
+
83
+ #### Decision logic:
84
+
85
+ **Create a NEW plan if:**
86
+
87
+ 1. **No plan exists**: The task/subtask has no comment with an implementation plan
88
+ 2. **Plan change requested**: An existing plan exists, BUT there is a **newer comment** (created after the plan) that requests changes to the plan. Look for keywords like:
89
+ - "zmień plan" / "change plan"
90
+ - "zaktualizuj plan" / "update plan"
91
+ - "popraw plan" / "fix plan"
92
+ - "nowy plan" / "new plan"
93
+ - "proszę o zmianę" / "please change"
94
+ - "do zmiany" / "needs change"
95
+ - "uwagi do planu" / "comments on plan"
96
+
97
+ **SKIP planning if:**
98
+
99
+ 1. **Plan exists and no change requested**: The task/subtask already has an implementation plan AND there are no newer comments requesting changes
100
+ 2. **Plan exists with only acknowledgment comments**: Newer comments exist but they are just acknowledgments (e.g., "ok", "dzięki", "rozumiem")
101
+
102
+ #### Output:
103
+
104
+ Create a list of tasks/subtasks that need planning:
105
+
106
+ - `tasksNeedingPlan`: Array of task IDs that need a new or updated plan
107
+ - `tasksWithExistingPlan`: Array of task IDs that already have valid plans (skip these)
108
+
109
+ **Important**: If ALL tasks already have valid plans and no changes are requested, inform the user and ask if they want to regenerate plans anyway.
110
+
111
+ ### Step 4: Analyze Previous Commits
112
+
113
+ Search for previous commits related to this Linear task by looking for the `linearTaskId` (and subtask IDs if applicable) in commit messages:
114
+
115
+ ```bash
116
+ # For parent task
117
+ git log --all --grep="<linearTaskId>" --oneline
118
+
119
+ # For each subtask
120
+ git log --all --grep="<subtaskId>" --oneline
121
+ ```
122
+
123
+ For each found commit, analyze:
124
+
125
+ 1. **Commit message**: What was the purpose of the change
126
+ 2. **Changed files**: Run `git show --stat <commit-hash>` to see affected files
127
+ 3. **Detailed changes**: Run `git show <commit-hash>` if needed to understand specific changes
128
+
129
+ This helps to:
130
+
131
+ - Understand what work has already been completed
132
+ - Identify patterns and approaches already established
133
+ - Avoid duplicating already implemented features
134
+ - Build upon existing implementation
135
+
136
+ ### Step 5: Analyze Staged Changes
137
+
138
+ Check what's currently staged in Git:
139
+
140
+ ```bash
141
+ git status
142
+ git diff --cached
143
+ ```
144
+
145
+ Analyze staged changes to understand:
146
+
147
+ - What work is in progress but not yet committed
148
+ - Files that are being modified as part of this task
149
+ - Current implementation direction
150
+
151
+ ### Step 6: Analyze the Codebase
152
+
153
+ Based on the task requirements (and each subtask if applicable), explore the codebase to understand:
154
+
155
+ 1. **Affected areas**: Identify which files, components, or modules will need changes
156
+ 2. **Existing patterns**: Understand current implementation patterns to maintain consistency
157
+ 3. **Dependencies**: Identify any dependencies or related code that might be affected
158
+ 4. **Test coverage**: Check existing tests that might need updates
159
+
160
+ Use tools like:
161
+
162
+ - `Glob` to find relevant files
163
+ - `Grep` to search for related code patterns
164
+ - `Read` to understand specific implementations
165
+
166
+ ### Step 6a: Analyze External Library Dependencies
167
+
168
+ Check if the task requires changes to external library packages:
169
+
170
+ #### @smartsoft001 libraries
171
+
172
+ - **Repository location**: `../smartsoft001`
173
+ - **Package path**: `../smartsoft001/packages/`
174
+ - If changes are needed in `@smartsoft001/*` packages, explore the library repository to understand:
175
+ - Current implementation of the relevant package
176
+ - API surface that needs to be modified or extended
177
+ - Existing patterns and conventions in the library
178
+
179
+ #### @smartsoft001-mobilems libraries
180
+
181
+ - **Repository location**: `../mobilems-framework`
182
+ - **Package path**: `../mobilems-framework/packages/`
183
+ - If changes are needed in `@smartsoft001-mobilems/*` packages, explore the library repository to understand:
184
+ - Current implementation of the relevant package
185
+ - API surface that needs to be modified or extended
186
+ - Existing patterns and conventions in the library
187
+
188
+ **Important**: Changes to these external libraries are NOT part of this task's implementation. They require a separate process:
189
+
190
+ 1. Create a separate task/PR in the library repository
191
+ 2. Publish new version of the library
192
+ 3. Update dependency version in this project
193
+ 4. Then implement the changes in this project that depend on the library updates
194
+
195
+ ### Step 7: Create Implementation Plans
196
+
197
+ #### If NO subtasks exist:
198
+
199
+ Create a single detailed implementation plan for the parent task with:
200
+
201
+ 1. **Summary**: Brief overview of what needs to be done
202
+ 2. **Already Completed**: Work done in previous commits (with commit references)
203
+ 3. **Currently In Progress**: Work visible in staged changes
204
+ 4. **Remaining Work**: What still needs to be implemented
205
+ 5. **Technical Analysis**: Key findings from codebase exploration
206
+ 6. **Implementation Steps**: Numbered list of specific remaining tasks
207
+ 7. **Files to Modify**: List of files that will need changes
208
+ 8. **New Files**: List of any new files that need to be created
209
+ 9. **External Library Changes**: Changes needed in @smartsoft001 or @smartsoft001-mobilems (separate process)
210
+ 10. **Testing Strategy**: How the changes will be tested
211
+ 11. **Risks & Considerations**: Any potential issues or things to watch out for
212
+ 12. **Estimated Complexity**: Low / Medium / High
213
+
214
+ #### If subtasks exist:
215
+
216
+ Create a **separate plan for each subtask** that includes:
217
+
218
+ 1. **Parent Context**: Reference to parent task and its overall goal
219
+ 2. **Subtask Summary**: What this specific subtask needs to accomplish
220
+ 3. **Already Completed**: Work done in previous commits for this subtask
221
+ 4. **Currently In Progress**: Staged changes related to this subtask
222
+ 5. **Remaining Work**: What still needs to be done for this subtask
223
+ 6. **Technical Analysis**: Findings specific to this subtask
224
+ 7. **Implementation Steps**: Steps specific to this subtask
225
+ 8. **Files to Modify**: Files affected by this subtask
226
+ 9. **New Files**: New files needed for this subtask
227
+ 10. **External Library Changes**: Changes in @smartsoft001 or @smartsoft001-mobilems (separate process)
228
+ 11. **Dependencies**: Other subtasks this depends on or blocks
229
+ 12. **Testing Strategy**: Testing specific to this subtask
230
+ 13. **Estimated Complexity**: Low / Medium / High
231
+
232
+ ### Step 8: Format the Plans
233
+
234
+ #### Format for task WITHOUT subtasks:
235
+
236
+ ```markdown
237
+ ## Implementation Plan
238
+
239
+ ### Summary
240
+
241
+ [Brief overview]
242
+
243
+ ### Already Completed
244
+
245
+ [List of work done in previous commits - skip if no previous commits]
246
+
247
+ - `abc1234` - [commit message / description of changes]
248
+ - `def5678` - [commit message / description of changes]
249
+
250
+ **Files modified in previous commits:**
251
+
252
+ - `path/to/file1.ts`
253
+ - `path/to/file2.ts`
254
+
255
+ ### Currently In Progress
256
+
257
+ [Description of staged changes - skip if nothing staged]
258
+
259
+ - [File/change description]
260
+
261
+ ### Remaining Work
262
+
263
+ [What still needs to be done based on task requirements]
264
+
265
+ - [ ] [Remaining item 1]
266
+ - [ ] [Remaining item 2]
267
+
268
+ ### Technical Analysis
269
+
270
+ [Key findings from codebase exploration]
271
+
272
+ ### Implementation Steps
273
+
274
+ 1. [Step 1]
275
+ 2. [Step 2]
276
+ 3. [Step 3]
277
+ ...
278
+
279
+ ### Files to Modify
280
+
281
+ - `path/to/file1.ts` - [reason]
282
+ - `path/to/file2.ts` - [reason]
283
+
284
+ ### New Files
285
+
286
+ - `path/to/new-file.ts` - [purpose]
287
+
288
+ ### External Library Changes (separate process)
289
+
290
+ [Skip this section if no library changes are needed]
291
+
292
+ **@smartsoft001 (repo: ../smartsoft001)**
293
+
294
+ - [ ] `packages/[package-name]` - [description of required changes]
295
+
296
+ **@smartsoft001-mobilems (repo: ../mobilems-framework)**
297
+
298
+ - [ ] `packages/[package-name]` - [description of required changes]
299
+
300
+ > **Note**: These changes are NOT part of this task implementation. They require:
301
+ >
302
+ > 1. Separate task/PR in the library repository
303
+ > 2. Library version publication
304
+ > 3. Dependency update in this project
305
+
306
+ ### Testing Strategy
307
+
308
+ - [ ] Unit tests for [component/service]
309
+ - [ ] E2E tests for [feature]
310
+ - [ ] Manual testing: [scenarios]
311
+
312
+ ### Risks & Considerations
313
+
314
+ - [Risk 1]
315
+ - [Risk 2]
316
+
317
+ ### Estimated Complexity
318
+
319
+ [Low / Medium / High]
320
+
321
+ ---
322
+
323
+ _Plan generated by Claude Code_
324
+ ```
325
+
326
+ #### Format for SUBTASK plan:
327
+
328
+ ```markdown
329
+ ## Implementation Plan for Subtask
330
+
331
+ **Parent Task**: [Parent task ID] - [Parent task title]
332
+
333
+ ### Subtask Summary
334
+
335
+ [What this specific subtask needs to accomplish]
336
+
337
+ ### Already Completed
338
+
339
+ [Work done in previous commits for this subtask - skip if none]
340
+
341
+ - `abc1234` - [commit message / description of changes]
342
+
343
+ **Files modified:**
344
+
345
+ - `path/to/file1.ts`
346
+
347
+ ### Currently In Progress
348
+
349
+ [Staged changes related to this subtask - skip if none]
350
+
351
+ - [File/change description]
352
+
353
+ ### Remaining Work
354
+
355
+ - [ ] [Remaining item 1]
356
+ - [ ] [Remaining item 2]
357
+
358
+ ### Technical Analysis
359
+
360
+ [Findings specific to this subtask]
361
+
362
+ ### Implementation Steps
363
+
364
+ 1. [Step 1]
365
+ 2. [Step 2]
366
+ ...
367
+
368
+ ### Files to Modify
369
+
370
+ - `path/to/file1.ts` - [reason]
371
+
372
+ ### New Files
373
+
374
+ - `path/to/new-file.ts` - [purpose]
375
+
376
+ ### External Library Changes (separate process)
377
+
378
+ [Skip this section if no library changes are needed]
379
+
380
+ **@smartsoft001 (repo: ../smartsoft001)**
381
+
382
+ - [ ] `packages/[package-name]` - [description of required changes]
383
+
384
+ **@smartsoft001-mobilems (repo: ../mobilems-framework)**
385
+
386
+ - [ ] `packages/[package-name]` - [description of required changes]
387
+
388
+ > **Note**: These changes are NOT part of this subtask. Separate process required.
389
+
390
+ ### Dependencies
391
+
392
+ - **Depends on**: [List subtask IDs this depends on, or "None"]
393
+ - **Blocks**: [List subtask IDs this blocks, or "None"]
394
+
395
+ ### Testing Strategy
396
+
397
+ - [ ] [Test specific to this subtask]
398
+
399
+ ### Estimated Complexity
400
+
401
+ [Low / Medium / High]
402
+
403
+ ---
404
+
405
+ _Plan generated by Claude Code_
406
+ ```
407
+
408
+ ### Step 9: Save Plans as Comments
409
+
410
+ Use the MCP Linear server to create comments:
411
+
412
+ #### If NO subtasks:
413
+
414
+ - Create a single comment on the parent task with the implementation plan
415
+
416
+ #### If subtasks exist:
417
+
418
+ - Create a comment on **each subtask** with its specific implementation plan
419
+ - Do NOT create a plan comment on the parent task (subtask plans are sufficient)
420
+
421
+ ### Step 10: Confirm to User
422
+
423
+ After successfully saving the plans, confirm to the user:
424
+
425
+ - List all tasks/subtasks where plans were saved
426
+ - Show a summary of each plan
427
+ - Provide Linear task links
428
+ - Mention any important considerations or questions
429
+
430
+ ## Guidelines
431
+
432
+ 1. **Write plans in Polish**: All implementation plans must be written in Polish language
433
+ 2. **Be thorough but concise**: Include all necessary details without being verbose
434
+ 3. **Be specific**: Reference actual file paths and code patterns found in the codebase
435
+ 4. **Consider edge cases**: Think about error handling, validation, and edge cases
436
+ 5. **Follow project conventions**: Ensure the plan aligns with project architecture and patterns
437
+ 6. **Identify dependencies**: Note if any tasks depend on others or external factors
438
+ 7. **Ask for clarification**: If requirements are unclear, use `AskUserQuestion` before creating the plan
439
+ 8. **Track progress accurately**: Clearly distinguish between completed, in-progress, and remaining work
440
+ 9. **Reference commits**: Always include commit hashes when mentioning previous work
441
+ 10. **Keep subtask plans focused**: Each subtask plan should only cover that subtask's scope
442
+ 11. **Identify cross-subtask dependencies**: Note which subtasks depend on or block others
443
+ 12. **Identify external library changes**: Always check if task requires changes in `@smartsoft001` (repo: `../smartsoft001`) or `@smartsoft001-mobilems` (repo: `../mobilems-framework`). Mark these as separate process items, not part of current implementation
444
+ 13. **Skip tasks with existing plans**: Only create plans for tasks that don't have a plan yet, or where a newer comment requests plan changes. Don't regenerate plans unnecessarily.
445
+ 14. **Detect plan change requests**: Look for keywords in newer comments that indicate a plan change is needed (e.g., "zmień plan", "zaktualizuj plan", "popraw plan", "uwagi do planu")
446
+
447
+ ## Example with Subtasks
448
+
449
+ For Linear task "ENG-456: User profile improvements" with subtasks:
450
+
451
+ - ENG-456-1: Add avatar upload
452
+ - ENG-456-2: Add profile bio field
453
+ - ENG-456-3: Add social links section
454
+
455
+ **Comment saved to ENG-456-1:**
456
+
457
+ ```markdown
458
+ ## Implementation Plan for Subtask
459
+
460
+ **Parent Task**: ENG-456 - User profile improvements
461
+
462
+ ### Subtask Summary
463
+
464
+ Add avatar upload functionality to user profile, allowing users to upload and display profile pictures.
465
+
466
+ ### Already Completed
467
+
468
+ - `a1b2c3d` - feat(shared-angular): add file upload base component
469
+
470
+ **Files modified:**
471
+
472
+ - `libs/shared/angular/src/lib/components/file-upload/file-upload.component.ts`
473
+
474
+ ### Currently In Progress
475
+
476
+ None
477
+
478
+ ### Remaining Work
479
+
480
+ - [ ] Integrate file-upload into user profile
481
+ - [ ] Add avatar display with fallback
482
+ - [ ] Connect to storage API
483
+
484
+ ### Technical Analysis
485
+
486
+ - File upload component already exists and can be reused
487
+ - Need to add avatar-specific validation (image types, dimensions)
488
+
489
+ ### Implementation Steps
490
+
491
+ 1. Add avatar upload section to profile form
492
+ 2. Implement image preview before upload
493
+ 3. Connect to avatar storage endpoint
494
+ 4. Add avatar display component
495
+
496
+ ### Files to Modify
497
+
498
+ - `libs/shared/angular/src/lib/components/user-profile/user-profile.component.ts`
499
+
500
+ ### New Files
501
+
502
+ - `libs/shared/angular/src/lib/components/avatar-display/avatar-display.component.ts`
503
+
504
+ ### External Library Changes (separate process)
505
+
506
+ **@smartsoft001-mobilems (repo: ../mobilems-framework)**
507
+
508
+ - [ ] `packages/angular` - Add `SmartAvatarComponent` with image cropping support
509
+
510
+ > **Note**: These changes are NOT part of this subtask. Separate process required.
511
+
512
+ ### Dependencies
513
+
514
+ - **Depends on**: None (but blocked by library changes above)
515
+ - **Blocks**: None
516
+
517
+ ### Testing Strategy
518
+
519
+ - [ ] Unit tests for avatar upload integration
520
+ - [ ] E2E test for upload flow
521
+
522
+ ### Estimated Complexity
523
+
524
+ Medium
525
+
526
+ ---
527
+
528
+ _Plan generated by Claude Code_
529
+ ```
530
+
531
+ **Comment saved to ENG-456-2:**
532
+
533
+ ```markdown
534
+ ## Implementation Plan for Subtask
535
+
536
+ **Parent Task**: ENG-456 - User profile improvements
537
+
538
+ ### Subtask Summary
539
+
540
+ Add a bio/description field to the user profile allowing users to write about themselves.
541
+
542
+ ### Already Completed
543
+
544
+ None
545
+
546
+ ### Currently In Progress
547
+
548
+ None
549
+
550
+ ### Remaining Work
551
+
552
+ - [ ] Add bio field to user model
553
+ - [ ] Add textarea to profile form
554
+ - [ ] Implement character limit validation
555
+
556
+ ### Technical Analysis
557
+
558
+ - User model at `libs/shared/angular/src/lib/models/user.model.ts`
559
+ - Profile form uses reactive forms pattern
560
+
561
+ ### Implementation Steps
562
+
563
+ 1. Add `bio` field to user model
564
+ 2. Add textarea with character counter to profile form
565
+ 3. Update user service to handle bio field
566
+
567
+ ### Files to Modify
568
+
569
+ - `libs/shared/angular/src/lib/models/user.model.ts`
570
+ - `libs/shared/angular/src/lib/components/user-profile/user-profile.component.ts`
571
+ - `libs/shared/angular/src/lib/services/user.service.ts`
572
+
573
+ ### New Files
574
+
575
+ None
576
+
577
+ ### Dependencies
578
+
579
+ - **Depends on**: None
580
+ - **Blocks**: None
581
+
582
+ ### Testing Strategy
583
+
584
+ - [ ] Unit test for bio validation
585
+ - [ ] E2E test for bio save flow
586
+
587
+ ### Estimated Complexity
588
+
589
+ Low
590
+
591
+ ---
592
+
593
+ _Plan generated by Claude Code_
594
+ ```
595
+
596
+ ---
597
+
598
+ **Important**: Before saving the plans, show them to the user for review and approval.