@skill-graph/cli 0.5.7 → 0.5.8
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/CHANGELOG.md +27 -3
- package/README.md +40 -14
- package/SKILL_GRAPH.md +2 -2
- package/bin/skill-graph.js +118 -2
- package/docs/ADOPTION.md +1 -1
- package/docs/PRIMER.md +6 -5
- package/docs/QUICKSTART-30MIN.md +2 -2
- package/docs/SKILL_AUDIT_CHECKLIST.md +1 -1
- package/docs/SKILL_METADATA_PROTOCOL.md +2 -2
- package/docs/_archived/marketplace-publication-priority-2026-05-18.md +1 -1
- package/docs/_drafts/0.5.8-release-prep.md +164 -0
- package/docs/field-reference.generated.md +1 -1
- package/docs/field-reference.md +2 -2
- package/docs/manifest-field-mapping.md +3 -3
- package/docs/marketplace-publication-queue.generated.md +2 -2
- package/docs/plans/scripts-roadmap.md +2 -2
- package/docs/positioning.md +88 -0
- package/docs/research/skill-comprehension-eval-research.md +5 -5
- package/docs/research/skill-demand-gap-roadmap-2026-05-16.md +215 -0
- package/docs/status.generated.md +48 -0
- package/examples/audits/context-graph/findings.md +59 -0
- package/examples/audits/context-graph/scorecard.md +22 -0
- package/examples/audits/context-graph/verdict.md +33 -0
- package/examples/evals/a11y.json +45 -13
- package/examples/evals/api-design.json +18 -5
- package/examples/evals/code-review.json +18 -5
- package/examples/evals/data-modeling.json +18 -5
- package/examples/evals/database-migration.json +18 -5
- package/examples/evals/debugging.json +37 -11
- package/examples/evals/dependency-architecture.json +18 -5
- package/examples/evals/design-system-architecture.json +18 -5
- package/examples/evals/error-tracking.json +18 -5
- package/examples/evals/event-contract-design.json +18 -5
- package/examples/evals/form-ux-architecture.json +18 -5
- package/examples/evals/framework-fit-analysis.json +18 -5
- package/examples/evals/graph-audit.json +55 -13
- package/examples/evals/information-architecture.json +18 -5
- package/examples/evals/interaction-feedback.json +18 -5
- package/examples/evals/interaction-patterns.json +18 -5
- package/examples/evals/layout-composition.json +18 -5
- package/examples/evals/lint-overlay.json +38 -11
- package/examples/evals/microcopy.json +18 -5
- package/examples/evals/observability-modeling.json +18 -5
- package/examples/evals/pattern-recognition.json +32 -9
- package/examples/evals/performance-engineering.json +18 -5
- package/examples/evals/refactor.json +41 -12
- package/examples/evals/semiotics.json +18 -5
- package/examples/evals/skill-infrastructure.json +32 -9
- package/examples/evals/skill-router.json +42 -13
- package/examples/evals/system-interface-contracts.json +18 -5
- package/examples/evals/task-analysis.json +18 -5
- package/examples/evals/testing-strategy.json +36 -11
- package/examples/evals/type-safety.json +251 -66
- package/examples/evals/visual-design-foundations.json +18 -5
- package/examples/evals/webhook-integration.json +18 -5
- package/examples/fixture-skills/README.md +47 -0
- package/examples/fixture-skills/comprehension-full/SKILL.md +79 -0
- package/examples/fixture-skills/minimal-capability/SKILL.md +51 -0
- package/examples/fixture-skills/with-grounding/SKILL.md +78 -0
- package/examples/fixture-skills/with-relations/SKILL.md +87 -0
- package/examples/skills.manifest.sample.json +1722 -446
- package/marketplace/README.md +1 -1
- package/marketplace/skills/a11y/SKILL.md +1 -1
- package/marketplace/skills/best-practice/SKILL.md +211 -0
- package/marketplace/skills/context-graph/SKILL.md +1 -1
- package/marketplace/skills/debugging/SKILL.md +1 -1
- package/marketplace/skills/graph-audit/SKILL.md +3 -1
- package/marketplace/skills/postgres-rls/SKILL.md +284 -0
- package/marketplace/skills/refactor/SKILL.md +1 -1
- package/marketplace/skills/skill-infrastructure/SKILL.md +2 -0
- package/marketplace/skills/skill-router/SKILL.md +3 -1
- package/marketplace/skills/testing-strategy/SKILL.md +1 -1
- package/package.json +3 -1
- package/scripts/__tests__/test-marketplace-export.js +6 -2
- package/scripts/__tests__/test-v3-1-alias-contract.js +3 -3
- package/scripts/build-status-doc.js +177 -0
- package/scripts/check-doc-drift.js +224 -0
- package/scripts/check-markdown-links.js +34 -4
- package/scripts/check-mirror-freeze.js +270 -0
- package/scripts/export-marketplace-skills.js +35 -6
- package/scripts/lib/audit-prompt-builder.js +3 -3
- package/scripts/lib/parse-frontmatter.js +2 -2
- package/scripts/skill-audit.js +7 -9
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "graph-audit",
|
|
3
3
|
"subject": "Skill metadata and manifest consistency auditing for the Skill Graph repository",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"documentation",
|
|
6
|
+
"refactor",
|
|
7
|
+
"testing-strategy"
|
|
8
|
+
],
|
|
5
9
|
"evals": [
|
|
6
10
|
{
|
|
7
11
|
"id": 1,
|
|
@@ -12,7 +16,10 @@
|
|
|
12
16
|
"truth_mode": "code_verification",
|
|
13
17
|
"skill_type": "concept",
|
|
14
18
|
"criticality": "high",
|
|
15
|
-
"truth_sources": [
|
|
19
|
+
"truth_sources": [
|
|
20
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
21
|
+
"scripts/skill-lint.js"
|
|
22
|
+
]
|
|
16
23
|
},
|
|
17
24
|
{
|
|
18
25
|
"id": 2,
|
|
@@ -23,7 +30,10 @@
|
|
|
23
30
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
24
31
|
"skill_type": "concept",
|
|
25
32
|
"criticality": "high",
|
|
26
|
-
"truth_sources": [
|
|
33
|
+
"truth_sources": [
|
|
34
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
35
|
+
"schemas/skill.schema.json"
|
|
36
|
+
]
|
|
27
37
|
},
|
|
28
38
|
{
|
|
29
39
|
"id": 3,
|
|
@@ -34,7 +44,9 @@
|
|
|
34
44
|
"truth_mode": "code_verification",
|
|
35
45
|
"skill_type": "concept",
|
|
36
46
|
"criticality": "normal",
|
|
37
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/quality/graph-audit/SKILL.md"
|
|
49
|
+
]
|
|
38
50
|
},
|
|
39
51
|
{
|
|
40
52
|
"id": 4,
|
|
@@ -45,7 +57,10 @@
|
|
|
45
57
|
"truth_mode": "process_correctness",
|
|
46
58
|
"skill_type": "workflow",
|
|
47
59
|
"criticality": "high",
|
|
48
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
62
|
+
"scripts/skill-lint.js"
|
|
63
|
+
]
|
|
49
64
|
},
|
|
50
65
|
{
|
|
51
66
|
"id": 5,
|
|
@@ -56,7 +71,10 @@
|
|
|
56
71
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
57
72
|
"skill_type": "concept",
|
|
58
73
|
"criticality": "normal",
|
|
59
|
-
"truth_sources": [
|
|
74
|
+
"truth_sources": [
|
|
75
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
76
|
+
"docs/skill-metadata-protocol.md"
|
|
77
|
+
]
|
|
60
78
|
},
|
|
61
79
|
{
|
|
62
80
|
"id": 6,
|
|
@@ -67,7 +85,11 @@
|
|
|
67
85
|
"truth_mode": "process_correctness",
|
|
68
86
|
"skill_type": "workflow",
|
|
69
87
|
"criticality": "high",
|
|
70
|
-
"truth_sources": [
|
|
88
|
+
"truth_sources": [
|
|
89
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
90
|
+
"scripts/skill-lint.js",
|
|
91
|
+
"docs/skill-metadata-protocol.md"
|
|
92
|
+
]
|
|
71
93
|
},
|
|
72
94
|
{
|
|
73
95
|
"id": 7,
|
|
@@ -78,7 +100,11 @@
|
|
|
78
100
|
"truth_mode": "code_verification",
|
|
79
101
|
"skill_type": "concept",
|
|
80
102
|
"criticality": "normal",
|
|
81
|
-
"truth_sources": [
|
|
103
|
+
"truth_sources": [
|
|
104
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
105
|
+
"scripts/generate-manifest.js",
|
|
106
|
+
"examples/skills.manifest.sample.json"
|
|
107
|
+
]
|
|
82
108
|
},
|
|
83
109
|
{
|
|
84
110
|
"id": 8,
|
|
@@ -89,7 +115,11 @@
|
|
|
89
115
|
"truth_mode": "output_correctness",
|
|
90
116
|
"skill_type": "workflow",
|
|
91
117
|
"criticality": "high",
|
|
92
|
-
"truth_sources": [
|
|
118
|
+
"truth_sources": [
|
|
119
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
120
|
+
"schemas/skill.schema.json",
|
|
121
|
+
"scripts/skill-lint.js"
|
|
122
|
+
]
|
|
93
123
|
},
|
|
94
124
|
{
|
|
95
125
|
"id": 9,
|
|
@@ -100,7 +130,11 @@
|
|
|
100
130
|
"truth_mode": "code_verification",
|
|
101
131
|
"skill_type": "concept",
|
|
102
132
|
"criticality": "high",
|
|
103
|
-
"truth_sources": [
|
|
133
|
+
"truth_sources": [
|
|
134
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
135
|
+
"schemas/skill.schema.json",
|
|
136
|
+
"scripts/skill-lint.js"
|
|
137
|
+
]
|
|
104
138
|
},
|
|
105
139
|
{
|
|
106
140
|
"id": 10,
|
|
@@ -111,7 +145,11 @@
|
|
|
111
145
|
"truth_mode": "output_correctness",
|
|
112
146
|
"skill_type": "workflow",
|
|
113
147
|
"criticality": "high",
|
|
114
|
-
"truth_sources": [
|
|
148
|
+
"truth_sources": [
|
|
149
|
+
"skills/quality/graph-audit/SKILL.md",
|
|
150
|
+
"scripts/skill-lint.js",
|
|
151
|
+
"schemas/skill.schema.json"
|
|
152
|
+
]
|
|
115
153
|
},
|
|
116
154
|
{
|
|
117
155
|
"id": 11,
|
|
@@ -122,7 +160,9 @@
|
|
|
122
160
|
"truth_mode": "code_verification",
|
|
123
161
|
"skill_type": "concept",
|
|
124
162
|
"criticality": "normal",
|
|
125
|
-
"truth_sources": [
|
|
163
|
+
"truth_sources": [
|
|
164
|
+
"skills/quality/graph-audit/SKILL.md"
|
|
165
|
+
]
|
|
126
166
|
},
|
|
127
167
|
{
|
|
128
168
|
"id": 12,
|
|
@@ -133,7 +173,9 @@
|
|
|
133
173
|
"truth_mode": "code_verification",
|
|
134
174
|
"skill_type": "concept",
|
|
135
175
|
"criticality": "normal",
|
|
136
|
-
"truth_sources": [
|
|
176
|
+
"truth_sources": [
|
|
177
|
+
"skills/quality/graph-audit/SKILL.md"
|
|
178
|
+
]
|
|
137
179
|
}
|
|
138
180
|
]
|
|
139
181
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "information-architecture",
|
|
3
3
|
"subject": "Information architecture for navigation, page hierarchy, sitemaps, wayfinding, labeling systems, content grouping, and findability",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"task-analysis",
|
|
6
|
+
"taxonomy-design",
|
|
7
|
+
"layout-composition",
|
|
8
|
+
"microcopy"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while routing boundaries are tightened.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "concept",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/design/information-architecture/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/design/information-architecture/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "code_verification",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "normal",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/information-architecture/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "code_verification",
|
|
47
58
|
"skill_type": "concept",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/design/information-architecture/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "interaction-feedback",
|
|
3
3
|
"subject": "UI feedback-state staging for user actions, asynchronous work, success, failure, retry, undo, and perceived latency",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"microcopy",
|
|
6
|
+
"a11y",
|
|
7
|
+
"state-machine-modeling",
|
|
8
|
+
"performance-engineering"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while the new skill settles.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "workflow",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/design/interaction-feedback/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "code_verification",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "normal",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/design/interaction-feedback/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "high",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/interaction-feedback/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "code_verification",
|
|
47
58
|
"skill_type": "concept",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/design/interaction-feedback/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "interaction-patterns",
|
|
3
3
|
"subject": "Choosing and auditing UI interaction patterns and controls before implementation",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"a11y",
|
|
6
|
+
"task-analysis",
|
|
7
|
+
"interaction-feedback",
|
|
8
|
+
"design-system-architecture"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while the new skill settles.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "concept",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/design/interaction-patterns/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "code_verification",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "normal",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/design/interaction-patterns/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "high",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/interaction-patterns/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "code_verification",
|
|
47
58
|
"skill_type": "concept",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/design/interaction-patterns/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "layout-composition",
|
|
3
3
|
"subject": "Responsive layout and screen composition for page structure, scan pattern, breakpoints, and stable viewport hierarchy",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"task-analysis",
|
|
6
|
+
"information-architecture",
|
|
7
|
+
"visual-design-foundations",
|
|
8
|
+
"design-system-architecture"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while the new skill settles.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "concept",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/design/layout-composition/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/design/layout-composition/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "code_verification",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "normal",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/layout-composition/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "process_correctness",
|
|
47
58
|
"skill_type": "workflow",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/design/layout-composition/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "lint-overlay",
|
|
3
3
|
"subject": "Overlay for testing-strategy covering lint as verification: rule selection, gate placement, failure triage, and migration planning when introducing rules to an existing codebase",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"testing-strategy",
|
|
6
|
+
"refactor",
|
|
7
|
+
"debugging"
|
|
8
|
+
],
|
|
5
9
|
"evals": [
|
|
6
10
|
{
|
|
7
11
|
"id": 1,
|
|
@@ -12,7 +16,9 @@
|
|
|
12
16
|
"truth_mode": "code_verification",
|
|
13
17
|
"skill_type": "concept",
|
|
14
18
|
"criticality": "critical",
|
|
15
|
-
"truth_sources": [
|
|
19
|
+
"truth_sources": [
|
|
20
|
+
"skills/quality/lint-overlay/SKILL.md:65-82"
|
|
21
|
+
]
|
|
16
22
|
},
|
|
17
23
|
{
|
|
18
24
|
"id": 2,
|
|
@@ -23,7 +29,9 @@
|
|
|
23
29
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
24
30
|
"skill_type": "concept",
|
|
25
31
|
"criticality": "high",
|
|
26
|
-
"truth_sources": [
|
|
32
|
+
"truth_sources": [
|
|
33
|
+
"skills/quality/lint-overlay/SKILL.md:65-82"
|
|
34
|
+
]
|
|
27
35
|
},
|
|
28
36
|
{
|
|
29
37
|
"id": 3,
|
|
@@ -34,7 +42,9 @@
|
|
|
34
42
|
"truth_mode": "code_verification",
|
|
35
43
|
"skill_type": "concept",
|
|
36
44
|
"criticality": "high",
|
|
37
|
-
"truth_sources": [
|
|
45
|
+
"truth_sources": [
|
|
46
|
+
"skills/quality/lint-overlay/SKILL.md:118-124"
|
|
47
|
+
]
|
|
38
48
|
},
|
|
39
49
|
{
|
|
40
50
|
"id": 4,
|
|
@@ -45,7 +55,9 @@
|
|
|
45
55
|
"truth_mode": "process_correctness",
|
|
46
56
|
"skill_type": "workflow",
|
|
47
57
|
"criticality": "high",
|
|
48
|
-
"truth_sources": [
|
|
58
|
+
"truth_sources": [
|
|
59
|
+
"skills/quality/lint-overlay/SKILL.md:102-112"
|
|
60
|
+
]
|
|
49
61
|
},
|
|
50
62
|
{
|
|
51
63
|
"id": 5,
|
|
@@ -56,7 +68,9 @@
|
|
|
56
68
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
57
69
|
"skill_type": "concept",
|
|
58
70
|
"criticality": "normal",
|
|
59
|
-
"truth_sources": [
|
|
71
|
+
"truth_sources": [
|
|
72
|
+
"skills/quality/lint-overlay/SKILL.md:102-112"
|
|
73
|
+
]
|
|
60
74
|
},
|
|
61
75
|
{
|
|
62
76
|
"id": 6,
|
|
@@ -67,7 +81,9 @@
|
|
|
67
81
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
68
82
|
"skill_type": "concept",
|
|
69
83
|
"criticality": "high",
|
|
70
|
-
"truth_sources": [
|
|
84
|
+
"truth_sources": [
|
|
85
|
+
"skills/quality/lint-overlay/SKILL.md:102-112"
|
|
86
|
+
]
|
|
71
87
|
},
|
|
72
88
|
{
|
|
73
89
|
"id": 7,
|
|
@@ -78,7 +94,10 @@
|
|
|
78
94
|
"truth_mode": "code_verification",
|
|
79
95
|
"skill_type": "concept",
|
|
80
96
|
"criticality": "critical",
|
|
81
|
-
"truth_sources": [
|
|
97
|
+
"truth_sources": [
|
|
98
|
+
"skills/quality/lint-overlay/SKILL.md:65-82",
|
|
99
|
+
"skills/quality/lint-overlay/SKILL.md:118-124"
|
|
100
|
+
]
|
|
82
101
|
},
|
|
83
102
|
{
|
|
84
103
|
"id": 8,
|
|
@@ -89,7 +108,10 @@
|
|
|
89
108
|
"truth_mode": "process_correctness",
|
|
90
109
|
"skill_type": "workflow",
|
|
91
110
|
"criticality": "high",
|
|
92
|
-
"truth_sources": [
|
|
111
|
+
"truth_sources": [
|
|
112
|
+
"skills/quality/lint-overlay/SKILL.md:102-112",
|
|
113
|
+
"skills/quality/lint-overlay/SKILL.md:92-100"
|
|
114
|
+
]
|
|
93
115
|
},
|
|
94
116
|
{
|
|
95
117
|
"id": 9,
|
|
@@ -100,7 +122,10 @@
|
|
|
100
122
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
101
123
|
"skill_type": "concept",
|
|
102
124
|
"criticality": "high",
|
|
103
|
-
"truth_sources": [
|
|
125
|
+
"truth_sources": [
|
|
126
|
+
"skills/quality/lint-overlay/SKILL.md:102-112",
|
|
127
|
+
"skills/quality/lint-overlay/SKILL.md:92-100"
|
|
128
|
+
]
|
|
104
129
|
},
|
|
105
130
|
{
|
|
106
131
|
"id": 10,
|
|
@@ -111,7 +136,9 @@
|
|
|
111
136
|
"truth_mode": "process_correctness",
|
|
112
137
|
"skill_type": "workflow",
|
|
113
138
|
"criticality": "high",
|
|
114
|
-
"truth_sources": [
|
|
139
|
+
"truth_sources": [
|
|
140
|
+
"skills/quality/lint-overlay/SKILL.md:102-112"
|
|
141
|
+
]
|
|
115
142
|
}
|
|
116
143
|
]
|
|
117
144
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "microcopy",
|
|
3
3
|
"subject": "Functional UI text for action labels, empty states, tooltips, dialogs, loading messages, toasts, validation, permissions, and onboarding steps",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"semiotics",
|
|
6
|
+
"a11y",
|
|
7
|
+
"interaction-feedback",
|
|
8
|
+
"writing-humanizer"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while routing boundaries are tightened.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "concept",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/design/microcopy/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/design/microcopy/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "code_verification",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "normal",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/microcopy/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "code_verification",
|
|
47
58
|
"skill_type": "concept",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/design/microcopy/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "observability-modeling",
|
|
3
3
|
"subject": "Telemetry semantics for diagnostic questions, logs, metrics, traces, spans, attributes, correlation IDs, SLOs, alert signals, cardinality, privacy, and sampling",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"error-tracking",
|
|
6
|
+
"event-contract-design",
|
|
7
|
+
"performance-engineering",
|
|
8
|
+
"debugging"
|
|
9
|
+
],
|
|
5
10
|
"grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while routing boundaries are tightened.",
|
|
6
11
|
"evals": [
|
|
7
12
|
{
|
|
@@ -13,7 +18,9 @@
|
|
|
13
18
|
"truth_mode": "process_correctness",
|
|
14
19
|
"skill_type": "concept",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/engineering/observability-modeling/SKILL.md"
|
|
23
|
+
]
|
|
17
24
|
},
|
|
18
25
|
{
|
|
19
26
|
"id": 2,
|
|
@@ -24,7 +31,9 @@
|
|
|
24
31
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
25
32
|
"skill_type": "concept",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/engineering/observability-modeling/SKILL.md"
|
|
36
|
+
]
|
|
28
37
|
},
|
|
29
38
|
{
|
|
30
39
|
"id": 3,
|
|
@@ -35,7 +44,9 @@
|
|
|
35
44
|
"truth_mode": "code_verification",
|
|
36
45
|
"skill_type": "concept",
|
|
37
46
|
"criticality": "normal",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/engineering/observability-modeling/SKILL.md"
|
|
49
|
+
]
|
|
39
50
|
},
|
|
40
51
|
{
|
|
41
52
|
"id": 4,
|
|
@@ -46,7 +57,9 @@
|
|
|
46
57
|
"truth_mode": "code_verification",
|
|
47
58
|
"skill_type": "concept",
|
|
48
59
|
"criticality": "normal",
|
|
49
|
-
"truth_sources": [
|
|
60
|
+
"truth_sources": [
|
|
61
|
+
"skills/engineering/observability-modeling/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|