@skill-graph/cli 0.5.6 → 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.
Files changed (90) hide show
  1. package/CHANGELOG.md +27 -3
  2. package/README.md +103 -31
  3. package/SKILL_GRAPH.md +2 -2
  4. package/bin/skill-graph.js +150 -10
  5. package/docs/ADOPTION.md +1 -1
  6. package/docs/PRIMER.md +6 -5
  7. package/docs/QUICKSTART-30MIN.md +2 -2
  8. package/docs/SKILL_AUDIT_CHECKLIST.md +1 -1
  9. package/docs/SKILL_METADATA_PROTOCOL.md +2 -2
  10. package/docs/_archived/marketplace-publication-priority-2026-05-18.md +1 -1
  11. package/docs/_drafts/0.5.8-release-prep.md +164 -0
  12. package/docs/adr/0009-sibling-repo-deprecation.md +48 -0
  13. package/docs/diagrams/skill-graph-ecosystem.mmd +17 -0
  14. package/docs/field-reference.generated.md +22 -2
  15. package/docs/field-reference.md +53 -2
  16. package/docs/images/skill-graph-ecosystem.svg +1 -0
  17. package/docs/manifest-field-mapping.md +3 -3
  18. package/docs/marketplace-publication-queue.generated.md +2 -2
  19. package/docs/plans/scripts-roadmap.md +2 -2
  20. package/docs/positioning.md +88 -0
  21. package/docs/research/skill-comprehension-eval-research.md +5 -5
  22. package/docs/research/skill-demand-gap-roadmap-2026-05-16.md +215 -0
  23. package/docs/status.generated.md +48 -0
  24. package/examples/audits/context-graph/findings.md +59 -0
  25. package/examples/audits/context-graph/scorecard.md +22 -0
  26. package/examples/audits/context-graph/verdict.md +33 -0
  27. package/examples/evals/a11y.json +45 -13
  28. package/examples/evals/api-design.json +18 -5
  29. package/examples/evals/code-review.json +18 -5
  30. package/examples/evals/data-modeling.json +18 -5
  31. package/examples/evals/database-migration.json +18 -5
  32. package/examples/evals/debugging.json +37 -11
  33. package/examples/evals/dependency-architecture.json +18 -5
  34. package/examples/evals/design-system-architecture.json +18 -5
  35. package/examples/evals/error-tracking.json +18 -5
  36. package/examples/evals/event-contract-design.json +18 -5
  37. package/examples/evals/form-ux-architecture.json +18 -5
  38. package/examples/evals/framework-fit-analysis.json +18 -5
  39. package/examples/evals/graph-audit.json +55 -13
  40. package/examples/evals/information-architecture.json +18 -5
  41. package/examples/evals/interaction-feedback.json +18 -5
  42. package/examples/evals/interaction-patterns.json +18 -5
  43. package/examples/evals/layout-composition.json +18 -5
  44. package/examples/evals/lint-overlay.json +38 -11
  45. package/examples/evals/microcopy.json +18 -5
  46. package/examples/evals/observability-modeling.json +18 -5
  47. package/examples/evals/pattern-recognition.json +32 -9
  48. package/examples/evals/performance-engineering.json +18 -5
  49. package/examples/evals/refactor.json +41 -12
  50. package/examples/evals/semiotics.json +18 -5
  51. package/examples/evals/skill-infrastructure.json +32 -9
  52. package/examples/evals/skill-router.json +42 -13
  53. package/examples/evals/system-interface-contracts.json +18 -5
  54. package/examples/evals/task-analysis.json +18 -5
  55. package/examples/evals/testing-strategy.json +36 -11
  56. package/examples/evals/type-safety.json +251 -66
  57. package/examples/evals/visual-design-foundations.json +18 -5
  58. package/examples/evals/webhook-integration.json +18 -5
  59. package/examples/fixture-skills/README.md +47 -0
  60. package/examples/fixture-skills/comprehension-full/SKILL.md +79 -0
  61. package/examples/fixture-skills/minimal-capability/SKILL.md +51 -0
  62. package/examples/fixture-skills/with-grounding/SKILL.md +78 -0
  63. package/examples/fixture-skills/with-relations/SKILL.md +87 -0
  64. package/examples/skills.manifest.sample.json +1722 -446
  65. package/marketplace/README.md +1 -1
  66. package/marketplace/skills/a11y/SKILL.md +1 -1
  67. package/marketplace/skills/best-practice/SKILL.md +211 -0
  68. package/marketplace/skills/context-graph/SKILL.md +1 -1
  69. package/marketplace/skills/debugging/SKILL.md +1 -1
  70. package/marketplace/skills/graph-audit/SKILL.md +3 -1
  71. package/marketplace/skills/postgres-rls/SKILL.md +284 -0
  72. package/marketplace/skills/refactor/SKILL.md +1 -1
  73. package/marketplace/skills/skill-infrastructure/SKILL.md +2 -0
  74. package/marketplace/skills/skill-router/SKILL.md +3 -1
  75. package/marketplace/skills/testing-strategy/SKILL.md +1 -1
  76. package/package.json +3 -1
  77. package/schemas/manifest.schema.json +8 -0
  78. package/schemas/manifest.v6.schema.json +8 -0
  79. package/schemas/skill.context.jsonld +5 -0
  80. package/schemas/skill.schema.json +27 -0
  81. package/scripts/__tests__/test-marketplace-export.js +6 -2
  82. package/scripts/__tests__/test-v3-1-alias-contract.js +3 -3
  83. package/scripts/build-status-doc.js +177 -0
  84. package/scripts/check-doc-drift.js +224 -0
  85. package/scripts/check-markdown-links.js +34 -4
  86. package/scripts/check-mirror-freeze.js +270 -0
  87. package/scripts/export-marketplace-skills.js +35 -6
  88. package/scripts/lib/audit-prompt-builder.js +3 -3
  89. package/scripts/lib/parse-frontmatter.js +2 -2
  90. 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": ["documentation", "refactor", "testing-strategy"],
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": ["skills/graph-audit/SKILL.md", "scripts/skill-lint.js"]
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": ["skills/graph-audit/SKILL.md", "schemas/skill.schema.json"]
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": ["skills/graph-audit/SKILL.md"]
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": ["skills/graph-audit/SKILL.md", "scripts/skill-lint.js"]
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": ["skills/graph-audit/SKILL.md", "docs/skill-metadata-protocol.md"]
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": ["skills/graph-audit/SKILL.md", "scripts/skill-lint.js", "docs/skill-metadata-protocol.md"]
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": ["skills/graph-audit/SKILL.md", "scripts/generate-manifest.js", "examples/skills.manifest.sample.json"]
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": ["skills/graph-audit/SKILL.md", "schemas/skill.schema.json", "scripts/skill-lint.js"]
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": ["skills/graph-audit/SKILL.md", "schemas/skill.schema.json", "scripts/skill-lint.js"]
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": ["skills/graph-audit/SKILL.md", "scripts/skill-lint.js", "schemas/skill.schema.json"]
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": ["skills/graph-audit/SKILL.md"]
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": ["skills/graph-audit/SKILL.md"]
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": ["task-analysis", "taxonomy-design", "layout-composition", "microcopy"],
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": ["skills/information-architecture/SKILL.md"]
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": ["skills/information-architecture/SKILL.md"]
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": ["skills/information-architecture/SKILL.md"]
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": ["skills/information-architecture/SKILL.md"]
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": ["microcopy", "a11y", "state-machine-modeling", "performance-engineering"],
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": ["skills/interaction-feedback/SKILL.md"]
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": ["skills/interaction-feedback/SKILL.md"]
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": ["skills/interaction-feedback/SKILL.md"]
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": ["skills/interaction-feedback/SKILL.md"]
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": ["a11y", "task-analysis", "interaction-feedback", "design-system-architecture"],
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": ["skills/interaction-patterns/SKILL.md"]
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": ["skills/interaction-patterns/SKILL.md"]
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": ["skills/interaction-patterns/SKILL.md"]
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": ["skills/interaction-patterns/SKILL.md"]
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": ["task-analysis", "information-architecture", "visual-design-foundations", "design-system-architecture"],
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": ["skills/layout-composition/SKILL.md"]
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": ["skills/layout-composition/SKILL.md"]
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": ["skills/layout-composition/SKILL.md"]
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": ["skills/layout-composition/SKILL.md"]
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": ["testing-strategy", "refactor", "debugging"],
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": ["skills/lint-overlay/SKILL.md:65-82"]
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": ["skills/lint-overlay/SKILL.md:65-82"]
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": ["skills/lint-overlay/SKILL.md:118-124"]
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": ["skills/lint-overlay/SKILL.md:102-112"]
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": ["skills/lint-overlay/SKILL.md:102-112"]
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": ["skills/lint-overlay/SKILL.md:102-112"]
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": ["skills/lint-overlay/SKILL.md:65-82", "skills/lint-overlay/SKILL.md:118-124"]
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": ["skills/lint-overlay/SKILL.md:102-112", "skills/lint-overlay/SKILL.md:92-100"]
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": ["skills/lint-overlay/SKILL.md:102-112", "skills/lint-overlay/SKILL.md:92-100"]
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": ["skills/lint-overlay/SKILL.md:102-112"]
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": ["semiotics", "a11y", "interaction-feedback", "writing-humanizer"],
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": ["skills/microcopy/SKILL.md"]
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": ["skills/microcopy/SKILL.md"]
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": ["skills/microcopy/SKILL.md"]
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": ["skills/microcopy/SKILL.md"]
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": ["error-tracking", "event-contract-design", "performance-engineering", "debugging"],
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": ["skills/observability-modeling/SKILL.md"]
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": ["skills/observability-modeling/SKILL.md"]
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": ["skills/observability-modeling/SKILL.md"]
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": ["skills/observability-modeling/SKILL.md"]
60
+ "truth_sources": [
61
+ "skills/engineering/observability-modeling/SKILL.md"
62
+ ]
50
63
  }
51
64
  ]
52
65
  }