@undes.ai/core-darwin-arm64 0.0.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/LICENSE.md +23 -0
- package/README.md +23 -0
- package/package.json +33 -0
- package/undes-napi.darwin-arm64.node +0 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @undes.ai/core-darwin-arm64 — Proprietary
|
|
2
|
+
|
|
3
|
+
Copyright © 2026 Hominoitea / Undes. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This package contains the proprietary Undes Rust verification core
|
|
6
|
+
binary built for the `darwin-arm64` platform target. **No license is
|
|
7
|
+
granted by virtue of receiving access** to the binary, the package
|
|
8
|
+
metadata, or the surrounding files. The binary is consumed by the
|
|
9
|
+
public `@undes.ai/cli` npm package through `optionalDependencies`;
|
|
10
|
+
outside of that consumption path the package is not intended as a
|
|
11
|
+
standalone API surface.
|
|
12
|
+
|
|
13
|
+
Community users of `@undes.ai/cli` receive this binary free of
|
|
14
|
+
charge under the existing Community license terms: individual
|
|
15
|
+
developers may use it on their own initiative — including while
|
|
16
|
+
working on commercial products — without a paid license; regular
|
|
17
|
+
team or company integration requires Pro or Enterprise.
|
|
18
|
+
|
|
19
|
+
Authoritative decision record:
|
|
20
|
+
`docs/commercialization/rust-core-licensing-decision.md` (Codex /
|
|
21
|
+
Claude / operator consensus 2026-05-23).
|
|
22
|
+
|
|
23
|
+
For licensing inquiries: zhal.mouse.kemper@gmail.com.
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @undes.ai/core-darwin-arm64
|
|
2
|
+
|
|
3
|
+
**Proprietary Undes Rust verification core binary for `darwin-arm64`.**
|
|
4
|
+
|
|
5
|
+
This package ships a single platform-specific `.node` artefact
|
|
6
|
+
built from the private `native/undes-napi/` cdylib. It is
|
|
7
|
+
consumed by the public `@undes.ai/cli` npm package through
|
|
8
|
+
`optionalDependencies`; outside of
|
|
9
|
+
that consumption path the package has no public API surface.
|
|
10
|
+
|
|
11
|
+
Build provenance: the binary is produced by the Undes CI matrix
|
|
12
|
+
running `napi build --target <triple> --release` on a matching
|
|
13
|
+
runner; CI then copies the resulting `.node` into this package
|
|
14
|
+
directory before any draft publish. Skeleton packages without a
|
|
15
|
+
real binary are never published or tested — see the design doc
|
|
16
|
+
`ai/design/features/CANDIDATE_A_EVIDENCE_ANCHOR_RUST.md` A3.2b
|
|
17
|
+
row for the contract.
|
|
18
|
+
|
|
19
|
+
For details on the broader Undes project: <https://github.com/HominoITea/undes>.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
Proprietary — see [`LICENSE.md`](LICENSE.md).
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@undes.ai/core-darwin-arm64",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Undes Rust verification core — macOS arm64 (Apple Silicon) prebuilt binary. Proprietary; consumed by @undes.ai/cli through optionalDependencies. Built from private source in the Undes CI matrix; this package is not directly usable as an API surface.",
|
|
5
|
+
"main": "undes-napi.darwin-arm64.node",
|
|
6
|
+
"files": [
|
|
7
|
+
"undes-napi.darwin-arm64.node",
|
|
8
|
+
"LICENSE.md",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
12
|
+
"homepage": "https://github.com/HominoITea/undes",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/HominoITea/undes.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/HominoITea/undes/issues"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"prepack": "node -e \"require('fs').accessSync(require('./package.json').main)\""
|
|
25
|
+
},
|
|
26
|
+
"os": [
|
|
27
|
+
"darwin"
|
|
28
|
+
],
|
|
29
|
+
"cpu": [
|
|
30
|
+
"arm64"
|
|
31
|
+
],
|
|
32
|
+
"private": false
|
|
33
|
+
}
|
|
Binary file
|