@trading-boy/cli 2.0.0 → 2.0.1

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 (4) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +17 -10
  3. package/dist/cli.bundle.js +718 -354
  4. package/package.json +11 -12
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2026 Cabal Ventures. All rights reserved.
2
+
3
+ This software and associated documentation files (the "Software") are the
4
+ proprietary property of Cabal Ventures. Unauthorized copying, modification,
5
+ distribution, or use of this Software, in whole or in part, is strictly
6
+ prohibited without the express written permission of Cabal Ventures.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
10
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
11
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
12
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
13
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
14
+ SOFTWARE.
15
+
16
+ ---
17
+
18
+ This project uses the following open-source software:
19
+
20
+ Hermes Agent Framework — MIT License
21
+ Copyright (c) Hermes Contributors
22
+ https://github.com/hermes-ai/hermes
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 tier available)
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. Query a token
22
- trading-boy query SOL
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. Get full context intelligence
25
- trading-boy context SOL
27
+ # 3. Create your first agent
28
+ trading-boy agent create --trader-id <id> --scan-interval-human 30m
26
29
 
27
- # 4. Register a trader profile
28
- trading-boy trader register --name MyTrader
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 (see docs/getting-started.md)
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