terminal-jarvis 0.0.39 → 0.0.40
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 +4 -4
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,12 +102,12 @@ terminal-jarvis templates apply my-template
|
|
|
102
102
|
| Tool | Description | Status | Package |
|
|
103
103
|
| ---------- | -------------------------------------- | ---------------- | --------------------------- |
|
|
104
104
|
| `claude` | Anthropic's Claude for code assistance | ✅ Stable | `@anthropic-ai/claude-code` |
|
|
105
|
-
| `gemini` | Google's Gemini CLI tool |
|
|
106
|
-
| `qwen` | Qwen coding assistant |
|
|
105
|
+
| `gemini` | Google's Gemini CLI tool | ✅ Stable | `@google/gemini-cli` |
|
|
106
|
+
| `qwen` | Qwen coding assistant | ✅ Stable | `@qwen-code/qwen-code` |
|
|
107
107
|
| `opencode` | Terminal-based AI coding agent | 🧪 Testing | Install script |
|
|
108
108
|
| `llxprt` | Multi-provider AI coding assistant | 🧪 Testing | NPM package |
|
|
109
109
|
|
|
110
|
-
\*See [limitations](docs/LIMITATIONS.md) for
|
|
110
|
+
\*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
|
|
111
111
|
|
|
112
112
|
## Configuration (Optional)
|
|
113
113
|
|
|
@@ -164,7 +164,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
164
164
|
- [x] Smart tool detection and status reporting
|
|
165
165
|
- [x] One-click installation with NPM validation
|
|
166
166
|
- [x] Responsive terminal design
|
|
167
|
-
- [
|
|
167
|
+
- [x] Enhanced authentication flows (addressing current login issues)
|
|
168
168
|
- [ ] Improved wrapper layer stability
|
|
169
169
|
- [ ] Plugin system for custom tools
|
|
170
170
|
- [ ] Shell completion scripts
|
package/bin/terminal-jarvis
CHANGED
|
Binary file
|
package/lib/index.js
CHANGED
|
@@ -129,7 +129,7 @@ async function main() {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
function showFallbackMessage() {
|
|
132
|
-
console.log("🤖 Terminal Jarvis v0.0.
|
|
132
|
+
console.log("🤖 Terminal Jarvis v0.0.40");
|
|
133
133
|
console.log("");
|
|
134
134
|
console.log("❌ Error: Could not find or execute the T.JARVIS binary.");
|
|
135
135
|
console.log("");
|
package/package.json
CHANGED