@sema-ai/registry-core 0.10.6 → 0.10.7
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 +12 -0
- package/LICENSE +103 -0
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
(始于 0.8.1;更早版本的变更记录散在 commit message 与 README「发版纪律」注记。)
|
|
4
4
|
|
|
5
|
+
## 0.10.7 (2026-07-13)
|
|
6
|
+
|
|
7
|
+
Housekeeping release — no contract changes (dist identical to 0.10.6 modulo rebuild).
|
|
8
|
+
|
|
9
|
+
- **npm hygiene** ([706] ecosystem order): strip intranet coordinates from README and
|
|
10
|
+
`repository` (now github.com/clayboby/sema-registry-core); drop `publishConfig`
|
|
11
|
+
(leg-1 registry now comes from the project `.npmrc` scope mapping, so the tarball
|
|
12
|
+
carries no internal URLs).
|
|
13
|
+
- **License**: MIT → BUSL-1.1 ([707] ecosystem ruling; prior MIT copies remain MIT).
|
|
14
|
+
- **Publish legs** ([703]): sema-release leg retired; `publish:dual` = internal source-of-truth
|
|
15
|
+
registry + npmjs (public), npmjs leg with explicit scope override.
|
|
16
|
+
|
|
5
17
|
## 0.10.6 — 2026-07-13
|
|
6
18
|
|
|
7
19
|
**新增(additive patch):`SealedApiKey.setAt?`(ISO,center 写面 server 端盖章)。** write-only 的
|
package/LICENSE
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
Parameters
|
|
4
|
+
|
|
5
|
+
Licensor: clay (github.com/clayboby)
|
|
6
|
+
Licensed Work: @sema-ai/registry-core (sema-registry-core)
|
|
7
|
+
The Licensed Work is (c) 2026 clay.
|
|
8
|
+
Additional Use Grant: You may make production use of the Licensed Work for
|
|
9
|
+
personal, educational, research, or other
|
|
10
|
+
non-commercial purposes. Commercial production use
|
|
11
|
+
requires a commercial license from the Licensor.
|
|
12
|
+
Change Date: 2030-07-13
|
|
13
|
+
Change License: Apache License, Version 2.0
|
|
14
|
+
|
|
15
|
+
For information about alternative licensing arrangements for the Licensed
|
|
16
|
+
Work, please contact the Licensor.
|
|
17
|
+
|
|
18
|
+
Notice
|
|
19
|
+
|
|
20
|
+
The Business Source License (this document, or the "License") is not an Open
|
|
21
|
+
Source license. However, the Licensed Work will eventually be made available
|
|
22
|
+
under an Open Source License, as stated in this License.
|
|
23
|
+
|
|
24
|
+
License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
|
|
25
|
+
"Business Source License" is a trademark of MariaDB Corporation Ab.
|
|
26
|
+
|
|
27
|
+
-----------------------------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
Terms
|
|
30
|
+
|
|
31
|
+
The Licensor hereby grants you the right to copy, modify, create derivative
|
|
32
|
+
works, redistribute, and make non-production use of the Licensed Work. The
|
|
33
|
+
Licensor may make an Additional Use Grant, above, permitting limited
|
|
34
|
+
production use.
|
|
35
|
+
|
|
36
|
+
Effective on the Change Date, or the fourth anniversary of the first publicly
|
|
37
|
+
available distribution of a specific version of the Licensed Work under this
|
|
38
|
+
License, whichever comes first, the Licensor hereby grants you rights under
|
|
39
|
+
the terms of the Change License, and the rights granted in the paragraph
|
|
40
|
+
above terminate.
|
|
41
|
+
|
|
42
|
+
If your use of the Licensed Work does not comply with the requirements
|
|
43
|
+
currently in effect as described in this License, you must purchase a
|
|
44
|
+
commercial license from the Licensor, its affiliated entities, or authorized
|
|
45
|
+
resellers, or you must refrain from using the Licensed Work.
|
|
46
|
+
|
|
47
|
+
All copies of the original and modified Licensed Work, and derivative works
|
|
48
|
+
of the Licensed Work, are subject to this License. This License applies
|
|
49
|
+
separately for each version of the Licensed Work and the Change Date may vary
|
|
50
|
+
for each version of the Licensed Work released by Licensor.
|
|
51
|
+
|
|
52
|
+
You must conspicuously display this License on each original or modified copy
|
|
53
|
+
of the Licensed Work. If you receive the Licensed Work in original or
|
|
54
|
+
modified form from a third party, the terms and conditions set forth in this
|
|
55
|
+
License apply to your use of that work.
|
|
56
|
+
|
|
57
|
+
Any use of the Licensed Work in violation of this License will automatically
|
|
58
|
+
terminate your rights under this License for the current and all other
|
|
59
|
+
versions of the Licensed Work.
|
|
60
|
+
|
|
61
|
+
This License does not grant you any right in any trademark or logo of
|
|
62
|
+
Licensor or its affiliates (provided that you may use a trademark or logo of
|
|
63
|
+
Licensor as expressly required by this License).
|
|
64
|
+
|
|
65
|
+
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
|
|
66
|
+
AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
|
|
67
|
+
EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
|
|
68
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
|
|
69
|
+
TITLE.
|
|
70
|
+
|
|
71
|
+
MariaDB hereby grants you permission to use this License's text to license
|
|
72
|
+
your works, and to refer to it using the trademark "Business Source License",
|
|
73
|
+
as long as you comply with the Covenants of Licensor below.
|
|
74
|
+
|
|
75
|
+
Covenants of Licensor
|
|
76
|
+
|
|
77
|
+
In consideration of the right to use this License's text and the "Business
|
|
78
|
+
Source License" name and trademark, Licensor covenants to MariaDB, and to all
|
|
79
|
+
other recipients of the licensed work to be provided by Licensor:
|
|
80
|
+
|
|
81
|
+
1. To specify as the Change License the GPL Version 2.0 or any later version,
|
|
82
|
+
or a license that is compatible with GPL Version 2.0 or a later version,
|
|
83
|
+
where "compatible" means that software provided under the Change License can
|
|
84
|
+
be included in a program with software provided under GPL Version 2.0 or a
|
|
85
|
+
later version. Licensor may specify additional Change Licenses without
|
|
86
|
+
limitation.
|
|
87
|
+
|
|
88
|
+
2. To either: (a) specify an additional grant of rights to use that does not
|
|
89
|
+
impose any additional restriction on the right granted in this License, as
|
|
90
|
+
the Additional Use Grant; or (b) insert the text "None".
|
|
91
|
+
|
|
92
|
+
3. To specify a Change Date.
|
|
93
|
+
|
|
94
|
+
4. Not to modify this License in any other way.
|
|
95
|
+
|
|
96
|
+
-----------------------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
Third-party notices
|
|
99
|
+
|
|
100
|
+
Versions of this package up to and including 1.277.1 were published under the
|
|
101
|
+
MIT License; those published copies remain governed by the license they were
|
|
102
|
+
distributed under. This package incorporates design and (where noted) prompt
|
|
103
|
+
content adapted from MIT-licensed projects — see NOTICE.md for attributions.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @sema-ai/registry-core
|
|
2
2
|
|
|
3
3
|
Pure config contract — **one source of truth** for the AI-agent config domain, shared by
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
`sema-registry` (the TOB fleet admin),
|
|
5
|
+
`sema-server` (the workers), and the future
|
|
6
6
|
TOC desktop/CLI. No two copies of the schema.
|
|
7
7
|
|
|
8
8
|
The package is **pure**: zero `next`/`react`/server imports, zero DB drivers. `zod` is a peer dependency
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sema-ai/registry-core",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.7",
|
|
4
4
|
"description": "Sema Registry core — pure config contract (zod domains + effective-config + roster resolution + ref-integrity + remoteExec) shared by sema-registry, sema-server, and the TOC desktop/CLI. One source of truth. (Formerly @sema-ai/registry-core; old name remains published, frozen, for migration.)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "BUSL-1.1",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "
|
|
9
|
+
"url": "https://github.com/clayboby/sema-registry-core.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"ai",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"e2e": "node examples/toc-e2e.mjs",
|
|
117
117
|
"prepare": "npm run build",
|
|
118
118
|
"prepublishOnly": "npm run build && npm run test",
|
|
119
|
-
"publish:dual": "npm publish && npm publish --@sema-ai:registry=
|
|
119
|
+
"publish:dual": "npm publish && npm publish --access public --@sema-ai:registry=https://registry.npmjs.org/ --\"//registry.npmjs.org/:_authToken=${NPM_TOKEN}\""
|
|
120
120
|
},
|
|
121
121
|
"devDependencies": {
|
|
122
122
|
"@sema-ai/core": "^1.153.0",
|
|
@@ -127,4 +127,4 @@
|
|
|
127
127
|
"dependencies": {
|
|
128
128
|
"zod": "^3.24.0"
|
|
129
129
|
}
|
|
130
|
-
}
|
|
130
|
+
}
|