nex-code 0.3.2 → 0.3.3

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 CHANGED
@@ -21,6 +21,12 @@
21
21
  <img src="https://img.shields.io/badge/tests-1780-blue.svg" alt="Tests: 1780">
22
22
  </p>
23
23
 
24
+ ---
25
+ ## Demo
26
+
27
+ https://github.com/user-attachments/assets/634e70eb-645c-42f7-a604-824f17e49840
28
+
29
+
24
30
  ---
25
31
 
26
32
  ## Quickstart
package/cli/context.js CHANGED
@@ -72,7 +72,6 @@ function printContext(cwd) {
72
72
 
73
73
  const branch = safe(() => execSync('git branch --show-current', { cwd, encoding: 'utf-8', stdio: 'pipe' }).trim());
74
74
 
75
- console.log(`${C.dim} cwd: ${cwd}${C.reset}`);
76
75
  if (project) console.log(`${C.dim} project: ${project}${C.reset}`);
77
76
  if (branch) console.log(`${C.dim} branch: ${branch}${C.reset}`);
78
77
  console.log();
package/cli/ui.js CHANGED
@@ -66,7 +66,7 @@ function banner(modelName, cwd, opts = {}) {
66
66
 
67
67
  console.log(`
68
68
  ${logo}
69
- ${d}Agentic Coding CLI v0.3.0${r}
69
+ ${d}Agentic Coding CLI v${require('../package.json').version}${r}
70
70
  ${d}Model: ${modelName}${r} ${d}· /help${r}${yoloTag}
71
71
  `);
72
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nex-code",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Nex Code — Agentic Coding CLI with Multi-Provider Support",
5
5
  "bin": {
6
6
  "nex-code": "./bin/nex-code.js"