sad-mcp 2.2.4 → 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)
|
|
@@ -789,6 +798,9 @@ Available wireframe classes (for §WF): `wf-screen`, `wf-heading`, `wf-row`, `wf
|
|
|
789
798
|
<title>[System] — Use Case Diagram</title>
|
|
790
799
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;600&family=IBM+Plex+Mono:wght@400;700&display=swap" rel="stylesheet">
|
|
791
800
|
<link href="https://themathbible.com/sad-mcp/uc-diagram-common.css" rel="stylesheet">
|
|
801
|
+
<!-- REQUIRED: uc-diagram-common.css sets display:flex on .diagram-part, which overrides
|
|
802
|
+
the browser's [hidden]{display:none}. This one-liner restores correct tab switching. -->
|
|
803
|
+
<style>[hidden] { display: none !important; }</style>
|
|
792
804
|
</head>
|
|
793
805
|
<body>
|
|
794
806
|
<!-- Tab bar (only when split) -->
|
|
@@ -826,6 +838,13 @@ Available wireframe classes (for §WF): `wf-screen`, `wf-heading`, `wf-row`, `wf
|
|
|
826
838
|
</div>
|
|
827
839
|
</div>
|
|
828
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
|
+
|
|
829
848
|
<!-- UC modal (body is populated by openUcModal in common.js; starts empty) -->
|
|
830
849
|
<div id="uc-modal" class="uc-modal" hidden role="dialog" aria-modal="true">
|
|
831
850
|
<div class="uc-modal-backdrop" onclick="closeUcModal()"></div>
|
|
@@ -900,6 +919,7 @@ Briefly report: actor count, use case count, include/extend count, whether split
|
|
|
900
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`.
|
|
901
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.
|
|
902
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.
|
|
903
923
|
- [ ] Every «include» and «extend» has a written §4 justification block; any that cannot be filled in has been deleted.
|
|
904
924
|
- [ ] No «include» with exactly one incoming arrow — every include target has ≥2 bases AND zero actor associations.
|
|
905
925
|
- [ ] No generic "ניהול הגדרות מערכת" or combined-entity UCs; each entity has its own UC.
|