quantwise 1.3.5 → 1.3.7
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/.mcp.json +3 -2
- package/cli.mjs +601 -574
- package/package.json +7 -18
- package/scripts/postinstall.mjs +30 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantwise",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "QuantWise - An agentic coding tool that lives in your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,13 +9,10 @@
|
|
|
9
9
|
"engines": {
|
|
10
10
|
"node": ">=18.0.0"
|
|
11
11
|
},
|
|
12
|
-
"files": [
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
".claude/skills/"
|
|
17
|
-
],
|
|
18
|
-
"scripts": {},
|
|
12
|
+
"files": ["cli.mjs", "README.md", ".mcp.json", ".claude/skills/", "scripts/postinstall.mjs"],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"postinstall": "node scripts/postinstall.mjs"
|
|
15
|
+
},
|
|
19
16
|
"dependencies": {},
|
|
20
17
|
"optionalDependencies": {
|
|
21
18
|
"@img/sharp-darwin-arm64": "^0.33.5",
|
|
@@ -23,15 +20,7 @@
|
|
|
23
20
|
"@img/sharp-linux-x64": "^0.33.5",
|
|
24
21
|
"@img/sharp-win32-x64": "^0.33.5"
|
|
25
22
|
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
"claude",
|
|
28
|
-
"quantumio.com.cn",
|
|
29
|
-
"ai",
|
|
30
|
-
"coding",
|
|
31
|
-
"assistant",
|
|
32
|
-
"cli",
|
|
33
|
-
"terminal"
|
|
34
|
-
],
|
|
23
|
+
"keywords": ["claude", "quantumio.com.cn", "ai", "coding", "assistant", "cli", "terminal"],
|
|
35
24
|
"author": "quantumio.com.cn <support@quantumio.com.cn>",
|
|
36
|
-
"license": "
|
|
25
|
+
"license": "MIT"
|
|
37
26
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Skip in CI environments
|
|
4
|
+
if (process.env.CI || process.env.CONTINUOUS_INTEGRATION || process.env.GITHUB_ACTIONS) {
|
|
5
|
+
process.exit(0)
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
console.log(`
|
|
9
|
+
✓ QuantWise installed successfully!
|
|
10
|
+
|
|
11
|
+
Quick Start:
|
|
12
|
+
|
|
13
|
+
1. Set your API key (direct or proxy):
|
|
14
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
15
|
+
# or:
|
|
16
|
+
export ANTHROPIC_AUTH_TOKEN=sk-...
|
|
17
|
+
export ANTHROPIC_BASE_URL=https://...
|
|
18
|
+
|
|
19
|
+
2. (Optional) Set trading data keys:
|
|
20
|
+
export FMP_API_KEY=... # Stock data (Financial Modeling Prep)
|
|
21
|
+
export TAVILY_API_KEY=tvly-... # Web search
|
|
22
|
+
|
|
23
|
+
3. Run in your project directory:
|
|
24
|
+
quantwise
|
|
25
|
+
|
|
26
|
+
4. Diagnose install/update issues:
|
|
27
|
+
quantwise doctor
|
|
28
|
+
|
|
29
|
+
Docs: https://github.com/quantumiodb/quantwise
|
|
30
|
+
`)
|