@kungfu-tech/kfd 1.0.0-alpha.0 → 1.0.0-alpha.1
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/README.md +6 -2
- package/decisions/kfd-1.md +6 -4
- package/package.json +19 -5
package/README.md
CHANGED
|
@@ -146,7 +146,9 @@ scripts/ conformance check: registry and documents must agree
|
|
|
146
146
|
`node scripts/check.mjs` (also `pnpm run check`) verifies numbering
|
|
147
147
|
uniqueness, registry/document agreement, status validity, and the release
|
|
148
148
|
impact ledger required by Buildchain production release passports. Releases are
|
|
149
|
-
governed by Buildchain; this package versions itself under KFD-1's own rules
|
|
149
|
+
governed by Buildchain; this package versions itself under KFD-1's own rules:
|
|
150
|
+
the outer package line remains `v1.0`, while patch and prerelease numbers are
|
|
151
|
+
advanced by Buildchain release promotion.
|
|
150
152
|
|
|
151
153
|
## Release impact ledger
|
|
152
154
|
|
|
@@ -160,7 +162,9 @@ release-passport-impact-json: release-impact.json
|
|
|
160
162
|
For ordinary KFD content changes, keep `kfd-content` at `patch`. Move
|
|
161
163
|
`kfd-registry-schema` or `kfd-package-structure` to `minor` or `major` only
|
|
162
164
|
when those machine-consumed surfaces add or break fields, meanings, package
|
|
163
|
-
paths, or published structure under KFD-1.
|
|
165
|
+
paths, or published structure under KFD-1. These values are Buildchain release
|
|
166
|
+
passport impact classifications; they do not by themselves open a new
|
|
167
|
+
`@kungfu-tech/kfd` package major or minor line.
|
|
164
168
|
|
|
165
169
|
## License
|
|
166
170
|
|
package/decisions/kfd-1.md
CHANGED
|
@@ -157,10 +157,12 @@ and does not drift invisibly.
|
|
|
157
157
|
KFD documents are append-only. A KFD's number is immutable and is the
|
|
158
158
|
content-layer coordinate; substantive semantic change is made by minting a new
|
|
159
159
|
KFD that supersedes the old number (namespace welding applied to decisions).
|
|
160
|
-
Consequently, in the `@kungfu-tech/kfd` package,
|
|
161
|
-
|
|
162
|
-
surfaces of the package itself (the
|
|
163
|
-
can
|
|
160
|
+
Consequently, in the `@kungfu-tech/kfd` package, the outer package line stays
|
|
161
|
+
fixed at `v1.0`. Content operations — new KFDs, status flips, editorial
|
|
162
|
+
clarifications — are patches. Machine surfaces of the package itself (the
|
|
163
|
+
registry schema, the package structure) can still require `minor` or `major`
|
|
164
|
+
surface-impact review in the Buildchain release passport, but that review
|
|
165
|
+
classification is not a silent package-line upgrade.
|
|
164
166
|
|
|
165
167
|
## Adopters
|
|
166
168
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kungfu-tech/kfd",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.1",
|
|
4
4
|
"description": "Kung Fu Decisions (KFD): the kungfu-systems organization-wide decision registry, as a consumable artifact",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"files": [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
"files": [
|
|
7
|
+
"README.md",
|
|
8
|
+
"decisions",
|
|
9
|
+
"registry.json",
|
|
10
|
+
"site",
|
|
11
|
+
"docs"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"check": "node scripts/check.mjs"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"registry": "https://registry.npmjs.org/",
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/kungfu-systems/kfd.git"
|
|
23
|
+
}
|
|
10
24
|
}
|