@one-agent-ctx/runtime-darwin-x64 0.1.2
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/LICENSE +662 -0
- package/NOTICE +66 -0
- package/README.md +14 -0
- package/SOURCE.md +7 -0
- package/THIRD-PARTY-NOTICES.md +982 -0
- package/agent-ctx-os +0 -0
- package/component.json +16 -0
- package/package.json +38 -0
package/NOTICE
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
NOTICE — agent-context-os
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
This product is licensed under the GNU Affero General Public License v3.0
|
|
5
|
+
(see LICENSE).
|
|
6
|
+
|
|
7
|
+
Derived work and attribution
|
|
8
|
+
----------------------------
|
|
9
|
+
|
|
10
|
+
agent-context-os is a Rust re-implementation (copy-port) of the server-side
|
|
11
|
+
core capabilities of volcengine/OpenViking, pinned at upstream commit
|
|
12
|
+
94ff079f514f0803ae1777b17142586f8ed1df4c (vendored as the git submodule
|
|
13
|
+
at ./OpenViking for reference).
|
|
14
|
+
|
|
15
|
+
Inherited / derived components:
|
|
16
|
+
|
|
17
|
+
1. crates/ovcore (planned)
|
|
18
|
+
Fork of OpenViking's crates/ragfs (Apache-2.0, (c) upstream
|
|
19
|
+
contributors). Apache-2.0 code is included under its terms; the
|
|
20
|
+
combined work remains AGPL-3.0.
|
|
21
|
+
|
|
22
|
+
2. engine-cpp / engine-shim (planned)
|
|
23
|
+
Vendored from OpenViking's src/ C++ vector engine (AGPL-3.0, (c)
|
|
24
|
+
Beijing Volcano Engine Technology Co., Ltd.), linked via a thin C ABI
|
|
25
|
+
shim. SPDX headers preserved.
|
|
26
|
+
|
|
27
|
+
3. Ported Python -> Rust
|
|
28
|
+
The business orchestration layer (ingestion, semantic layering,
|
|
29
|
+
retrieval, assembly, sessions/memory, skills, snapshot) is a
|
|
30
|
+
function-by-function translation of OpenViking's Python layer
|
|
31
|
+
(AGPL-3.0, (c) Beijing Volcano Engine Technology Co., Ltd.).
|
|
32
|
+
Ported files carry source-path and commit annotations in their
|
|
33
|
+
headers, as required by our porting discipline (ADR-15).
|
|
34
|
+
|
|
35
|
+
4. Prompt templates and memory-type YAML definitions
|
|
36
|
+
Reused verbatim from OpenViking
|
|
37
|
+
(openviking/prompts/templates/, AGPL-3.0), snapshotted at
|
|
38
|
+
contracts/golden/memory-types/.
|
|
39
|
+
|
|
40
|
+
Upstream project: https://github.com/volcengine/OpenViking
|
|
41
|
+
|
|
42
|
+
License scope
|
|
43
|
+
-------------
|
|
44
|
+
- The AGPL-3.0 license above covers this repository as a whole, including the
|
|
45
|
+
sidecar binary (engine-cpp / leveldb / krl) and its platform packages.
|
|
46
|
+
- Exception: packages/client/ is an independent implementation of the HTTP
|
|
47
|
+
protocol plus generated type declarations. It contains no code copied or
|
|
48
|
+
translated from AGPL sources and is licensed under MIT (see
|
|
49
|
+
packages/client/LICENSE). Any file derived from AGPL sources must live
|
|
50
|
+
outside packages/client/.
|
|
51
|
+
- Decided (2026-09-13, product owner): the TypeScript declarations in
|
|
52
|
+
packages/client/src/generated/ are ```type declarations``` generated from
|
|
53
|
+
crates/agent-ctx-os-contract. They are not treated as a derivative work and
|
|
54
|
+
are distributed under MIT together with the rest of packages/client/.
|
|
55
|
+
Scope of this decision: type declarations only. The sidecar binary and its
|
|
56
|
+
platform packages remain AGPL-3.0 (static engine-cpp/leveldb/krl link chain)
|
|
57
|
+
and are unaffected; the releaseGate recorded in consumers' ctx-runtime locks
|
|
58
|
+
applies to that component, not to this package.
|
|
59
|
+
|
|
60
|
+
SPDX policy
|
|
61
|
+
-----------
|
|
62
|
+
- Every inherited or translated source file keeps the upstream SPDX
|
|
63
|
+
identifier and copyright notice.
|
|
64
|
+
- Translation-source annotations: `// ported-from: <upstream path>@<commit>`
|
|
65
|
+
on ported files.
|
|
66
|
+
- This NOTICE must be distributed with the product.
|
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# @one-agent-ctx/runtime-darwin-x64
|
|
2
|
+
|
|
3
|
+
`agent-ctx-os` 运行时内核的 **darwin-x64** 构建(版本 0.1.2,协议 1.2)。
|
|
4
|
+
|
|
5
|
+
这是 `@one-agent-ctx/runtime` 的实现包:由 loader 通过 `optionalDependencies` 按平台自动选装,通常不需要直接依赖它。用 loader 解析路径并核对身份:
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
import { binaryPath, verifyBinary } from '@one-agent-ctx/runtime'
|
|
9
|
+
console.log(binaryPath(), verifyBinary())
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
- 二进制:`agent-ctx-os`(sha256 `0c8eacf0a3f0750453032d34c6df6c5157ab93727ae83d09d247efe0d5cc41ee`)
|
|
13
|
+
- 描述符:`component.json`(版本/协议/digest/source_revision 的唯一权威)
|
|
14
|
+
- 许可证:AGPL-3.0-only,对应源码见 `SOURCE.md`
|
package/SOURCE.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# 对应源码(AGPL-3.0 §6)
|
|
2
|
+
|
|
3
|
+
内核 `agent-ctx-os` 的 darwin-amd64(0.1.2) 构建以 AGPL-3.0-only 分发。
|
|
4
|
+
|
|
5
|
+
对应源码 = 公开仓 github.com/wocrab/one-ctx(2026-09-13 以单提交重建并公开) 的全量 AGPL-3.0 源码:Rust 契约(crates/agent-ctx-os-contract)、内核(crates/agent-ctx-os-core / agent-ctx-os-server)、C++ 引擎与其 shim(vendor/engine-cpp、engine-shim)、构建配方(scripts/,含 Cargo.lock 与 build-env.sh)、第三方组件与许可见证(packages/runtime/third-party-inventory.json)。每个已发布平台包的 component.json 记录构建它的 source_revision 与 source_tree_id,可在该公开仓检出对应提交重建。
|
|
6
|
+
|
|
7
|
+
对应源码:https://github.com/wocrab/one-ctx
|