terminal-jarvis 0.0.27 → 0.0.29
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/bin/terminal-jarvis +0 -0
- package/config/default.toml +14 -0
- package/package.json +2 -1
package/bin/terminal-jarvis
CHANGED
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[tools]
|
|
2
|
+
claude-code = { enabled = true, auto_update = true, install_command = "npm install -g @anthropic-ai/claude-cli", update_command = "npm update -g @anthropic-ai/claude-cli" }
|
|
3
|
+
gemini-cli = { enabled = true, auto_update = false, install_command = "npm install -g @google/generative-ai-cli", update_command = "npm update -g @google/generative-ai-cli" }
|
|
4
|
+
qwen-code = { enabled = true, auto_update = true, install_command = "npm install -g @qwen-code/qwen-code@latest", update_command = "npm update -g @qwen-code/qwen-code" }
|
|
5
|
+
opencode = { enabled = true, auto_update = true, install_command = "npm install -g opencode-ai@latest", update_command = "npm update -g opencode-ai" }
|
|
6
|
+
|
|
7
|
+
[templates]
|
|
8
|
+
repository = "your-username/jarvis-templates"
|
|
9
|
+
auto_sync = true
|
|
10
|
+
|
|
11
|
+
[api]
|
|
12
|
+
base_url = "https://api.terminal-jarvis.dev"
|
|
13
|
+
timeout_seconds = 30
|
|
14
|
+
max_retries = 3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminal-jarvis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.29",
|
|
4
4
|
"description": "A thin Rust wrapper that provides a unified interface for managing and running AI coding tools",
|
|
5
5
|
"bin": {
|
|
6
6
|
"terminal-jarvis": "bin/terminal-jarvis"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"lib/",
|
|
10
10
|
"bin/",
|
|
11
|
+
"config/",
|
|
11
12
|
"README.md",
|
|
12
13
|
"package.json"
|
|
13
14
|
],
|