@first087/agys 0.1.0 → 0.3.0
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 -2
- package/dist/index.js +72 -0
- package/package.json +3 -4
- package/index.ts +0 -30
- package/src/commands/add.test.ts +0 -15
- package/src/commands/add.ts +0 -22
- package/src/commands/list.test.ts +0 -15
- package/src/commands/list.ts +0 -35
- package/src/commands/switch.test.ts +0 -20
- package/src/commands/switch.ts +0 -51
- package/src/utils/fileOperations.ts +0 -38
package/README.md
CHANGED
|
@@ -12,19 +12,21 @@ Manage multiple antigravity-cli oauth token accounts with ease.
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install -g agys
|
|
15
|
+
npm install -g @first087/agys
|
|
16
16
|
# or
|
|
17
|
-
bun install -g agys
|
|
17
|
+
bun install -g @first087/agys
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
21
|
|
|
22
22
|
### Add a new account
|
|
23
|
+
|
|
23
24
|
```bash
|
|
24
25
|
agys add <name>
|
|
25
26
|
```
|
|
26
27
|
|
|
27
28
|
### List all accounts
|
|
29
|
+
|
|
28
30
|
```bash
|
|
29
31
|
agys list
|
|
30
32
|
# or
|
|
@@ -32,7 +34,9 @@ agys ls
|
|
|
32
34
|
```
|
|
33
35
|
|
|
34
36
|
### Switch account
|
|
37
|
+
|
|
35
38
|
Run `agys` without any arguments to open the interactive selection menu:
|
|
39
|
+
|
|
36
40
|
```bash
|
|
37
41
|
agys
|
|
38
42
|
# or explicitly
|