@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.
- package/dist/cli/commands.js +1 -2
- package/dist/cli/repl.js +1 -1
- package/package.json +1 -1
package/dist/cli/commands.js
CHANGED
|
@@ -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 —
|
|
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(
|
|
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
|
|