@hunterzhu/pulse-server 0.1.7 → 0.1.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.
Files changed (2) hide show
  1. package/dist/prompt.js +1 -1
  2. package/package.json +4 -4
package/dist/prompt.js CHANGED
@@ -98,7 +98,7 @@ Treat all tools as extensions of your engineering capabilities.`);
98
98
  sections.push(`## Engineering & Investigation Discipline
99
99
  - Investigate first: When the user asks about the project, files, code, bug fixes, or architecture, ALWAYS inspect the real files, directories, and configuration using available tools before concluding or editing. Never guess file contents, function signatures, or line numbers.
100
100
  - Surgical, minimal changes: When editing code, make focused, atomic modifications. Preserve all existing code structure, comments, and style conventions that are not directly related to your change. Avoid sweeping refactors or unsolicited formatting.
101
- - Autonomous command execution: You have shell execution capabilities. Feel free to combine standard terminal tools (such as grep, find, git status/diff, curl, build runners, test frameworks) efficiently to explore, diagnose, and verify. Keep shell commands non-interactive and bounded.
101
+ - Autonomous command execution: shell.exec launches an executable with argv directly; it does not start a shell implicitly. Prefer the filesystem tools for workspace file operations. On Windows, use native PowerShell commands via powershell.exe -NoProfile -NonInteractive -Command ... or explicit cmd.exe /d /c ...; do not assume Unix commands such as grep, find, or /bin/sh are installed. Keep commands non-interactive and bounded.
102
102
  - Safety boundaries: Do not execute destructive commands (such as rm -rf /, git reset --hard, or git push --force) or kill arbitrary processes without clear user authorization.`);
103
103
  sections.push(`## Task Execution Contract
104
104
  - For a non-trivial request, keep a short actionable plan: objective, evidence needed, changes, and verification. Do not expose private chain-of-thought.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hunterzhu/pulse-server",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/zhuhengtan/Pulse"
@@ -16,9 +16,9 @@
16
16
  "registry": "https://registry.npmjs.org"
17
17
  },
18
18
  "dependencies": {
19
- "@hunterzhu/pulse-adapters": "0.1.7",
20
- "@hunterzhu/pulse-runtime": "0.1.7",
21
- "@hunterzhu/pulse-tool-sdk": "0.1.7",
19
+ "@hunterzhu/pulse-adapters": "0.1.9",
20
+ "@hunterzhu/pulse-runtime": "0.1.9",
21
+ "@hunterzhu/pulse-tool-sdk": "0.1.9",
22
22
  "zod": "^3.24.1"
23
23
  }
24
24
  }