-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack.yaml
More file actions
198 lines (198 loc) · 6.92 KB
/
Copy pathpack.yaml
File metadata and controls
198 lines (198 loc) · 6.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "verification-test-design-pack",
"version": "0.1.0",
"type": "skill-pack",
"summary": "Verification and test design pack for Claude Code-style workflows.",
"recommended_order": [
"input-domain-partitioner",
"equivalence-partitioning-generator",
"boundary-value-generator",
"decision-table-builder",
"state-transition-test-designer",
"pairwise-test-generator",
"coverage-goal-planner",
"cfg-builder",
"statement-coverage-designer",
"branch-coverage-designer",
"path-coverage-designer",
"basis-path-tester",
"mc-dc-test-designer",
"test-oracle-writer",
"negative-test-designer",
"fault-based-test-ideator"
],
"skills": [
{
"id": "equivalence-partitioning-generator",
"path": "skills/equivalence-partitioning-generator/SKILL.md",
"purpose": "Partition an input domain into valid and invalid equivalence classes and select representative tests from each class.",
"handoffs": [
"boundary-value-generator",
"test-oracle-writer",
"coverage-goal-planner"
]
},
{
"id": "boundary-value-generator",
"path": "skills/boundary-value-generator/SKILL.md",
"purpose": "Design tests around lower, upper, just-inside, and just-outside boundaries for numeric, ordered, sized, and count-based inputs.",
"handoffs": [
"equivalence-partitioning-generator",
"negative-test-designer",
"test-oracle-writer"
]
},
{
"id": "decision-table-builder",
"path": "skills/decision-table-builder/SKILL.md",
"purpose": "Translate combinational business logic into a structured decision table and derive lean but sufficient tests.",
"handoffs": [
"pairwise-test-generator",
"test-oracle-writer",
"requirements-conflict-checker if present"
]
},
{
"id": "state-transition-test-designer",
"path": "skills/state-transition-test-designer/SKILL.md",
"purpose": "Create tests from states, events, guards, and transitions, including invalid or out-of-order sequences.",
"handoffs": [
"negative-test-designer",
"coverage-goal-planner",
"test-oracle-writer"
]
},
{
"id": "pairwise-test-generator",
"path": "skills/pairwise-test-generator/SKILL.md",
"purpose": "Reduce combinatorial explosion by selecting a compact set of tests that covers all parameter pairs.",
"handoffs": [
"decision-table-builder",
"test-oracle-writer",
"coverage-goal-planner"
]
},
{
"id": "coverage-goal-planner",
"path": "skills/coverage-goal-planner/SKILL.md",
"purpose": "Choose an appropriate coverage target for the situation and define what evidence is needed to claim it.",
"handoffs": [
"statement-coverage-designer",
"branch-coverage-designer",
"path-coverage-designer"
]
},
{
"id": "statement-coverage-designer",
"path": "skills/statement-coverage-designer/SKILL.md",
"purpose": "Design the smallest practical test set that executes every reachable statement at least once.",
"handoffs": [
"cfg-builder",
"branch-coverage-designer",
"basis-path-tester"
]
},
{
"id": "branch-coverage-designer",
"path": "skills/branch-coverage-designer/SKILL.md",
"purpose": "Design tests that execute each decision outcome, including true and false branches and equivalent multi-way alternatives.",
"handoffs": [
"statement-coverage-designer",
"path-coverage-designer",
"mc-dc-test-designer"
]
},
{
"id": "path-coverage-designer",
"path": "skills/path-coverage-designer/SKILL.md",
"purpose": "Identify meaningful execution paths and design tests while being explicit about infeasible or exploding path counts.",
"handoffs": [
"basis-path-tester",
"cfg-builder",
"coverage-goal-planner"
]
},
{
"id": "mc-dc-test-designer",
"path": "skills/mc-dc-test-designer/SKILL.md",
"purpose": "Design tests showing that each atomic condition can independently affect the overall decision outcome.",
"handoffs": [
"branch-coverage-designer",
"test-oracle-writer",
"coverage-goal-planner"
]
},
{
"id": "basis-path-tester",
"path": "skills/basis-path-tester/SKILL.md",
"purpose": "Compute a basis set of independent execution paths from a control-flow graph and derive tests from them.",
"handoffs": [
"cfg-builder",
"path-coverage-designer",
"statement-coverage-designer"
]
},
{
"id": "cfg-builder",
"path": "skills/cfg-builder/SKILL.md",
"purpose": "Convert code or pseudo-code into a control-flow graph suitable for structural test design and reasoning.",
"handoffs": [
"basis-path-tester",
"statement-coverage-designer",
"branch-coverage-designer"
]
},
{
"id": "test-oracle-writer",
"path": "skills/test-oracle-writer/SKILL.md",
"purpose": "Define what counts as a correct result for each test so outcomes are observable, comparable, and not left to intuition.",
"handoffs": [
"negative-test-designer",
"traceability packs later",
"automation-testing packs later"
]
},
{
"id": "negative-test-designer",
"path": "skills/negative-test-designer/SKILL.md",
"purpose": "Design invalid, unexpected, hostile, or malformed-input tests that pressure the system\u2019s error handling and resilience.",
"handoffs": [
"boundary-value-generator",
"test-oracle-writer",
"fault-based-test-ideator"
]
},
{
"id": "input-domain-partitioner",
"path": "skills/input-domain-partitioner/SKILL.md",
"purpose": "Create a clean domain model of input classes, relationships, and constraints before selecting detailed tests.",
"handoffs": [
"equivalence-partitioning-generator",
"pairwise-test-generator",
"negative-test-designer"
]
},
{
"id": "fault-based-test-ideator",
"path": "skills/fault-based-test-ideator/SKILL.md",
"purpose": "Generate tests based on likely developer mistakes, common defect patterns, and known fragility in the design or code.",
"handoffs": [
"negative-test-designer",
"coverage-goal-planner",
"review or inspection packs later"
]
}
],
"templates": [
"templates/test-case-template.md",
"templates/equivalence-partition-template.md",
"templates/boundary-value-template.md",
"templates/decision-table-template.md",
"templates/state-transition-template.md",
"templates/coverage-plan-template.md",
"templates/test-oracle-template.md",
"templates/negative-test-template.md",
"templates/pairwise-input-matrix-template.csv",
"templates/traceability-template.csv"
]
}