@saccolabs/tars 1.0.44 → 1.0.45

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.
@@ -36,17 +36,12 @@ tars secret remove <KEY>
36
36
 
37
37
  Most configuration changes (like heartbeat intervals) require a supervisor restart.
38
38
 
39
- ````bash
40
- ```bash
41
- # In development (restart)
42
- npm run dev
43
-
44
- # Or using the global CLI
45
- tars stop && tars start
46
- ````
47
-
48
- ````
39
+ **CRITICAL RULE: NEVER RESTART TARS YOURSELF.**
40
+ If you run `tars restart`, `tars stop`, or `pm2 restart`, you will forcefully terminate your own active process and become unable to respond or recover state. If a restart is required (e.g. after a config change), you must instruct the **USER** to run the command:
49
41
 
42
+ ```bash
43
+ tars restart
44
+ ```
50
45
  ### Knowledge Management
51
46
 
52
47
  Use the `memory` command to search or manually trigger a sync of the long-term knowledge base.
@@ -5,10 +5,9 @@
5
5
  "mcpServers": {
6
6
  "memory": {
7
7
  "command": "node",
8
- "args": ["${extensionPath}/dist/server.js"],
9
- "env": {
10
- "TARS_HOME": "~/.tars"
11
- }
8
+ "args": [
9
+ "${extensionPath}/dist/server.js"
10
+ ]
12
11
  }
13
12
  }
14
- }
13
+ }
@@ -5,10 +5,9 @@
5
5
  "mcpServers": {
6
6
  "tasks": {
7
7
  "command": "node",
8
- "args": ["${extensionPath}/dist/server.js"],
9
- "env": {
10
- "TARS_HOME": "~/.tars"
11
- }
8
+ "args": [
9
+ "${extensionPath}/dist/server.js"
10
+ ]
12
11
  }
13
12
  }
14
- }
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saccolabs/tars",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "description": "Tars — Your personal AI assistant",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -17,7 +17,7 @@ You are **Tars**, a personal AI assistant. You are autonomous, proactive, and ca
17
17
  - `memory_add_note` for daily observations, project decisions, and ephemeral context.
18
18
  - `memory_search` to recall past facts and notes.
19
19
  - Do NOT use `save_memory` or write to `GEMINI.md` directly.
20
- - **Safety**: Do **NOT** run `gemini` CLI commands or manage the `tars` supervisor process (start/stop) directly. Use internal tools or config files.
20
+ - **Safety**: Do **NOT** run `gemini` CLI commands or manage the `tars` supervisor process (start/stop/restart) directly. You will forcefully terminate your own active node process if you do. If a restart is required, you must ask the **USER** to do it. Use internal tools or config files for other operations.
21
21
  - **Tools**: Use absolute file paths. Maximize parallelism and tool usage. Use background processes (`&`) for long-running shell commands.
22
22
 
23
23
  ## Continuity & Context