@quantish/agent 0.1.49 → 0.1.50

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 (2) hide show
  1. package/README.md +20 -1
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -1,7 +1,26 @@
1
- # @quantish/agent
1
+ # @quantish/agent (V1)
2
2
 
3
3
  AI-powered coding & trading agent for Polymarket and Kalshi. Build trading bots, analyze markets, and execute trades using natural language.
4
4
 
5
+ > **Looking for V2?** See [@quantish/agent-v2](https://github.com/joinQuantish/quantish-agent-v2) - Gemini-powered with native MCP integration.
6
+
7
+ ## V1 vs V2 - Which Should I Use?
8
+
9
+ | Feature | V1 (`@quantish/agent`) | V2 (`@quantish/agent-v2`) |
10
+ |---------|------------------------|---------------------------|
11
+ | CLI Command | `quantish` | `quantish2` |
12
+ | Backend | OpenRouter / Anthropic | Google Gemini |
13
+ | Auth | API Key only | Google OAuth / API Key / Vertex AI |
14
+ | File Tools | Basic read/write | Full sandbox with file operations |
15
+ | MCP Integration | Custom HTTP clients | Native MCP protocol |
16
+ | Best For | Custom bots, full control | General trading, app building |
17
+
18
+ **Install both side-by-side:**
19
+ ```bash
20
+ npm install -g @quantish/agent # V1 -> quantish
21
+ npm install -g @quantish/agent-v2 # V2 -> quantish2
22
+ ```
23
+
5
24
  ## ✨ Features
6
25
 
7
26
  - **🤖 Multi-Provider AI** - Use Anthropic Claude or 100+ OpenRouter models (GLM-4.7, MiniMax, DeepSeek, etc.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantish/agent",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
4
4
  "description": "AI-powered agent for trading on Polymarket and Kalshi",
5
5
  "type": "module",
6
6
  "bin": {
@@ -69,4 +69,3 @@
69
69
  "typescript": "^5.7.2"
70
70
  }
71
71
  }
72
-