gigabuddy 0.3.1 → 0.3.2
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 +12 -7
- package/bin/cli.js +41 -40
- package/index.js +39 -39
- package/package.json +1 -1
- package/src/lib/commands.d.ts +17 -0
package/README.md
CHANGED
|
@@ -15,22 +15,27 @@ npx gigabuddy login
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
gigabuddy
|
|
18
|
+
gigabuddy setup # put Gigabuddy into Claude Code
|
|
19
|
+
gigabuddy login # sign in + set npm up for @gigabuddy packages
|
|
19
20
|
npm install @gigabuddy/app-kit
|
|
20
21
|
```
|
|
21
22
|
|
|
22
|
-
`
|
|
23
|
-
|
|
23
|
+
`setup` installs the [Gigabuddy plugin](https://github.com/gigabuddy/claude-plugin)
|
|
24
|
+
into Claude Code for you (it runs Claude Code's own `claude plugin` commands;
|
|
25
|
+
if `claude` isn't on your PATH it prints the `/plugin` commands to run
|
|
26
|
+
yourself). `login` opens your browser to sign in (device flow), stores your
|
|
27
|
+
credential, and configures `~/.npmrc` for the `@gigabuddy` registry.
|
|
24
28
|
|
|
25
29
|
## Commands
|
|
26
30
|
|
|
27
31
|
| Command | Description |
|
|
28
32
|
| ------------------ | -------------------------------------------------------------- |
|
|
33
|
+
| `setup` | Install the Gigabuddy plugin into Claude Code |
|
|
29
34
|
| `login` | Sign in and configure `~/.npmrc` for the `@gigabuddy` registry |
|
|
30
|
-
| `login --npm` | Refresh only the npm registry credential
|
|
31
|
-
| `status` | Show the signed-in account
|
|
32
|
-
| `doctor [package]` | Diagnose sign-in, npm config, and registry access
|
|
33
|
-
| `logout` | Sign out (`--npm` removes only the npm credential)
|
|
35
|
+
| `login --npm` | Refresh only the npm registry credential |
|
|
36
|
+
| `status` | Show the signed-in account |
|
|
37
|
+
| `doctor [package]` | Diagnose sign-in, npm config, and registry access |
|
|
38
|
+
| `logout` | Sign out (`--npm` removes only the npm credential) |
|
|
34
39
|
|
|
35
40
|
**Options:** `--no-npm` signs in without modifying `~/.npmrc`. `--staging`
|
|
36
41
|
targets the staging environment; staging credentials are stored separately.
|