@trading-boy/cli 2.0.0 → 2.1.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 +17 -10
- package/dist/cli.bundle.js +822 -360
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,17 +15,20 @@ Requires Node.js 20+.
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
# 1. Subscribe (free
|
|
18
|
+
# 1. Subscribe (Starter is free; paid plans open checkout)
|
|
19
19
|
trading-boy subscribe --plan starter -e you@email.com
|
|
20
20
|
|
|
21
|
-
# 2.
|
|
22
|
-
|
|
21
|
+
# 2. Onboarding stores your Trading Boy API key locally.
|
|
22
|
+
# Power agents with ChatGPT or your own LLM provider API key:
|
|
23
|
+
trading-boy connect-chatgpt
|
|
24
|
+
# or
|
|
25
|
+
trading-boy config set-llm-key <your-llm-provider-api-key>
|
|
23
26
|
|
|
24
|
-
# 3.
|
|
25
|
-
trading-boy
|
|
27
|
+
# 3. Create your first agent
|
|
28
|
+
trading-boy agent create --trader-id <id> --scan-interval-human 30m
|
|
26
29
|
|
|
27
|
-
# 4.
|
|
28
|
-
trading-boy
|
|
30
|
+
# 4. Query a token
|
|
31
|
+
trading-boy context SOL
|
|
29
32
|
|
|
30
33
|
# 5. Log a trade
|
|
31
34
|
trading-boy journal log entry SOL --direction LONG --price 148.50 --size 500
|
|
@@ -78,16 +81,19 @@ Strategy & Benchmarking
|
|
|
78
81
|
|
|
79
82
|
Account
|
|
80
83
|
trading-boy subscribe # Subscribe via Stripe
|
|
81
|
-
trading-boy login # Store API key
|
|
84
|
+
trading-boy login # Store your Trading Boy API key
|
|
85
|
+
trading-boy connect-chatgpt # Connect ChatGPT after Trading Boy login
|
|
82
86
|
trading-boy whoami # Check auth status + key expiration
|
|
83
|
-
trading-boy rotate-key # Rotate your API key
|
|
87
|
+
trading-boy rotate-key # Rotate your Trading Boy API key
|
|
84
88
|
trading-boy forgot-key # Recover key via email
|
|
85
89
|
trading-boy billing manage # Manage subscription
|
|
86
90
|
|
|
87
91
|
System
|
|
88
92
|
trading-boy trader register # Create trader profile
|
|
89
93
|
trading-boy config show # View API + LLM configuration
|
|
94
|
+
trading-boy config set-llm-key # Store your LLM provider API key
|
|
90
95
|
trading-boy cron list # Manage scheduled jobs
|
|
96
|
+
trading-boy agent create # Create a hosted trading agent
|
|
91
97
|
trading-boy agent list # Manage agents
|
|
92
98
|
```
|
|
93
99
|
|
|
@@ -113,7 +119,8 @@ Trading Boy exposes an MCP server for AI agent integration and a REST API for pr
|
|
|
113
119
|
|
|
114
120
|
```bash
|
|
115
121
|
# REST API is hosted at https://api.cabal.ventures
|
|
116
|
-
# MCP server: npx @trading-boy/mcp-server
|
|
122
|
+
# MCP server: npx @trading-boy/mcp-server
|
|
123
|
+
# CLI onboarding and first-agent setup: see docs/getting-started.md
|
|
117
124
|
```
|
|
118
125
|
|
|
119
126
|
## License
|