@first087/agys 0.2.0 → 0.4.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 CHANGED
@@ -2,13 +2,25 @@
2
2
 
3
3
  Manage multiple antigravity-cli oauth token accounts with ease.
4
4
 
5
+ ## Prerequisites
6
+
7
+ Before using `agys`, ensure you have generated your OAuth token:
8
+
9
+ 1. Open Antigravity CLI by running the command `agy` and complete the setup/login process.
10
+ 2. This ensures the token file is generated at `~/.gemini/antigravity-cli/antigravity-oauth-token`.
11
+
5
12
  ## Features
6
13
 
7
14
  - **Add Accounts**: Easily add and name new OAuth token accounts.
8
15
  - **List Accounts**: View all managed accounts and see which one is currently active.
9
16
  - **Interactive Switch**: Switch between accounts using an interactive CLI menu.
17
+ - **Delete Accounts**: Securely delete account tokens with confirmation and active account protection.
10
18
  - **Persistent State**: Keeps track of the active account automatically.
11
19
 
20
+ ## Changelog
21
+
22
+ See the [CHANGELOG.md](CHANGELOG.md) for a detailed list of changes and release history.
23
+
12
24
  ## Installation
13
25
 
14
26
  ```bash
@@ -43,6 +55,18 @@ agys
43
55
  agys switch
44
56
  ```
45
57
 
46
- ## License
58
+ ### Delete an account
59
+
60
+ Run `agys delete` to open the interactive selection menu:
61
+
62
+ ```bash
63
+ agys delete
64
+ # or aliases
65
+ agys rm
66
+ agys del
67
+ agys remove
68
+ ```
69
+
70
+ ## Security & Privacy
47
71
 
48
- MIT
72
+ `agys` is an open-source tool. Your OAuth tokens are stored locally on your machine within the `~/.agys/` directory for account switching purposes. We do not transmit, store, or share your tokens with any external servers. You are welcome to inspect the source code to verify our privacy practices.