@rafay99/cvx 0.35.0 → 0.38.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.
Files changed (2) hide show
  1. package/README.md +16 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -10,6 +10,19 @@ You link a project folder to an account **once**. After that, the moment you
10
10
  terminals — each grabs its own account as it launches and they all run at the
11
11
  same time.
12
12
 
13
+ ```
14
+ (◕‿◕)~@ happy — the right account is active
15
+ (⊙︵⊙)~@ alarmed — this project's team doesn't match the account
16
+ (–ᴗ–)ᶻ~@ asleep — the encrypted vault is locked
17
+ (◕‿<)~@ that's `cvx doctor` coming back clean
18
+ ```
19
+
20
+ Meet **Vex**, the account chameleon. A chameleon changes color to match its
21
+ surroundings; cvx changes your account to match your project — so Vex wears
22
+ the **active account's color** and her face reacts to what's going on. Every
23
+ account gets a stable color of its own, used across `accounts`, `ls`, and
24
+ switch messages, so you learn to recognize where you are at a glance.
25
+
13
26
  ## Purpose
14
27
 
15
28
  The Convex CLI only remembers **one** logged-in account at a time — it lives in
@@ -212,8 +225,9 @@ a single binary, so the split costs nothing at build time.
212
225
  bin/cvx.ts entry point + command dispatch
213
226
  src/paths.ts the ONE place HOME is resolved (CVX_HOME sandbox support)
214
227
  src/store.ts data layer: vault I/O, the config swap, token verify
215
- src/ui.ts the logo banner, first-run welcome, help
216
- src/colors.ts the palette (edit here to re-theme)
228
+ src/ui.ts the gradient logo, Vex the mascot, welcome, help
229
+ src/colors.ts the palette: brand gradient + per-account colors (re-theme here)
230
+ src/spinner.ts braille spinner for network waits (TTY only)
217
231
  src/commands.ts one function per subcommand
218
232
  src/hooks.ts zsh / bash / PowerShell shell-hook snippets
219
233
  src/keychain.ts OS keychain / DPAPI token backends
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rafay99/cvx",
3
- "version": "0.35.0",
3
+ "version": "0.38.0",
4
4
  "description": "Switch Convex accounts per project automatically — run many Convex accounts across projects at once, no login/logout churn, no deploy keys, no tokens in your repos",
5
5
  "keywords": [
6
6
  "convex", "convex-dev", "convex-cli", "cli", "command-line",
@@ -19,10 +19,10 @@
19
19
  "files": ["launcher.cjs", "cvx.1", "README.md", "LICENSE"],
20
20
  "engines": { "node": ">=16" },
21
21
  "optionalDependencies": {
22
- "@rafay99/cvx-darwin-arm64": "0.35.0",
23
- "@rafay99/cvx-darwin-x64": "0.35.0",
24
- "@rafay99/cvx-linux-x64": "0.35.0",
25
- "@rafay99/cvx-linux-arm64": "0.35.0",
26
- "@rafay99/cvx-win32-x64": "0.35.0"
22
+ "@rafay99/cvx-darwin-arm64": "0.38.0",
23
+ "@rafay99/cvx-darwin-x64": "0.38.0",
24
+ "@rafay99/cvx-linux-x64": "0.38.0",
25
+ "@rafay99/cvx-linux-arm64": "0.38.0",
26
+ "@rafay99/cvx-win32-x64": "0.38.0"
27
27
  }
28
28
  }