@keepur/hive 0.2.8 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +17 -1
  2. package/package.json +1 -1
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,7 +74,8 @@ 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keepur/hive",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "hiveApi": "1.0.0",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",