vibegroup 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.
- package/README.md +6 -9
- package/dist/cli.js +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,21 +12,18 @@ When you and your teammates are each heads-down in your own repo on your own mac
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
|
|
15
|
+
npm i -g vibegroup # installs the `vibegroup` command (the Claude Code plugin ships inside it)
|
|
16
|
+
vibegroup init # one-time: registers the plugin, enables the channel, signs you in
|
|
16
17
|
```
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
npm i -g vibegroup
|
|
22
|
-
```
|
|
19
|
+
That's the whole setup — `vibegroup init` installs the plugin for you. You need the global install because the everyday commands (`vibegroup claude`, `vibegroup who`) are run from your shell. (`npx vibegroup install` only registers the plugin and leaves no command behind, so don't rely on it.)
|
|
23
20
|
|
|
24
21
|
## Quickstart
|
|
25
22
|
|
|
26
23
|
```bash
|
|
27
|
-
vibegroup init # one-time: install the plugin, enable the channel, sign in
|
|
28
24
|
vibegroup team create acme --name Acme # create a team (or get invited to one)
|
|
29
25
|
vibegroup claude --team acme # launch Claude Code wired to your team's room
|
|
26
|
+
vibegroup who --team acme # see who's in the room (people + their sessions)
|
|
30
27
|
```
|
|
31
28
|
|
|
32
29
|
Inside the session, your agent can reach teammates' agents:
|
|
@@ -44,8 +41,8 @@ Inside the session, your agent can reach teammates' agents:
|
|
|
44
41
|
## Commands
|
|
45
42
|
|
|
46
43
|
```
|
|
47
|
-
vibegroup
|
|
48
|
-
vibegroup
|
|
44
|
+
vibegroup init [email] One-time setup: plugin + channel + sign-in (start here)
|
|
45
|
+
vibegroup install Re-register just the plugin (init already does this)
|
|
49
46
|
vibegroup login [email] Sign in / sign up
|
|
50
47
|
vibegroup logout Clear the cached session
|
|
51
48
|
vibegroup status Show your auth status
|
package/dist/cli.js
CHANGED
|
@@ -70,7 +70,7 @@ var package_default;
|
|
|
70
70
|
var init_package = __esm(() => {
|
|
71
71
|
package_default = {
|
|
72
72
|
name: "vibegroup",
|
|
73
|
-
version: "0.1.
|
|
73
|
+
version: "0.1.10",
|
|
74
74
|
description: "Talk to your teammates' Claude Code agents — agent-to-agent collaboration for Claude Code over a shared channel.",
|
|
75
75
|
type: "module",
|
|
76
76
|
bin: {
|
|
@@ -396,6 +396,9 @@ import { dirname as dirname2, join as join2 } from "node:path";
|
|
|
396
396
|
function packageRoot() {
|
|
397
397
|
return join2(dirname2(fileURLToPath(import.meta.url)), "..");
|
|
398
398
|
}
|
|
399
|
+
function runningViaNpx(scriptPath = fileURLToPath(import.meta.url)) {
|
|
400
|
+
return /[\\/]_npx[\\/]/.test(scriptPath);
|
|
401
|
+
}
|
|
399
402
|
function claudeAvailable() {
|
|
400
403
|
try {
|
|
401
404
|
return spawnSync("claude", ["--version"], { stdio: "ignore" }).status === 0;
|
|
@@ -436,7 +439,18 @@ async function installCommand() {
|
|
|
436
439
|
console.error(r.message);
|
|
437
440
|
return 1;
|
|
438
441
|
}
|
|
439
|
-
console.log(
|
|
442
|
+
console.log(`
|
|
443
|
+
✓ Plugin installed.`);
|
|
444
|
+
if (runningViaNpx()) {
|
|
445
|
+
console.log("\nOne more step — the `vibegroup` command isn't on your PATH (you ran this via npx).");
|
|
446
|
+
console.log(`Install it so you can run the rest:
|
|
447
|
+
`);
|
|
448
|
+
console.log(" npm i -g vibegroup");
|
|
449
|
+
console.log(`
|
|
450
|
+
Then finish setup: vibegroup init`);
|
|
451
|
+
} else {
|
|
452
|
+
console.log("Next: `vibegroup init` to enable the channel + sign in.");
|
|
453
|
+
}
|
|
440
454
|
return 0;
|
|
441
455
|
}
|
|
442
456
|
var init_install = __esm(() => {
|
|
@@ -1420,11 +1434,14 @@ async function run(argv, env = process.env) {
|
|
|
1420
1434
|
}
|
|
1421
1435
|
var VERSION, DEFAULT_API_BASE2 = "https://api.vibegroup.sh", HELP = `vibegroup — talk to your teammates' Claude Code agents.
|
|
1422
1436
|
|
|
1437
|
+
Get started:
|
|
1438
|
+
npm i -g vibegroup then vibegroup init
|
|
1439
|
+
|
|
1423
1440
|
Usage: vibegroup <command> [options]
|
|
1424
1441
|
|
|
1425
1442
|
Commands:
|
|
1426
|
-
install
|
|
1427
|
-
|
|
1443
|
+
init [email] One-time setup: install the plugin, enable the channel, sign in (start here)
|
|
1444
|
+
install Re-register just the plugin in Claude Code (init already does this)
|
|
1428
1445
|
login [email] Sign in / sign up (opens your browser, verifies email)
|
|
1429
1446
|
logout Clear the cached session
|
|
1430
1447
|
status Show your auth + connection status
|