sad-mcp 0.1.27 → 0.1.29
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/dist/prompts.js
CHANGED
|
@@ -21,9 +21,9 @@ const SKILLS = [
|
|
|
21
21
|
description: "Create professional UML use case diagrams as interactive HTML/SVG files",
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
id: "bpmn-
|
|
24
|
+
id: "bpmn-analysis",
|
|
25
25
|
name: "BPMN Process Analysis",
|
|
26
|
-
description: "Analyze a business process and produce a structured BPMN 1.1 model for review",
|
|
26
|
+
description: "Analyze a business process and produce a structured BPMN 1.1 model for review. Outputs a text-based analysis report — not a diagram.",
|
|
27
27
|
},
|
|
28
28
|
];
|
|
29
29
|
// Internal skills: loadable via GetPrompt but not shown in ListPrompts
|
package/package.json
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: bpmn-
|
|
3
|
-
description: Analyze a business process and produce a structured BPMN 1.1 model for review. Outputs
|
|
2
|
+
name: bpmn-analysis
|
|
3
|
+
description: Analyze a business process and produce a structured BPMN 1.1 model for review. Outputs the analysis directly in the conversation — no files.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# BPMN Process Analysis
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
**You are producing an analysis, not a diagram. Do not generate any visual diagram, SVG, or drawing.**
|
|
8
|
+
You are a business process analyst. Analyze the process description and produce a structured textual model directly in the conversation. Do NOT create any files. Do NOT write any code. Do NOT generate HTML, SVG, or any visual output. Your entire response is plain text in the conversation.
|
|
11
9
|
|
|
12
10
|
## Critical Modeling Rules
|
|
13
11
|
|
|
@@ -74,50 +72,57 @@ List transient data flowing between tasks (e.g., "בקשת ביטול", "חשב
|
|
|
74
72
|
|
|
75
73
|
## Output Format
|
|
76
74
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
###
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
75
|
+
Respond DIRECTLY in the conversation. Do NOT create any files. Structure your response as follows:
|
|
76
|
+
|
|
77
|
+
### Section 1: מבנה התהליך (Structure)
|
|
78
|
+
|
|
79
|
+
Show pools and lanes as a hierarchy:
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
מאגרים (Pools):
|
|
83
|
+
├── לקוח (מאגר חיצוני — פועל באופן עצמאי)
|
|
84
|
+
└── חברת אישימוטו (מאגר ארגוני)
|
|
85
|
+
├── שירות לקוחות
|
|
86
|
+
├── שימור לקוחות
|
|
87
|
+
└── הנהלת חשבונות
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Section 2: זרימת העבודה (Workflow)
|
|
91
|
+
|
|
92
|
+
For each pool and lane, show the task flow as a numbered list with gateway branches indented:
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
שירות לקוחות:
|
|
96
|
+
1. קבלת פנייה ובדיקת תאריך
|
|
97
|
+
2. ⬦ XOR: כמה ימים מאז הרכישה?
|
|
98
|
+
├── ≤ 7 ימים → 3. ביטול מנוי → 4. חסימת חשבון
|
|
99
|
+
├── 7-14 ימים → העברה לשימור לקוחות
|
|
100
|
+
└── > 14 ימים → 5. הודעה על דחיית הבקשה
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Section 3: שערים (Gateways)
|
|
104
|
+
|
|
105
|
+
Table of all gateways: ID, type (XOR/AND/OR), question, branches.
|
|
106
|
+
|
|
107
|
+
### Section 4: מאגרי נתונים (Data Stores)
|
|
108
|
+
|
|
109
|
+
Each data store with its connected tasks (which tasks read from it, which write to it).
|
|
110
|
+
|
|
111
|
+
### Section 5: אובייקטי נתונים (Data Objects)
|
|
112
|
+
|
|
113
|
+
Each data object with source task and target task.
|
|
114
|
+
|
|
115
|
+
### Section 6: זרימות הודעות (Message Flows)
|
|
116
|
+
|
|
117
|
+
Between which pools, what's communicated, direction.
|
|
118
|
+
|
|
119
|
+
### Section 7: הנחות ושאלות פתוחות (Assumptions & Open Questions)
|
|
120
|
+
|
|
121
|
+
List assumptions made and questions that need clarification.
|
|
122
|
+
|
|
123
|
+
### Section 8: מודל JSON
|
|
124
|
+
|
|
125
|
+
Output the complete structured model as a JSON code block. This is the machine-readable model that will be used for rendering later.
|
|
121
126
|
|
|
122
127
|
```json
|
|
123
128
|
{
|
|
@@ -202,11 +207,11 @@ Embed the structured model in a `<script type="application/json" id="bpmn-model"
|
|
|
202
207
|
}
|
|
203
208
|
```
|
|
204
209
|
|
|
205
|
-
## After
|
|
210
|
+
## After the Analysis
|
|
206
211
|
|
|
207
|
-
|
|
212
|
+
End your response with:
|
|
208
213
|
|
|
209
|
-
**"
|
|
214
|
+
**"זהו הניתוח המבני של התהליך. אפשר לבקש תיקונים או שינויים. כשהמודל מאושר, אפשר לבקש ממני לצייר את דיאגרמת ה-BPMN."**
|
|
210
215
|
|
|
211
216
|
## Hebrew Language Guidelines
|
|
212
217
|
|
|
File without changes
|