skill-family-engineering-kit 0.1.0

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 (80) hide show
  1. package/CODE_OF_CONDUCT.md +131 -0
  2. package/CONTRIBUTING.md +69 -0
  3. package/LICENSE +201 -0
  4. package/README.md +74 -0
  5. package/SECURITY.md +34 -0
  6. package/data/licensing/registry.json +211 -0
  7. package/data/licensing/schema.json +207 -0
  8. package/docs/.nojekyll +0 -0
  9. package/docs/404.html +613 -0
  10. package/docs/architecture/index.html +904 -0
  11. package/docs/assets/images/favicon.png +0 -0
  12. package/docs/assets/javascripts/bundle.d7400e89.min.js +16 -0
  13. package/docs/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
  14. package/docs/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
  15. package/docs/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
  16. package/docs/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
  17. package/docs/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
  18. package/docs/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
  19. package/docs/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
  20. package/docs/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
  21. package/docs/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
  22. package/docs/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
  23. package/docs/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
  24. package/docs/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
  25. package/docs/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
  26. package/docs/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
  27. package/docs/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
  28. package/docs/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
  29. package/docs/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
  30. package/docs/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
  31. package/docs/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
  32. package/docs/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
  33. package/docs/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
  34. package/docs/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
  35. package/docs/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
  36. package/docs/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
  37. package/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
  38. package/docs/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
  39. package/docs/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
  40. package/docs/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
  41. package/docs/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
  42. package/docs/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
  43. package/docs/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
  44. package/docs/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
  45. package/docs/assets/javascripts/lunr/tinyseg.js +206 -0
  46. package/docs/assets/javascripts/lunr/wordcut.js +6708 -0
  47. package/docs/assets/javascripts/workers/search.2c215733.min.js +42 -0
  48. package/docs/assets/stylesheets/main.ec1eaa64.min.css +1 -0
  49. package/docs/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
  50. package/docs/git-lifecycle/index.html +976 -0
  51. package/docs/help/index.html +907 -0
  52. package/docs/index.html +837 -0
  53. package/docs/integration/audit/baseline/audit-codes.json +62 -0
  54. package/docs/integration/audit/failure-evidence/index.html +872 -0
  55. package/docs/integration/audit/independence/index.html +841 -0
  56. package/docs/integration/audit/index.html +826 -0
  57. package/docs/integration/audit/mutation-taxonomy/index.html +1022 -0
  58. package/docs/integration/audit/schemas/audit-evidence.schema.json +182 -0
  59. package/docs/integration/audit/version-compatibility/index.html +845 -0
  60. package/docs/migration/index.html +1213 -0
  61. package/docs/quickstart/index.html +842 -0
  62. package/docs/search/search_index.json +1 -0
  63. package/docs/setup/index.html +941 -0
  64. package/docs/sitemap.xml +51 -0
  65. package/package.json +42 -0
  66. package/src/adopt-plan.mjs +594 -0
  67. package/src/check.mjs +415 -0
  68. package/src/cli.mjs +230 -0
  69. package/src/errors.mjs +144 -0
  70. package/src/gitprobe.mjs +230 -0
  71. package/src/identity-check.mjs +563 -0
  72. package/src/index.mjs +233 -0
  73. package/src/license-texts/Apache-2.0.txt +201 -0
  74. package/src/license-texts/MIT.txt +21 -0
  75. package/src/licensing.mjs +299 -0
  76. package/src/migration.mjs +427 -0
  77. package/src/projection.mjs +397 -0
  78. package/src/scaffold.mjs +178 -0
  79. package/src/skeleton.mjs +886 -0
  80. package/src/workspace.mjs +236 -0
@@ -0,0 +1,211 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "kind": "skill-family.licensing-profile-registry",
4
+ "profiles": [
5
+ {
6
+ "schemaVersion": 1,
7
+ "kind": "skill-family.licensing-profile",
8
+ "profile": {
9
+ "id": "open-source",
10
+ "name": "Open Source",
11
+ "variant": "default"
12
+ },
13
+ "licensing": {
14
+ "spdx": "Apache-2.0",
15
+ "noticeRequired": true,
16
+ "copyrightStrategy": "company",
17
+ "copyrightYear": 2026
18
+ },
19
+ "identity": {
20
+ "authors": [
21
+ {
22
+ "id": "guangzhou-fenghe",
23
+ "displayName": "广州市风荷科技有限公司",
24
+ "role": "author"
25
+ }
26
+ ],
27
+ "displayValue": "广州市风荷科技有限公司",
28
+ "ownerSeparation": {
29
+ "required": true,
30
+ "deriveOwnerFromAuthor": false
31
+ }
32
+ },
33
+ "preservation": {
34
+ "notice": "preserve",
35
+ "thirdPartyLicenses": "preserve",
36
+ "historicalCopyright": "preserve",
37
+ "unresolvedHistoricalAction": "report-only"
38
+ },
39
+ "commercial": {
40
+ "enabled": false,
41
+ "triggerCondition": "explicit-decision-only"
42
+ }
43
+ },
44
+ {
45
+ "schemaVersion": 1,
46
+ "kind": "skill-family.licensing-profile",
47
+ "profile": {
48
+ "id": "marketplace",
49
+ "name": "Marketplace",
50
+ "variant": "default"
51
+ },
52
+ "licensing": {
53
+ "spdx": "MIT",
54
+ "noticeRequired": false,
55
+ "copyrightStrategy": "company",
56
+ "copyrightYear": 2026
57
+ },
58
+ "identity": {
59
+ "authors": [
60
+ {
61
+ "id": "guangzhou-fenghe",
62
+ "displayName": "广州市风荷科技有限公司",
63
+ "role": "author"
64
+ }
65
+ ],
66
+ "displayValue": "广州市风荷科技有限公司",
67
+ "ownerSeparation": {
68
+ "required": true,
69
+ "deriveOwnerFromAuthor": false
70
+ }
71
+ },
72
+ "preservation": {
73
+ "notice": "preserve",
74
+ "thirdPartyLicenses": "preserve",
75
+ "historicalCopyright": "preserve",
76
+ "unresolvedHistoricalAction": "report-only"
77
+ },
78
+ "commercial": {
79
+ "enabled": false,
80
+ "triggerCondition": "explicit-decision-only"
81
+ }
82
+ },
83
+ {
84
+ "schemaVersion": 1,
85
+ "kind": "skill-family.licensing-profile",
86
+ "profile": {
87
+ "id": "fictional-collective",
88
+ "name": "Fictional Collective (Community)",
89
+ "variant": "community"
90
+ },
91
+ "licensing": {
92
+ "spdx": "Apache-2.0",
93
+ "noticeRequired": true,
94
+ "copyrightStrategy": "company-and-contributors",
95
+ "copyrightYear": 2026
96
+ },
97
+ "identity": {
98
+ "authors": [
99
+ {
100
+ "id": "fictional-author-alpha",
101
+ "displayName": "Fictional Author Alpha",
102
+ "role": "author"
103
+ },
104
+ {
105
+ "id": "fictional-author-beta",
106
+ "displayName": "Fictional Author Beta",
107
+ "role": "author"
108
+ }
109
+ ],
110
+ "displayValue": "Fictional Author Alpha and Fictional Author Beta",
111
+ "ownerSeparation": {
112
+ "required": true,
113
+ "deriveOwnerFromAuthor": false
114
+ }
115
+ },
116
+ "preservation": {
117
+ "notice": "preserve",
118
+ "thirdPartyLicenses": "preserve",
119
+ "historicalCopyright": "preserve",
120
+ "unresolvedHistoricalAction": "report-only"
121
+ },
122
+ "commercial": {
123
+ "enabled": false,
124
+ "triggerCondition": "explicit-decision-only"
125
+ }
126
+ },
127
+ {
128
+ "schemaVersion": 1,
129
+ "kind": "skill-family.licensing-profile",
130
+ "profile": {
131
+ "id": "fictional-collective",
132
+ "name": "Fictional Collective (Marketplace)",
133
+ "variant": "marketplace"
134
+ },
135
+ "licensing": {
136
+ "spdx": "MIT",
137
+ "noticeRequired": false,
138
+ "copyrightStrategy": "company-and-contributors",
139
+ "copyrightYear": 2026
140
+ },
141
+ "identity": {
142
+ "authors": [
143
+ {
144
+ "id": "fictional-author-alpha",
145
+ "displayName": "Fictional Author Alpha",
146
+ "role": "author"
147
+ },
148
+ {
149
+ "id": "fictional-author-beta",
150
+ "displayName": "Fictional Author Beta",
151
+ "role": "author"
152
+ }
153
+ ],
154
+ "displayValue": "Fictional Author Alpha and Fictional Author Beta",
155
+ "ownerSeparation": {
156
+ "required": true,
157
+ "deriveOwnerFromAuthor": false
158
+ }
159
+ },
160
+ "preservation": {
161
+ "notice": "preserve",
162
+ "thirdPartyLicenses": "preserve",
163
+ "historicalCopyright": "preserve",
164
+ "unresolvedHistoricalAction": "report-only"
165
+ },
166
+ "commercial": {
167
+ "enabled": false,
168
+ "triggerCondition": "explicit-decision-only"
169
+ }
170
+ },
171
+ {
172
+ "schemaVersion": 1,
173
+ "kind": "skill-family.licensing-profile",
174
+ "profile": {
175
+ "id": "open-core-commercial",
176
+ "name": "Open Core Commercial",
177
+ "variant": "default"
178
+ },
179
+ "licensing": {
180
+ "spdx": "MIT",
181
+ "noticeRequired": false,
182
+ "copyrightStrategy": "company",
183
+ "copyrightYear": 2026
184
+ },
185
+ "identity": {
186
+ "authors": [
187
+ {
188
+ "id": "guangzhou-fenghe",
189
+ "displayName": "广州市风荷科技有限公司",
190
+ "role": "author"
191
+ }
192
+ ],
193
+ "displayValue": "广州市风荷科技有限公司",
194
+ "ownerSeparation": {
195
+ "required": true,
196
+ "deriveOwnerFromAuthor": false
197
+ }
198
+ },
199
+ "preservation": {
200
+ "notice": "preserve",
201
+ "thirdPartyLicenses": "preserve",
202
+ "historicalCopyright": "preserve",
203
+ "unresolvedHistoricalAction": "report-only"
204
+ },
205
+ "commercial": {
206
+ "enabled": false,
207
+ "triggerCondition": "explicit-first-commercial-feature-decision"
208
+ }
209
+ }
210
+ ]
211
+ }
@@ -0,0 +1,207 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "skill-family.licensing-profile-registry",
4
+ "title": "Skill Family Licensing Profile Registry",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "required": [
8
+ "schemaVersion",
9
+ "kind",
10
+ "profiles"
11
+ ],
12
+ "properties": {
13
+ "schemaVersion": {
14
+ "const": 1
15
+ },
16
+ "kind": {
17
+ "const": "skill-family.licensing-profile-registry"
18
+ },
19
+ "profiles": {
20
+ "type": "array",
21
+ "minItems": 1,
22
+ "items": {
23
+ "$ref": "#/$defs/profile"
24
+ }
25
+ }
26
+ },
27
+ "$defs": {
28
+ "profile": {
29
+ "type": "object",
30
+ "additionalProperties": false,
31
+ "required": [
32
+ "schemaVersion",
33
+ "kind",
34
+ "profile",
35
+ "licensing",
36
+ "identity",
37
+ "preservation",
38
+ "commercial"
39
+ ],
40
+ "properties": {
41
+ "schemaVersion": {
42
+ "const": 1
43
+ },
44
+ "kind": {
45
+ "const": "skill-family.licensing-profile"
46
+ },
47
+ "profile": {
48
+ "type": "object",
49
+ "additionalProperties": false,
50
+ "required": [
51
+ "id",
52
+ "name",
53
+ "variant"
54
+ ],
55
+ "properties": {
56
+ "id": {
57
+ "type": "string",
58
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
59
+ },
60
+ "name": {
61
+ "type": "string",
62
+ "minLength": 1
63
+ },
64
+ "variant": {
65
+ "type": "string",
66
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
67
+ }
68
+ }
69
+ },
70
+ "licensing": {
71
+ "type": "object",
72
+ "additionalProperties": false,
73
+ "required": [
74
+ "spdx",
75
+ "noticeRequired",
76
+ "copyrightStrategy",
77
+ "copyrightYear"
78
+ ],
79
+ "properties": {
80
+ "spdx": {
81
+ "enum": [
82
+ "Apache-2.0",
83
+ "MIT"
84
+ ]
85
+ },
86
+ "noticeRequired": {
87
+ "type": "boolean"
88
+ },
89
+ "copyrightStrategy": {
90
+ "enum": [
91
+ "company",
92
+ "contributors",
93
+ "company-and-contributors"
94
+ ]
95
+ },
96
+ "copyrightYear": {
97
+ "type": "integer",
98
+ "minimum": 2000,
99
+ "maximum": 9999
100
+ }
101
+ }
102
+ },
103
+ "identity": {
104
+ "type": "object",
105
+ "additionalProperties": false,
106
+ "required": [
107
+ "authors",
108
+ "displayValue",
109
+ "ownerSeparation"
110
+ ],
111
+ "properties": {
112
+ "authors": {
113
+ "type": "array",
114
+ "minItems": 1,
115
+ "items": {
116
+ "type": "object",
117
+ "additionalProperties": false,
118
+ "required": [
119
+ "id",
120
+ "displayName",
121
+ "role"
122
+ ],
123
+ "properties": {
124
+ "id": {
125
+ "type": "string",
126
+ "minLength": 1
127
+ },
128
+ "displayName": {
129
+ "type": "string",
130
+ "minLength": 1
131
+ },
132
+ "role": {
133
+ "enum": [
134
+ "author",
135
+ "contributor"
136
+ ]
137
+ }
138
+ }
139
+ }
140
+ },
141
+ "displayValue": {
142
+ "type": "string",
143
+ "minLength": 1
144
+ },
145
+ "ownerSeparation": {
146
+ "type": "object",
147
+ "additionalProperties": false,
148
+ "required": [
149
+ "required",
150
+ "deriveOwnerFromAuthor"
151
+ ],
152
+ "properties": {
153
+ "required": {
154
+ "const": true
155
+ },
156
+ "deriveOwnerFromAuthor": {
157
+ "const": false
158
+ }
159
+ }
160
+ }
161
+ }
162
+ },
163
+ "preservation": {
164
+ "type": "object",
165
+ "additionalProperties": false,
166
+ "required": [
167
+ "notice",
168
+ "thirdPartyLicenses",
169
+ "historicalCopyright",
170
+ "unresolvedHistoricalAction"
171
+ ],
172
+ "properties": {
173
+ "notice": {
174
+ "const": "preserve"
175
+ },
176
+ "thirdPartyLicenses": {
177
+ "const": "preserve"
178
+ },
179
+ "historicalCopyright": {
180
+ "const": "preserve"
181
+ },
182
+ "unresolvedHistoricalAction": {
183
+ "const": "report-only"
184
+ }
185
+ }
186
+ },
187
+ "commercial": {
188
+ "type": "object",
189
+ "additionalProperties": false,
190
+ "required": [
191
+ "enabled",
192
+ "triggerCondition"
193
+ ],
194
+ "properties": {
195
+ "enabled": {
196
+ "const": false
197
+ },
198
+ "triggerCondition": {
199
+ "type": "string",
200
+ "minLength": 1
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
package/docs/.nojekyll ADDED
File without changes