@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,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "code-review",
|
|
3
3
|
"subject": "Reviewing diffs and pull requests for correctness, clarity, security, performance, tests, and project conventions",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"testing-strategy",
|
|
6
|
+
"refactor",
|
|
7
|
+
"debugging",
|
|
8
|
+
"owasp-security"
|
|
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": "workflow",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/quality/code-review/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": "workflow",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/quality/code-review/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/quality/code-review/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/quality/code-review/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "data-modeling",
|
|
3
3
|
"subject": "Persistence model design for entities, relationships, keys, constraints, normalization, denormalization, and views",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"conceptual-modeling",
|
|
6
|
+
"database-migration",
|
|
7
|
+
"api-design",
|
|
8
|
+
"system-interface-contracts"
|
|
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/data-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/data-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/data-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/data-modeling/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "database-migration",
|
|
3
3
|
"subject": "Safe database migration design for expand-contract rollout, locks, backfills, deploy ordering, rollback, and verification",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"data-modeling",
|
|
6
|
+
"testing-strategy",
|
|
7
|
+
"debugging",
|
|
8
|
+
"owasp-security"
|
|
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": "workflow",
|
|
15
20
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
21
|
+
"truth_sources": [
|
|
22
|
+
"skills/engineering/database-migration/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": "workflow",
|
|
26
33
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
34
|
+
"truth_sources": [
|
|
35
|
+
"skills/engineering/database-migration/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/database-migration/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/database-migration/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "debugging",
|
|
3
3
|
"subject": "Failure-driven diagnosis workflow: reproduction, scope reduction, evidence capture, root-cause isolation, fix verification, and regression-test creation",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"testing-strategy",
|
|
6
|
+
"refactor"
|
|
7
|
+
],
|
|
5
8
|
"grounding_note": "This skill is deliberately self-grounding. The debugging workflow is a synthesis of industry practice rather than a derivation from a single canonical text, so truth_sources cite skills/debugging/SKILL.md line ranges rather than external references. The `checkEvalTruthSourceRanges` lint check (D2 in scripts/skill-lint.js) catches citation drift by verifying that every cited line range still exists in the file. Attach external truth_sources only when the skill is later narrowed to a specific methodology (e.g., the SRE debugging runbook).",
|
|
6
9
|
"evals": [
|
|
7
10
|
{
|
|
@@ -13,7 +16,9 @@
|
|
|
13
16
|
"truth_mode": "code_verification",
|
|
14
17
|
"skill_type": "workflow",
|
|
15
18
|
"criticality": "high",
|
|
16
|
-
"truth_sources": [
|
|
19
|
+
"truth_sources": [
|
|
20
|
+
"skills/engineering/debugging/SKILL.md:82-89"
|
|
21
|
+
]
|
|
17
22
|
},
|
|
18
23
|
{
|
|
19
24
|
"id": 2,
|
|
@@ -24,7 +29,9 @@
|
|
|
24
29
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
25
30
|
"skill_type": "concept",
|
|
26
31
|
"criticality": "high",
|
|
27
|
-
"truth_sources": [
|
|
32
|
+
"truth_sources": [
|
|
33
|
+
"skills/engineering/debugging/SKILL.md:74-76"
|
|
34
|
+
]
|
|
28
35
|
},
|
|
29
36
|
{
|
|
30
37
|
"id": 3,
|
|
@@ -35,7 +42,9 @@
|
|
|
35
42
|
"truth_mode": "code_verification",
|
|
36
43
|
"skill_type": "concept",
|
|
37
44
|
"criticality": "high",
|
|
38
|
-
"truth_sources": [
|
|
45
|
+
"truth_sources": [
|
|
46
|
+
"skills/engineering/debugging/SKILL.md:109-115"
|
|
47
|
+
]
|
|
39
48
|
},
|
|
40
49
|
{
|
|
41
50
|
"id": 4,
|
|
@@ -46,7 +55,9 @@
|
|
|
46
55
|
"truth_mode": "process_correctness",
|
|
47
56
|
"skill_type": "workflow",
|
|
48
57
|
"criticality": "critical",
|
|
49
|
-
"truth_sources": [
|
|
58
|
+
"truth_sources": [
|
|
59
|
+
"skills/engineering/debugging/SKILL.md:82-89"
|
|
60
|
+
]
|
|
50
61
|
},
|
|
51
62
|
{
|
|
52
63
|
"id": 5,
|
|
@@ -57,7 +68,10 @@
|
|
|
57
68
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
58
69
|
"skill_type": "concept",
|
|
59
70
|
"criticality": "high",
|
|
60
|
-
"truth_sources": [
|
|
71
|
+
"truth_sources": [
|
|
72
|
+
"skills/engineering/debugging/SKILL.md:82-89",
|
|
73
|
+
"skills/engineering/debugging/SKILL.md:101-107"
|
|
74
|
+
]
|
|
61
75
|
},
|
|
62
76
|
{
|
|
63
77
|
"id": 6,
|
|
@@ -68,7 +82,9 @@
|
|
|
68
82
|
"truth_mode": "process_correctness",
|
|
69
83
|
"skill_type": "workflow",
|
|
70
84
|
"criticality": "high",
|
|
71
|
-
"truth_sources": [
|
|
85
|
+
"truth_sources": [
|
|
86
|
+
"skills/engineering/debugging/SKILL.md:91-95"
|
|
87
|
+
]
|
|
72
88
|
},
|
|
73
89
|
{
|
|
74
90
|
"id": 7,
|
|
@@ -79,7 +95,9 @@
|
|
|
79
95
|
"truth_mode": "code_verification",
|
|
80
96
|
"skill_type": "concept",
|
|
81
97
|
"criticality": "normal",
|
|
82
|
-
"truth_sources": [
|
|
98
|
+
"truth_sources": [
|
|
99
|
+
"skills/engineering/debugging/SKILL.md:109-115"
|
|
100
|
+
]
|
|
83
101
|
},
|
|
84
102
|
{
|
|
85
103
|
"id": 8,
|
|
@@ -90,7 +108,9 @@
|
|
|
90
108
|
"truth_mode": "process_correctness",
|
|
91
109
|
"skill_type": "workflow",
|
|
92
110
|
"criticality": "high",
|
|
93
|
-
"truth_sources": [
|
|
111
|
+
"truth_sources": [
|
|
112
|
+
"skills/engineering/debugging/SKILL.md:82-89"
|
|
113
|
+
]
|
|
94
114
|
},
|
|
95
115
|
{
|
|
96
116
|
"id": 9,
|
|
@@ -101,7 +121,10 @@
|
|
|
101
121
|
"truth_mode": "process_correctness",
|
|
102
122
|
"skill_type": "workflow",
|
|
103
123
|
"criticality": "high",
|
|
104
|
-
"truth_sources": [
|
|
124
|
+
"truth_sources": [
|
|
125
|
+
"skills/engineering/debugging/SKILL.md:82-89",
|
|
126
|
+
"skills/engineering/debugging/SKILL.md:101-107"
|
|
127
|
+
]
|
|
105
128
|
},
|
|
106
129
|
{
|
|
107
130
|
"id": 10,
|
|
@@ -112,7 +135,10 @@
|
|
|
112
135
|
"truth_mode": "conceptual_correctness_plus_repo_application",
|
|
113
136
|
"skill_type": "concept",
|
|
114
137
|
"criticality": "critical",
|
|
115
|
-
"truth_sources": [
|
|
138
|
+
"truth_sources": [
|
|
139
|
+
"skills/engineering/debugging/SKILL.md:74-76",
|
|
140
|
+
"skills/engineering/debugging/SKILL.md:82-89"
|
|
141
|
+
]
|
|
116
142
|
}
|
|
117
143
|
]
|
|
118
144
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "dependency-architecture",
|
|
3
3
|
"subject": "Dependency graph architecture for package boundaries, direct and transitive dependencies, adapters, duplicate-purpose libraries, lock-in, upgrades, and supply-chain risk",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"framework-fit-analysis",
|
|
6
|
+
"owasp-security",
|
|
7
|
+
"refactor",
|
|
8
|
+
"architecture-decision-records"
|
|
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/dependency-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/engineering/dependency-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/engineering/dependency-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/engineering/dependency-architecture/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "design-system-architecture",
|
|
3
3
|
"subject": "Design-system architecture for token taxonomy, semantic tokens, component APIs, variants, theming, accessibility contracts, governance, and migration",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"a11y",
|
|
6
|
+
"microcopy",
|
|
7
|
+
"layout-composition",
|
|
8
|
+
"visual-design-foundations"
|
|
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/design-system-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/design-system-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/design-system-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/design-system-architecture/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "error-tracking",
|
|
3
3
|
"subject": "Exception-reporting pipeline design for error boundaries, centralized tracker wrappers, environment gating, PII sanitization, breadcrumbs, and capture verification",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"observability-modeling",
|
|
6
|
+
"a11y",
|
|
7
|
+
"debugging",
|
|
8
|
+
"owasp-security"
|
|
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/error-tracking/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/error-tracking/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/error-tracking/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/error-tracking/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "event-contract-design",
|
|
3
3
|
"subject": "Asynchronous event contract design for schemas, envelopes, topics, compatibility, idempotency, ordering, replay, and observability",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"event-storming",
|
|
6
|
+
"system-interface-contracts",
|
|
7
|
+
"webhook-integration",
|
|
8
|
+
"api-design"
|
|
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/engineering/event-contract-design/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/engineering/event-contract-design/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/engineering/event-contract-design/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/event-contract-design/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "form-ux-architecture",
|
|
3
3
|
"subject": "Form structure and validation UX across field grouping, validation timing, submission lifecycle, recovery, and client/server split",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"a11y",
|
|
6
|
+
"microcopy",
|
|
7
|
+
"api-design",
|
|
8
|
+
"data-modeling"
|
|
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/form-ux-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/form-ux-architecture/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": "critical",
|
|
38
|
-
"truth_sources": [
|
|
47
|
+
"truth_sources": [
|
|
48
|
+
"skills/design/form-ux-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/form-ux-architecture/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"skill_name": "framework-fit-analysis",
|
|
3
3
|
"subject": "Technology fit analysis for choosing, replacing, or justifying frameworks, libraries, SDKs, runtimes, databases, UI kits, and platforms",
|
|
4
|
-
"adjacent_concepts": [
|
|
4
|
+
"adjacent_concepts": [
|
|
5
|
+
"dependency-architecture",
|
|
6
|
+
"architecture-decision-records",
|
|
7
|
+
"performance-engineering",
|
|
8
|
+
"owasp-security"
|
|
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/framework-fit-analysis/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/framework-fit-analysis/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/framework-fit-analysis/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/framework-fit-analysis/SKILL.md"
|
|
62
|
+
]
|
|
50
63
|
}
|
|
51
64
|
]
|
|
52
65
|
}
|