@visa/cli 2.0.0-rc.14 → 2.0.0-rc.16
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 -3
- package/dist/cli.js +105 -94
- package/dist/mcp-server/index.js +45 -45
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,9 +44,12 @@ visa-cli status # Show auth state, enrolled cards, daily spend remaining
|
|
|
44
44
|
visa-cli api-key create my-demo-app
|
|
45
45
|
# Create an API key for an app or agent
|
|
46
46
|
visa-cli history # Recent transactions with amounts and any generated media URLs
|
|
47
|
-
visa-cli hud enable #
|
|
48
|
-
visa-cli hud
|
|
49
|
-
visa-cli
|
|
47
|
+
visa-cli hud enable # Enable the terminal HUD for Codex and regular shells
|
|
48
|
+
visa-cli hud doctor # Diagnose terminal HUD setup
|
|
49
|
+
visa-cli hud disable # Remove the terminal HUD from your shell
|
|
50
|
+
visa-cli hud enable claude
|
|
51
|
+
# Legacy: register the Claude Code statusLine renderer
|
|
52
|
+
visa-cli statusline # Legacy renderer for statusLine integrations
|
|
50
53
|
# MCP (stdio): run the bundled entrypoint (IDE configs use the same path — see getServerEntry in src/clients.ts)
|
|
51
54
|
# node "$(npm root -g)/@visa/cli/dist/mcp-server/index.js"
|
|
52
55
|
```
|