@hasna/wallets 0.1.7 → 0.1.9

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
@@ -1,5 +1,9 @@
1
1
  # open-wallets
2
2
 
3
+ [![CI](https://github.com/hasna/open-wallets/actions/workflows/ci.yml/badge.svg)](https://github.com/hasna/open-wallets/actions)
4
+ [![npm version](https://img.shields.io/npm/v/@hasna/wallets)](https://npm.im/@hasna/wallets)
5
+ [![License](https://img.shields.io/badge/License-Apache--2.0-blue)](LICENSE)
6
+
3
7
  Universal wallet management for AI agents. Create and manage virtual cards across multiple providers via CLI or MCP server.
4
8
 
5
9
  ## Features
@@ -17,6 +21,21 @@ Universal wallet management for AI agents. Create and manage virtual cards acros
17
21
  bun install -g @hasna/wallets
18
22
  ```
19
23
 
24
+ ## Shell Completions
25
+
26
+ Add tab completion for `wallets` CLI:
27
+
28
+ **Bash** — add to `~/.bashrc`:
29
+ ```bash
30
+ source /path/to/open-wallets/completions/wallets.bash
31
+ ```
32
+
33
+ **Zsh** — add to `~/.zshrc`:
34
+ ```bash
35
+ fpath=(/path/to/open-wallets/completions $fpath)
36
+ autoload -U compinit && compinit
37
+ ```
38
+
20
39
  ## Quick Start
21
40
 
22
41
  ```bash
@@ -94,7 +113,7 @@ wallets provider add agentcard --jwt YOUR_JWT --default
94
113
 
95
114
  ## Configuration
96
115
 
97
- Config stored at `~/.wallets/config.json`:
116
+ Config stored at `~/.hasna/wallets/config.json`:
98
117
 
99
118
  ```json
100
119
  {
@@ -108,7 +127,7 @@ Config stored at `~/.wallets/config.json`:
108
127
  }
109
128
  ```
110
129
 
111
- Database stored at `~/.wallets/wallets.db` (SQLite, WAL mode). Override with `WALLETS_DB_PATH` env var.
130
+ Database stored at `~/.hasna/wallets/wallets.db` (SQLite, WAL mode). Override with `HASNA_WALLETS_DB_PATH` or `WALLETS_DB_PATH`.
112
131
 
113
132
  ## Library Usage
114
133