@keepur/hive 0.2.8 → 0.3.0
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/README.md +25 -1
- package/package.json +2 -1
- package/pkg/cli.min.js +120 -117
- package/pkg/mcp/structured-memory.min.js +21 -21
- package/pkg/server.min.js +197 -194
- package/scripts/honeypot +84 -34
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ Most AI tools give you a chatbot. Hive gives you a team. Each agent has a name,
|
|
|
6
6
|
|
|
7
7
|
It runs on a Mac you already own. One Anthropic key, one Slack workspace, one install command.
|
|
8
8
|
|
|
9
|
+
> **Public beta.** Hive is in active beta. The product is solid for daily use, but the upgrade path isn't fully smooth yet — please read [Updating](#updating) before running `hive update`. We don't have a dedicated support team during beta; if you hit something weird, email [beta@keepur.io](mailto:beta@keepur.io) and a real human (one of us) will help directly.
|
|
10
|
+
|
|
9
11
|
## Install
|
|
10
12
|
|
|
11
13
|
```
|
|
@@ -29,6 +31,19 @@ curl -fsSL https://raw.githubusercontent.com/keepur/hive-docs/main/install/migra
|
|
|
29
31
|
|
|
30
32
|
Dry-run first (`--dry-run` before the instance path) to preview the file classification. Full walkthrough: [Migrating to 0.2.0](https://github.com/keepur/hive-docs/blob/main/docs/migrating-to-0.2.md). Downtime is ~5 minutes per instance; the script auto-rolls-back on health-check failure.
|
|
31
33
|
|
|
34
|
+
## Updating
|
|
35
|
+
|
|
36
|
+
While we're in beta, the most reliable way to update is to refresh the global CLI **first**, then let it update the running engine:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
npm i -g @keepur/hive@latest
|
|
40
|
+
hive update
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
The order matters. `hive update` is driven by the globally-installed CLI, and an older CLI sometimes can't drive a newer engine layout. Refreshing the CLI first sidesteps that.
|
|
44
|
+
|
|
45
|
+
If an update doesn't go cleanly, `hive doctor` will tell you what state the install is in, and `hive rollback` swaps back to the previous engine. When in doubt, email [beta@keepur.io](mailto:beta@keepur.io) — we'd rather hear from you early than have you wrestle with it alone.
|
|
46
|
+
|
|
32
47
|
## Documentation
|
|
33
48
|
|
|
34
49
|
- [Getting started](https://github.com/keepur/hive-docs/blob/main/docs/getting-started.md) — install + first conversation
|
|
@@ -59,13 +74,22 @@ hive start --daemon # Start as background service
|
|
|
59
74
|
hive stop # Stop the service
|
|
60
75
|
hive status # Service status
|
|
61
76
|
hive doctor [--verbose] # Health check (with fix hints)
|
|
62
|
-
hive update # Update to latest version
|
|
77
|
+
hive update # Update to latest version (see Updating section)
|
|
78
|
+
hive rollback # Roll back to previous engine
|
|
63
79
|
hive plugin add <pkg> # Install a plugin
|
|
64
80
|
hive plugin list # List installed plugins
|
|
65
81
|
hive plugin remove <name> # Remove a plugin
|
|
66
82
|
hive skill add <name> # Install a skill
|
|
67
83
|
hive skill list # List installed skills
|
|
84
|
+
hive skill upgrade # Upgrade installed skills
|
|
85
|
+
hive skill search <query> # Search registries for a skill
|
|
68
86
|
hive skill remove <name> # Remove a skill
|
|
87
|
+
hive registry add # Add a skill registry
|
|
88
|
+
hive registry list # List configured registries
|
|
89
|
+
hive registry remove # Remove a registry
|
|
90
|
+
hive credentials list # Show third-party API keys (curated)
|
|
91
|
+
hive credentials add <KEY> # Set or rotate a credential (Keychain-backed)
|
|
92
|
+
hive credentials remove <KEY> # Delete a credential
|
|
69
93
|
```
|
|
70
94
|
|
|
71
95
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keepur/hive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"hiveApi": "1.0.0",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"setup:seeds": "npx tsx setup/setup-seeds.ts",
|
|
41
41
|
"setup:plugins": "npx tsx setup/sync-plugins.ts",
|
|
42
42
|
"migrate:agents:legacy": "npx tsx setup/migrate-agents.ts",
|
|
43
|
+
"migrate:split-crm-contacts": "npx tsx setup/migrate-split-crm-contacts.ts",
|
|
43
44
|
"setup:plist": "npx tsx setup/generate-plist.ts",
|
|
44
45
|
"update": "git pull && npm install && npm run build",
|
|
45
46
|
"reindex": "npx tsx scripts/code-index.ts",
|