@cleverpeople/my-skills 1.3.4 → 1.3.5
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/README.md +88 -88
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@ npm install @cleverpeople/my-skills
|
|
|
10
10
|
|
|
11
11
|
## Included skills
|
|
12
12
|
|
|
13
|
-
- `Defect-Risk-Analyzer`
|
|
14
13
|
- `Requirement-Summarizer`
|
|
15
14
|
- `Test-Case-Generator`
|
|
15
|
+
- `Defect-Risk-Analyzer`
|
|
16
16
|
|
|
17
17
|
After installation, the package files are available in your local `node_modules/my-skills/` folder.
|
|
18
18
|
|
|
@@ -27,92 +27,7 @@ Each skill is published as a folder containing a `SKILL.md` file with structured
|
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
30
|
-
## Skill 1:
|
|
31
|
-
|
|
32
|
-
### Description
|
|
33
|
-
|
|
34
|
-
Analyze testing quality metrics and determine project risk level before release.
|
|
35
|
-
|
|
36
|
-
### Purpose
|
|
37
|
-
|
|
38
|
-
Provide data-driven risk assessment and release readiness recommendations.
|
|
39
|
-
|
|
40
|
-
### Input Schema
|
|
41
|
-
|
|
42
|
-
```json
|
|
43
|
-
{
|
|
44
|
-
"project_name": "string",
|
|
45
|
-
"total_test_cases": "number",
|
|
46
|
-
"passed_test_cases": "number",
|
|
47
|
-
"failed_test_cases": "number",
|
|
48
|
-
"blocked_test_cases": "number",
|
|
49
|
-
"test_coverage_percentage": "number",
|
|
50
|
-
"critical_defects": "number",
|
|
51
|
-
"major_defects": "number",
|
|
52
|
-
"minor_defects": "number"
|
|
53
|
-
}
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
### Field Description
|
|
57
|
-
|
|
58
|
-
- `project_name`: Project identifier
|
|
59
|
-
- `total_test_cases`: Total test count
|
|
60
|
-
- `passed_test_cases`: Successful executions
|
|
61
|
-
- `failed_test_cases`: Failed executions
|
|
62
|
-
- `blocked_test_cases`: Blocked executions
|
|
63
|
-
- `test_coverage_percentage`: Coverage metric
|
|
64
|
-
- `critical_defects`: Critical severity defects
|
|
65
|
-
- `major_defects`: Major severity defects
|
|
66
|
-
- `minor_defects`: Minor severity defects
|
|
67
|
-
|
|
68
|
-
### Output Schema
|
|
69
|
-
|
|
70
|
-
```json
|
|
71
|
-
{
|
|
72
|
-
"risk_score": "number",
|
|
73
|
-
"risk_level": "string",
|
|
74
|
-
"project_health": "string",
|
|
75
|
-
"release_readiness": "string",
|
|
76
|
-
"recommendations": [
|
|
77
|
-
"string"
|
|
78
|
-
]
|
|
79
|
-
}
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
### Field Description
|
|
83
|
-
|
|
84
|
-
- `risk_score`: Risk score (0-100)
|
|
85
|
-
- `risk_level`: Low, Medium, High, Critical
|
|
86
|
-
- `project_health`: Overall health status
|
|
87
|
-
- `release_readiness`: Ready or Not Ready
|
|
88
|
-
- `recommendations`: Improvement actions
|
|
89
|
-
|
|
90
|
-
### Risk Levels
|
|
91
|
-
|
|
92
|
-
- `0-20`: Low
|
|
93
|
-
- `21-50`: Medium
|
|
94
|
-
- `51-80`: High
|
|
95
|
-
- `81-100`: Critical
|
|
96
|
-
|
|
97
|
-
### Example Output
|
|
98
|
-
|
|
99
|
-
```json
|
|
100
|
-
{
|
|
101
|
-
"risk_score": 78,
|
|
102
|
-
"risk_level": "High",
|
|
103
|
-
"project_health": "At Risk",
|
|
104
|
-
"release_readiness": "Not Ready",
|
|
105
|
-
"recommendations": [
|
|
106
|
-
"Resolve all critical defects",
|
|
107
|
-
"Increase test coverage above 80%",
|
|
108
|
-
"Retest failed test cases"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## Skill 2: Requirement-Summarizer
|
|
30
|
+
## Skill 1: Requirement-Summarizer
|
|
116
31
|
|
|
117
32
|
### Description
|
|
118
33
|
|
|
@@ -203,7 +118,7 @@ Transform lengthy requirement documents into concise and actionable summaries.
|
|
|
203
118
|
|
|
204
119
|
---
|
|
205
120
|
|
|
206
|
-
## Skill
|
|
121
|
+
## Skill 2: Test-Case-Generator
|
|
207
122
|
|
|
208
123
|
### Description
|
|
209
124
|
|
|
@@ -296,6 +211,91 @@ Accelerate software testing preparation and improve test coverage.
|
|
|
296
211
|
|
|
297
212
|
---
|
|
298
213
|
|
|
214
|
+
## Skill 3: Defect-Risk-Analyzer
|
|
215
|
+
|
|
216
|
+
### Description
|
|
217
|
+
|
|
218
|
+
Analyze testing quality metrics and determine project risk level before release.
|
|
219
|
+
|
|
220
|
+
### Purpose
|
|
221
|
+
|
|
222
|
+
Provide data-driven risk assessment and release readiness recommendations.
|
|
223
|
+
|
|
224
|
+
### Input Schema
|
|
225
|
+
|
|
226
|
+
```json
|
|
227
|
+
{
|
|
228
|
+
"project_name": "string",
|
|
229
|
+
"total_test_cases": "number",
|
|
230
|
+
"passed_test_cases": "number",
|
|
231
|
+
"failed_test_cases": "number",
|
|
232
|
+
"blocked_test_cases": "number",
|
|
233
|
+
"test_coverage_percentage": "number",
|
|
234
|
+
"critical_defects": "number",
|
|
235
|
+
"major_defects": "number",
|
|
236
|
+
"minor_defects": "number"
|
|
237
|
+
}
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
### Field Description
|
|
241
|
+
|
|
242
|
+
- `project_name`: Project identifier
|
|
243
|
+
- `total_test_cases`: Total test count
|
|
244
|
+
- `passed_test_cases`: Successful executions
|
|
245
|
+
- `failed_test_cases`: Failed executions
|
|
246
|
+
- `blocked_test_cases`: Blocked executions
|
|
247
|
+
- `test_coverage_percentage`: Coverage metric
|
|
248
|
+
- `critical_defects`: Critical severity defects
|
|
249
|
+
- `major_defects`: Major severity defects
|
|
250
|
+
- `minor_defects`: Minor severity defects
|
|
251
|
+
|
|
252
|
+
### Output Schema
|
|
253
|
+
|
|
254
|
+
```json
|
|
255
|
+
{
|
|
256
|
+
"risk_score": "number",
|
|
257
|
+
"risk_level": "string",
|
|
258
|
+
"project_health": "string",
|
|
259
|
+
"release_readiness": "string",
|
|
260
|
+
"recommendations": [
|
|
261
|
+
"string"
|
|
262
|
+
]
|
|
263
|
+
}
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
### Field Description
|
|
267
|
+
|
|
268
|
+
- `risk_score`: Risk score (0-100)
|
|
269
|
+
- `risk_level`: Low, Medium, High, Critical
|
|
270
|
+
- `project_health`: Overall health status
|
|
271
|
+
- `release_readiness`: Ready or Not Ready
|
|
272
|
+
- `recommendations`: Improvement actions
|
|
273
|
+
|
|
274
|
+
### Risk Levels
|
|
275
|
+
|
|
276
|
+
- `0-20`: Low
|
|
277
|
+
- `21-50`: Medium
|
|
278
|
+
- `51-80`: High
|
|
279
|
+
- `81-100`: Critical
|
|
280
|
+
|
|
281
|
+
### Example Output
|
|
282
|
+
|
|
283
|
+
```json
|
|
284
|
+
{
|
|
285
|
+
"risk_score": 78,
|
|
286
|
+
"risk_level": "High",
|
|
287
|
+
"project_health": "At Risk",
|
|
288
|
+
"release_readiness": "Not Ready",
|
|
289
|
+
"recommendations": [
|
|
290
|
+
"Resolve all critical defects",
|
|
291
|
+
"Increase test coverage above 80%",
|
|
292
|
+
"Retest failed test cases"
|
|
293
|
+
]
|
|
294
|
+
}
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
299
|
## Notes
|
|
300
300
|
|
|
301
301
|
- The project also includes a lightweight HTTP server in `server.js` that exposes the available skills through API endpoints.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleverpeople/my-skills",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Shared skill definitions bundle for My Skills.",
|
|
6
6
|
"type": "module",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"test": "node --test"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"Defect-Risk-Analyzer",
|
|
12
11
|
"Requirement-Summarizer",
|
|
13
12
|
"Test-Case-Generator",
|
|
13
|
+
"Defect-Risk-Analyzer",
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
16
16
|
"publishConfig": {
|