@vizzor/cli 0.3.3 → 0.3.4
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 +9 -4
- package/dist/index.js +6210 -6231
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,7 +104,7 @@ npm install -g @vizzor/cli
|
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
106
|
# Or run directly
|
|
107
|
-
npx @vizzor/cli
|
|
107
|
+
npx @vizzor/cli
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
### From Source
|
|
@@ -201,7 +201,6 @@ vizzor trends [options] # Market trends + top movers
|
|
|
201
201
|
vizzor track <wallet> [options] # Wallet forensics
|
|
202
202
|
vizzor audit <contract> [options] # Contract security audit
|
|
203
203
|
vizzor ico list [options] # ICO/IDO tracker
|
|
204
|
-
vizzor chat # AI conversation mode
|
|
205
204
|
vizzor config init # Initialize config
|
|
206
205
|
vizzor config set <key> <value> # Set config value
|
|
207
206
|
vizzor config show # Show config
|
|
@@ -214,17 +213,23 @@ vizzor bot start [options] # Start Discord/Telegram bots
|
|
|
214
213
|
|---------|-------------|
|
|
215
214
|
| `/scan <address> [--chain <chain>]` | Token security + risk scan |
|
|
216
215
|
| `/track <wallet> [--chain <chain>]` | Wallet forensics |
|
|
217
|
-
| `/trends` | Trending tokens +
|
|
216
|
+
| `/trends` | Trending tokens + top gainers/losers |
|
|
218
217
|
| `/audit <contract> [--chain <chain>]` | Smart contract audit |
|
|
218
|
+
| `/add <symbol>` | Add a token to the live price ticker |
|
|
219
|
+
| `/remove <symbol>` | Remove a token from the price ticker |
|
|
220
|
+
| `/chain [<id>]` | Show available chains or switch chain |
|
|
219
221
|
| `/config` | Show config with setup guidance |
|
|
220
222
|
| `/config set <key> <value>` | Update a config value |
|
|
221
|
-
| `/provider` | Show
|
|
223
|
+
| `/provider` | Show current AI provider |
|
|
224
|
+
| `/provider list` | List all providers with availability |
|
|
222
225
|
| `/provider <name>` | Switch to `anthropic`, `openai`, `gemini`, `ollama` |
|
|
223
226
|
| `/agent create <name> [options]` | Create autonomous prediction agent |
|
|
224
227
|
| `/agent list` | List all agents |
|
|
225
228
|
| `/agent start <name>` | Start agent cycle |
|
|
226
229
|
| `/agent stop <name>` | Stop agent |
|
|
227
230
|
| `/agent status <name>` | View status + recent decisions |
|
|
231
|
+
| `/agent delete <name>` | Delete an agent |
|
|
232
|
+
| `/agent strategies` | List available strategies |
|
|
228
233
|
| `/help` | Command reference |
|
|
229
234
|
| `/clear` | Clear messages |
|
|
230
235
|
| `/exit` | Quit |
|