nex-code 0.4.17 → 0.4.19
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 +39 -13
- package/dist/nex-code.js +691 -509
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
<h1 align="center">nex-code</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<b>Run 400B+ open coding models on your codebase — without the hardware bill.</b><br>
|
|
5
|
+
Ollama Cloud first. OpenAI, Anthropic, and Gemini when you need them.
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<code>npx nex-code</code>
|
|
10
|
+
</p>
|
|
6
11
|
|
|
7
12
|
<p align="center">
|
|
8
|
-
<
|
|
9
|
-
Use it in the terminal or install the built-in <b>VS Code extension</b> for a sidebar chat panel.<br>
|
|
10
|
-
Built and optimized for <a href="https://ollama.com">Ollama Cloud</a> — OpenAI, Anthropic, and Gemini are also supported.
|
|
13
|
+
<a href="https://github.com/hybridpicker/nex-code/stargazers">⭐ If this saves you time, a star helps others find it.</a>
|
|
11
14
|
</p>
|
|
12
15
|
|
|
13
16
|
<p align="center">
|
|
@@ -25,6 +28,14 @@
|
|
|
25
28
|
|
|
26
29
|
---
|
|
27
30
|
|
|
31
|
+
```
|
|
32
|
+
██▄▄██ nex-code v0.3.54
|
|
33
|
+
█▀██▀█ devstral-2:123b · /help
|
|
34
|
+
▀████▀
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
28
39
|
## Demo
|
|
29
40
|
|
|
30
41
|
https://github.com/user-attachments/assets/6a70525c-a1a4-4c6f-9784-176cb1becc15
|
|
@@ -65,6 +76,21 @@ npm update -g nex-code
|
|
|
65
76
|
|
|
66
77
|
---
|
|
67
78
|
|
|
79
|
+
## vs. Claude Code & Gemini CLI
|
|
80
|
+
|
|
81
|
+
| | nex-code | Claude Code | Gemini CLI |
|
|
82
|
+
|---|---|---|---|
|
|
83
|
+
| Free tier | ✅ Ollama Cloud flat-rate | ❌ subscription required | ⚠️ limited free quota |
|
|
84
|
+
| Open models | ✅ devstral, Kimi K2, Qwen3 | ❌ Anthropic only | ❌ Google only |
|
|
85
|
+
| Local Ollama | ✅ | ❌ | ❌ |
|
|
86
|
+
| Multi-provider | ✅ swap with one env var | ❌ | ❌ |
|
|
87
|
+
| VS Code sidebar | ✅ built-in, same install | ✅ | ❌ |
|
|
88
|
+
| Startup time | ~100ms | ~2–4s | ~1–2s |
|
|
89
|
+
| Runtime deps | 2 | heavy | heavy |
|
|
90
|
+
| Infra tools | ✅ SSH, Docker, K8s built-in | ❌ | ❌ |
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
68
94
|
## Why nex-code?
|
|
69
95
|
|
|
70
96
|
**Ollama Cloud first.** nex-code is built and optimized for [Ollama Cloud](https://ollama.com) — the flat-rate platform that runs devstral, Kimi K2, Qwen3-Coder, and 47+ other open models. All behavioral tuning (loop detection, context compression, tool-call repair) is done against real Ollama Cloud sessions. Other providers (OpenAI, Anthropic, Gemini) work via the same interface but are not the primary target.
|
|
@@ -689,10 +715,10 @@ deploy the latest build to prod
|
|
|
689
715
|
The agent loop uses a bouncing-ball spinner (`● · · · ·` → `· ● · · ·` → …) during tool execution, then prints compact 1-line summaries:
|
|
690
716
|
|
|
691
717
|
```
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
718
|
+
⏺ Read, Grep, Edit
|
|
719
|
+
⎿ Read 45 lines from app.js
|
|
720
|
+
⎿ 12 matches "TODO"
|
|
721
|
+
⎿ old_text not found
|
|
696
722
|
```
|
|
697
723
|
|
|
698
724
|
After multi-step tasks, a résumé and context-aware follow-up suggestions are shown:
|
|
@@ -946,7 +972,7 @@ When the agent creates a task list, a **live animated display** replaces the sta
|
|
|
946
972
|
◻ Run tests
|
|
947
973
|
```
|
|
948
974
|
|
|
949
|
-
- Bouncing-ball spinner (
|
|
975
|
+
- Bouncing-ball spinner (⏺ ping-pong across 5 positions) with elapsed time display
|
|
950
976
|
- Per-task status icons: `✔` done, `◼` in progress, `◻` pending, `✗` failed
|
|
951
977
|
- Automatically pauses during text streaming and resumes during tool execution
|
|
952
978
|
- Falls back to the static `/tasks` view when no live display is active
|