@keepur/hive 0.1.9 → 0.1.10

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 +5 -5
  2. package/package.json +10 -1
package/README.md CHANGED
@@ -10,7 +10,7 @@ It runs on a Mac you already own. One Anthropic key, one Slack workspace, one in
10
10
 
11
11
  ```
12
12
  # Fresh Mac
13
- curl -fsSL https://raw.githubusercontent.com/keepur/hive/main/install/bootstrap.sh | bash
13
+ curl -fsSL https://raw.githubusercontent.com/keepur/hive-docs/main/install/bootstrap.sh | bash
14
14
 
15
15
  # Already have Node 22
16
16
  npm i -g @keepur/hive && hive init
@@ -20,9 +20,9 @@ The bootstrap installs Homebrew and Node 22, then drops you into the `hive init`
20
20
 
21
21
  ## Documentation
22
22
 
23
- - [Getting started](docs/getting-started.md) — install + first conversation
24
- - [Managing your hive](docs/managing-your-hive.md) — plugins, skills, day-two ops
25
- - [Troubleshooting](docs/troubleshooting.md) — when things break
23
+ - [Getting started](https://github.com/keepur/hive-docs/blob/main/docs/getting-started.md) — install + first conversation
24
+ - [Managing your hive](https://github.com/keepur/hive-docs/blob/main/docs/managing-your-hive.md) — plugins, skills, day-two ops
25
+ - [Troubleshooting](https://github.com/keepur/hive-docs/blob/main/docs/troubleshooting.md) — when things break
26
26
 
27
27
  ## What you get
28
28
 
@@ -57,6 +57,6 @@ hive skill remove <name> # Remove a skill
57
57
 
58
58
  ## License
59
59
 
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.
60
+ Hive is closed-source commercial software, distributed in public beta under the [Hive Preview License](https://github.com/keepur/hive-docs/blob/main/LICENSE). Evaluation is permitted; production use requires an invited early-cohort license or a commercial agreement.
61
61
 
62
62
  For access or commercial licensing, contact beta@keepur.io.
package/package.json CHANGED
@@ -1,9 +1,18 @@
1
1
  {
2
2
  "name": "@keepur/hive",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "hiveApi": "1.0.0",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/keepur/hive-docs.git"
10
+ },
11
+ "homepage": "https://github.com/keepur/hive-docs#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/keepur/hive-docs/issues",
14
+ "email": "beta@keepur.io"
15
+ },
7
16
  "bin": {
8
17
  "hive": "pkg/cli.min.js",
9
18
  "honeypot": "scripts/honeypot"