sad-mcp 2.2.5 → 2.2.6
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.
package/package.json
CHANGED
|
@@ -164,6 +164,15 @@ UC documentation: [uc-id]
|
|
|
164
164
|
scenarios:
|
|
165
165
|
- id: sc-happy, name: "מסלול מרכזי"
|
|
166
166
|
flow:
|
|
167
|
+
Write 5–10 concrete steps. Actor steps name specific data entered or a specific
|
|
168
|
+
action taken — never "ממלא טופס" or "שולח בקשה" alone. System steps name the
|
|
169
|
+
specific validation performed, state change made, or feedback shown — never
|
|
170
|
+
"מעבד את הבקשה" alone. Each step must be one observable action; split
|
|
171
|
+
compound actions into separate steps.
|
|
172
|
+
Examples of sufficient granularity:
|
|
173
|
+
[actor] מזין מספר סטודנט, שם פרטי, שם משפחה וכתובת דוא"ל
|
|
174
|
+
[system] מוודא כי מספר הסטודנט אינו קיים במערכת
|
|
175
|
+
[system] שומר את הרשומה עם סטטוס "ממתין לאישור" ומציג הודעת אישור
|
|
167
176
|
1. [actor:primaryActor] ___________________
|
|
168
177
|
2. [system] ___________________
|
|
169
178
|
3. [include:uc-xxx] ___________________ (only if §4.2 gate passed)
|
|
@@ -829,6 +838,13 @@ Available wireframe classes (for §WF): `wf-screen`, `wf-heading`, `wf-row`, `wf
|
|
|
829
838
|
</div>
|
|
830
839
|
</div>
|
|
831
840
|
|
|
841
|
+
<!-- User stories summary — populated automatically by renderUserStoriesSummary()
|
|
842
|
+
in common.js, which deduplicates across all UCs. Do not populate inline. -->
|
|
843
|
+
<div id="user-stories-panel" class="user-stories-panel" hidden>
|
|
844
|
+
<h3>סיפורי משתמש</h3>
|
|
845
|
+
<ul id="user-stories-list"></ul>
|
|
846
|
+
</div>
|
|
847
|
+
|
|
832
848
|
<!-- UC modal (body is populated by openUcModal in common.js; starts empty) -->
|
|
833
849
|
<div id="uc-modal" class="uc-modal" hidden role="dialog" aria-modal="true">
|
|
834
850
|
<div class="uc-modal-backdrop" onclick="closeUcModal()"></div>
|
|
@@ -903,6 +919,7 @@ Briefly report: actor count, use case count, include/extend count, whether split
|
|
|
903
919
|
- [ ] Every actor-UC association has a written §4.1 justification block (role, initiates? one-line "why"); every UC has ≥1 association with `initiates = yes`.
|
|
904
920
|
- [ ] Every association line carries a transparent click-hitbox (stroke-width ≥12, `data-conn-id`) wired to `showDesc(id,'assoc',event)`; `assocDescriptions` entry exists for each id.
|
|
905
921
|
- [ ] `assumptions` and `openQuestions` arrays are present in `diagramModel`; the HTML renders the bottom panel whenever either is non-empty.
|
|
922
|
+
- [ ] `#user-stories-panel` / `#user-stories-list` elements are present in the HTML; `renderUserStoriesSummary()` (called automatically) will populate them with a deduplicated list of all user stories across all UCs. Do not manually populate this list.
|
|
906
923
|
- [ ] Every «include» and «extend» has a written §4 justification block; any that cannot be filled in has been deleted.
|
|
907
924
|
- [ ] No «include» with exactly one incoming arrow — every include target has ≥2 bases AND zero actor associations.
|
|
908
925
|
- [ ] No generic "ניהול הגדרות מערכת" or combined-entity UCs; each entity has its own UC.
|