@senticor/hive 7.0.0-rc.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.
Files changed (4) hide show
  1. package/LICENSE +79 -0
  2. package/README.md +64 -0
  3. package/hive.cjs +29537 -0
  4. package/package.json +25 -0
package/LICENSE ADDED
@@ -0,0 +1,79 @@
1
+ Proprietary Software License Agreement
2
+
3
+ Copyright (c) 2025-2026 Senticor GmbH. All Rights Reserved.
4
+
5
+ NOTICE: This software and all associated documentation, source code, object code,
6
+ and related materials (collectively, the "Software") are the exclusive property of
7
+ Senticor GmbH ("Licensor") and are protected by copyright law and international
8
+ treaty provisions.
9
+
10
+ 1. LICENSE GRANT
11
+
12
+ No license, right, or interest in the Software is granted to any person or
13
+ entity except as explicitly set forth in a separate written agreement signed
14
+ by an authorized representative of Senticor GmbH.
15
+
16
+ 2. RESTRICTIONS
17
+
18
+ Unless expressly authorized in writing by Senticor GmbH, you may NOT:
19
+
20
+ a) Copy, reproduce, distribute, publish, display, or transmit the Software
21
+ in whole or in part;
22
+ b) Modify, adapt, translate, reverse engineer, decompile, disassemble, or
23
+ create derivative works based on the Software;
24
+ c) Rent, lease, loan, sell, sublicense, assign, or otherwise transfer rights
25
+ to the Software;
26
+ d) Remove, alter, or obscure any proprietary notices, labels, or marks on
27
+ the Software;
28
+ e) Use the Software for any commercial purpose without a valid commercial
29
+ license agreement.
30
+
31
+ 3. CONFIDENTIALITY
32
+
33
+ The Software contains trade secrets and confidential information belonging
34
+ to Senticor GmbH. You agree to hold the Software in strict confidence and not
35
+ to disclose any part of it to any third party without the prior written
36
+ consent of Senticor GmbH.
37
+
38
+ 4. OWNERSHIP
39
+
40
+ Senticor GmbH retains all right, title, and interest in and to the Software,
41
+ including all intellectual property rights therein. No title to or ownership
42
+ of the Software is transferred to you.
43
+
44
+ 5. TERMINATION
45
+
46
+ Any unauthorized use, reproduction, or distribution of the Software
47
+ automatically terminates any rights granted herein and may result in civil
48
+ and criminal penalties.
49
+
50
+ 6. WARRANTY DISCLAIMER
51
+
52
+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
53
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
54
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
55
+ SENTICOR GMBH BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING
56
+ FROM THE USE OF OR INABILITY TO USE THE SOFTWARE.
57
+
58
+ 7. LIMITATION OF LIABILITY
59
+
60
+ IN NO EVENT SHALL SENTICOR GMBH BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
61
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO
62
+ LOSS OF PROFITS, DATA, OR BUSINESS INTERRUPTION) ARISING OUT OF THE USE OF
63
+ OR INABILITY TO USE THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64
+ SUCH DAMAGES.
65
+
66
+ 8. GOVERNING LAW
67
+
68
+ This License Agreement shall be governed by and construed in accordance with
69
+ the laws of the Federal Republic of Germany, without regard to its conflict
70
+ of law provisions. Any disputes arising under this agreement shall be subject
71
+ to the exclusive jurisdiction of the courts of Germany.
72
+
73
+ 9. ENTIRE AGREEMENT
74
+
75
+ This License Agreement constitutes the entire agreement between the parties
76
+ with respect to the use of the Software and supersedes all prior agreements
77
+ and understandings, whether written or oral.
78
+
79
+ For licensing inquiries, please contact: legal@senticor.ai
package/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # @senticor/hive
2
+
3
+ The unified command-line interface for **Cognitive Hive OS**, packaged as a
4
+ single self-contained file. The only runtime prerequisite is **Node.js 24**.
5
+
6
+ ## Install
7
+
8
+ ```bash
9
+ # Run without installing
10
+ npx -y @senticor/hive --help
11
+
12
+ # Or install globally
13
+ npm i -g @senticor/hive
14
+ hive --help
15
+ ```
16
+
17
+ This package ships one pre-bundled `hive.cjs` with **no runtime dependencies and
18
+ no install-time scripts** — installing it only places the file on disk and links
19
+ the `hive` command. It is the same `hive.cjs` produced for the
20
+ air-gapped release, so `hive version` reports an identical build identity across
21
+ install paths.
22
+
23
+ ## Point it at your Hive
24
+
25
+ ```bash
26
+ export HIVE_API_URL=https://api.hive.example.internal
27
+ export HIVE_TENANT=acme
28
+ hive whoami
29
+ hive health deep --format json
30
+ ```
31
+
32
+ ## Updating
33
+
34
+ Because this is an npm-managed install, update it with npm — `hive upgrade` is
35
+ intentionally inert here and will tell you to:
36
+
37
+ ```bash
38
+ npm update -g @senticor/hive
39
+ ```
40
+
41
+ ## Which install path should I use?
42
+
43
+ | Use case | Install path | Trust basis |
44
+ | --- | --- | --- |
45
+ | Public evaluator | `npx -y @senticor/hive` | npm package integrity (+ provenance where available) |
46
+ | Connected enterprise dev | `npm i -g @senticor/hive` or an internal npm mirror | pinned version + SBOM + release evidence |
47
+ | **Sovereign / air-gapped production** | **Harbor/oras signed artifact or an agency-controlled mirror** | **pinned digest + signature + SBOM + offline verification** |
48
+
49
+ **This public npm package is a convenience for connected developers and
50
+ evaluators. It is _not_ the authoritative install path for German sovereign or
51
+ air-gapped production**, and publishing it to npm does not constitute BSI
52
+ certification, VS-NfD approval, or any other sovereign certification. For those
53
+ environments use the signed Harbor/oras artifact and verify it inside the target
54
+ environment — see [Hive CLI — Offline Install (Air-Gapped / Harbor)](../../docs/guides/operations/hive-cli-offline-install.md).
55
+
56
+ ## Building this package
57
+
58
+ This wrapper carries no source. The publishable tarball is assembled from the
59
+ canonical bundle in `packages/hive-cli` via an explicit (non-lifecycle) step:
60
+
61
+ ```bash
62
+ pnpm hive:npm:stage # bundles hive-cli, leak-scans, stages hive.cjs + LICENSE
63
+ cd packages/hive-cli-npm && npm pack --ignore-scripts
64
+ ```