@taj-special/dravix-code 1.3.8 → 1.3.9

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.
@@ -1,4 +1,3 @@
1
- import * as path from 'path';
2
1
  import { execFileSync } from 'child_process';
3
2
  import { buildContext } from '../services/context.js';
4
3
  import { banner, printHelp, printInfo, colors } from '../utils/display.js';
@@ -38,7 +37,7 @@ export async function handleCommand(cmd, cwd, clearHistory, addFileToContext, ge
38
37
  }
39
38
  if (name === '/clear' || name === '/new') {
40
39
  clearHistory();
41
- process.stdout.write(`\x1b]0;Dravix Code — ${path.basename(cwd)}\x07`);
40
+ process.stdout.write(`\x1b]0;Dravix Code — AI-powered coding assistant\x07`);
42
41
  console.clear();
43
42
  banner();
44
43
  const { name: userName } = getSavedUser();
package/dist/cli/repl.js CHANGED
@@ -2149,7 +2149,7 @@ export async function startRepl(cwd) {
2149
2149
  function setTerminalTitle(title) {
2150
2150
  process.stdout.write(`\x1b]0;Dravix Code — ${title}\x07`);
2151
2151
  }
2152
- setTerminalTitle(path.basename(cwd));
2152
+ setTerminalTitle('AI-powered coding assistant');
2153
2153
  const token = getToken() ?? '';
2154
2154
  let SYSTEM_PROMPT = `You are Dravix Code, an interactive CLI coding agent powered by DeepSeek that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.
2155
2155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taj-special/dravix-code",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "AI-powered coding assistant CLI — Dravix Code",
5
5
  "type": "module",
6
6
  "bin": {