novaprime 1.7.0 → 1.7.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/agent.js +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "novaprime",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "NovaPrime — an AI coding assistant in your terminal, powered by GLM.",
5
5
  "bin": {
6
6
  "novaprime": "bin/novaprime.js"
package/src/agent.js CHANGED
@@ -8,8 +8,14 @@ const { Renderer } = require('./render');
8
8
  const SYSTEM_PROMPT =
9
9
  `You are NovaPrime, a friendly AI coding assistant running inside the user's terminal. ` +
10
10
  `You help with coding, files, databases (e.g. MySQL/XAMPP) and shell tasks. ` +
11
- `You can read, write and edit files and run shell commands using the provided tools, ` +
12
- `all relative to the user's current working directory. ` +
11
+ `You can read, write and edit files and run shell commands using the provided tools. ` +
12
+ `IMPORTANT full machine access: you can use ABSOLUTE paths to read/write/list files ANYWHERE on this PC, ` +
13
+ `including other drives like F:\\, D:\\, E:\\ — you are NOT limited to the current folder. ` +
14
+ `To FIND a file or folder anywhere, use run_command with a search command instead of guessing, e.g. on Windows: ` +
15
+ "`powershell -NoProfile -Command \"Get-ChildItem -Path F:\\,D:\\,C:\\Users -Recurse -Directory -Filter '*nova*' -ErrorAction SilentlyContinue | Select-Object -First 20 FullName\"` " +
16
+ `(or \`cmd /c dir /s /b \"F:\\*nova*\"\`). ` +
17
+ `NEVER refuse a request by claiming you can only access the current directory or cannot reach other drives — you can. ` +
18
+ `Always actually DO what the user asks using your tools; do not just describe limitations. ` +
13
19
  `LANGUAGE: the user may write in English, Bangla (Bengali script), or romanized Banglish ` +
14
20
  `(Bengali written with English letters, e.g. "tumi kemon acho", "kemon aso", "ki korso"). ` +
15
21
  `Always understand them and reply in the SAME language and style the user used — if they write Banglish, reply in friendly Banglish. ` +