@keepur/hive 0.1.7 → 0.1.9
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 +42 -0
- package/README.md +3 -1
- package/package.json +3 -1
- package/pkg/cli.min.js +101 -101
- package/pkg/mcp/slack.min.js +44 -0
- package/pkg/server.min.js +213 -179
- package/templates/constitution-bootstrap.md.tpl +18 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Hive Preview License
|
|
2
|
+
Copyright (c) 2026 Keepur, Inc. All rights reserved.
|
|
3
|
+
|
|
4
|
+
This software is distributed as a closed-source commercial preview. Its
|
|
5
|
+
availability on npm or any other public channel does not grant any license
|
|
6
|
+
beyond what is expressly stated below.
|
|
7
|
+
|
|
8
|
+
1. EVALUATION AND EARLY-COHORT USE. Keepur, Inc. ("Keepur") grants invited
|
|
9
|
+
early-cohort participants a non-exclusive, non-transferable, revocable
|
|
10
|
+
license to install and run the software for their own internal business
|
|
11
|
+
operations, for the duration of their invitation. Parties who are not
|
|
12
|
+
invited cohort participants may download and inspect the package for the
|
|
13
|
+
sole purpose of evaluation.
|
|
14
|
+
|
|
15
|
+
2. RESTRICTIONS. Except as permitted by a separate written agreement with
|
|
16
|
+
Keepur, you may not:
|
|
17
|
+
(a) redistribute, sublicense, sell, rent, lease, or transfer the
|
|
18
|
+
software or any portion of it;
|
|
19
|
+
(b) modify, reverse engineer, decompile, disassemble, or create
|
|
20
|
+
derivative works, except to the extent this restriction is
|
|
21
|
+
prohibited by applicable law;
|
|
22
|
+
(c) offer the software, or any portion of it, as a hosted or managed
|
|
23
|
+
service to third parties;
|
|
24
|
+
(d) use the software to build a product or service that competes with
|
|
25
|
+
offerings from Keepur;
|
|
26
|
+
(e) remove or alter copyright, trademark, or other proprietary notices.
|
|
27
|
+
|
|
28
|
+
3. NO WARRANTY. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
29
|
+
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
30
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
31
|
+
|
|
32
|
+
4. LIMITATION OF LIABILITY. IN NO EVENT SHALL KEEPUR BE LIABLE FOR ANY
|
|
33
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
34
|
+
ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
35
|
+
DEALINGS IN THE SOFTWARE.
|
|
36
|
+
|
|
37
|
+
5. TERMINATION. This license terminates automatically if you breach any of
|
|
38
|
+
its terms. Upon termination, you must cease all use of the software and
|
|
39
|
+
destroy all copies in your possession or control.
|
|
40
|
+
|
|
41
|
+
Commercial licenses with expanded rights and support are available. For
|
|
42
|
+
access or commercial licensing, contact beta@keepur.io.
|
package/README.md
CHANGED
|
@@ -57,4 +57,6 @@ hive skill remove <name> # Remove a skill
|
|
|
57
57
|
|
|
58
58
|
## License
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
Hive is closed-source commercial software, distributed in public beta under the [Hive Preview License](LICENSE). Evaluation is permitted; production use requires an invited early-cohort license or a commercial agreement.
|
|
61
|
+
|
|
62
|
+
For access or commercial licensing, contact beta@keepur.io.
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keepur/hive",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"hiveApi": "1.0.0",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
7
8
|
"hive": "pkg/cli.min.js",
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
"scripts": {
|
|
20
21
|
"build": "tsc && tsc -p tsconfig.plugins.json",
|
|
21
22
|
"build:plugins": "tsc -p tsconfig.plugins.json",
|
|
23
|
+
"postversion": "git push --follow-tags",
|
|
22
24
|
"start": "node dist/index.js",
|
|
23
25
|
"dev": "npx tsx src/index.ts",
|
|
24
26
|
"setup": "npx tsx src/cli.ts init",
|