sad-mcp 0.1.28 → 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/package.json +1 -1
- package/skills/bpmn-analysis/SKILL.md +56 -63
package/package.json
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: bpmn-analysis
|
|
3
|
-
description: Analyze a business process and produce a structured BPMN 1.1 model for review. Outputs
|
|
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
|
-
You are a business process analyst.
|
|
9
|
-
|
|
10
|
-
## CRITICAL CONSTRAINT
|
|
11
|
-
|
|
12
|
-
**DO NOT generate any visual diagram.** Your output is a TEXT REPORT in HTML format using only headings, paragraphs, tables, and lists. The HTML file MUST NOT contain any `<svg>`, `<canvas>`, `<img>`, `<polygon>`, `<rect>`, `<circle>`, `<line>`, `<path>`, or `<polyline>` tags. No drawings. No graphics. Only styled text.
|
|
13
|
-
|
|
14
|
-
If you find yourself writing SVG or drawing shapes — STOP. You are violating the instructions. Go back and produce a text-based analysis.
|
|
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.
|
|
15
9
|
|
|
16
10
|
## Critical Modeling Rules
|
|
17
11
|
|
|
@@ -78,54 +72,57 @@ List transient data flowing between tasks (e.g., "בקשת ביטול", "חשב
|
|
|
78
72
|
|
|
79
73
|
## Output Format
|
|
80
74
|
|
|
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
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
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.
|
|
129
126
|
|
|
130
127
|
```json
|
|
131
128
|
{
|
|
@@ -210,15 +207,11 @@ Embed the structured model in a `<script type="application/json" id="bpmn-model"
|
|
|
210
207
|
}
|
|
211
208
|
```
|
|
212
209
|
|
|
213
|
-
## After
|
|
214
|
-
|
|
215
|
-
Tell the user in the conversation (not in the HTML):
|
|
216
|
-
|
|
217
|
-
**"יצרתי ניתוח מבני של התהליך. אפשר לעיין בקובץ ה-HTML ולבדוק שהמודל נכון. כשהמודל מאושר, אפשר לבקש ממני לצייר את דיאגרמת ה-BPMN."**
|
|
210
|
+
## After the Analysis
|
|
218
211
|
|
|
219
|
-
|
|
212
|
+
End your response with:
|
|
220
213
|
|
|
221
|
-
|
|
214
|
+
**"זהו הניתוח המבני של התהליך. אפשר לבקש תיקונים או שינויים. כשהמודל מאושר, אפשר לבקש ממני לצייר את דיאגרמת ה-BPMN."**
|
|
222
215
|
|
|
223
216
|
## Hebrew Language Guidelines
|
|
224
217
|
|