slackhive 0.1.45 → 0.1.46
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 +14 -0
- package/cli/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,6 +75,20 @@ The CLI will:
|
|
|
75
75
|
|
|
76
76
|
Open `http://localhost:3001` and create your first agent.
|
|
77
77
|
|
|
78
|
+
#### Hit `EACCES: permission denied` on install?
|
|
79
|
+
|
|
80
|
+
If you installed Node from nodejs.org on macOS/Linux, `/usr/local/lib/node_modules` is root-owned and `npm install -g` fails without sudo. Point npm at a user-owned prefix once — no sudo needed again:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
mkdir -p ~/.npm-global
|
|
84
|
+
npm config set prefix '~/.npm-global'
|
|
85
|
+
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.zshrc # or ~/.bashrc
|
|
86
|
+
source ~/.zshrc
|
|
87
|
+
npm install -g slackhive
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Installing Node via [nvm](https://github.com/nvm-sh/nvm) or Homebrew (`brew install node`) puts it in a user-writable location by default and avoids this entirely. If you'd rather skip global install, `npx slackhive init` works too — just prefix every command with `npx`.
|
|
91
|
+
|
|
78
92
|
### CLI Commands
|
|
79
93
|
|
|
80
94
|
| Command | Description |
|
package/cli/dist/index.js
CHANGED
|
@@ -15565,7 +15565,7 @@ var require_package = __commonJS({
|
|
|
15565
15565
|
"package.json"(exports2, module2) {
|
|
15566
15566
|
module2.exports = {
|
|
15567
15567
|
name: "slackhive",
|
|
15568
|
-
version: "0.1.
|
|
15568
|
+
version: "0.1.46",
|
|
15569
15569
|
description: "CLI to install and manage SlackHive \u2014 AI agent teams on Slack",
|
|
15570
15570
|
bin: {
|
|
15571
15571
|
slackhive: "./dist/index.js"
|