@quantish/agent 0.1.48 → 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.
- package/README.md +20 -1
- package/dist/index.js +4 -1
- 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/dist/index.js
CHANGED
|
@@ -5667,7 +5667,10 @@ Stopped ${count} background process${count > 1 ? "es" : ""}.`);
|
|
|
5667
5667
|
}
|
|
5668
5668
|
|
|
5669
5669
|
// src/index.ts
|
|
5670
|
-
|
|
5670
|
+
import { createRequire } from "module";
|
|
5671
|
+
var require2 = createRequire(import.meta.url);
|
|
5672
|
+
var packageJson = require2("../package.json");
|
|
5673
|
+
var VERSION = packageJson.version;
|
|
5671
5674
|
function cleanup() {
|
|
5672
5675
|
if (processManager.hasRunning()) {
|
|
5673
5676
|
const count = processManager.runningCount();
|
package/package.json
CHANGED