stella-coder 3.9.1 → 3.9.2
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/package.json +9 -2
- package/stella-cli/index.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stella-coder",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Stella Coder 3.9 — AI coding agent with computer control, smart home, Office automation, and antivirus",
|
|
6
6
|
"main": "stella-cli/index.mjs",
|
|
@@ -17,7 +17,14 @@
|
|
|
17
17
|
"start": "next start",
|
|
18
18
|
"lint": "eslint ."
|
|
19
19
|
},
|
|
20
|
-
"keywords": [
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ai",
|
|
22
|
+
"coding",
|
|
23
|
+
"agent",
|
|
24
|
+
"terminal",
|
|
25
|
+
"smart-home",
|
|
26
|
+
"antivirus"
|
|
27
|
+
],
|
|
21
28
|
"author": "codex alex",
|
|
22
29
|
"license": "MIT",
|
|
23
30
|
"dependencies": {
|
package/stella-cli/index.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
getHardwareInfo, saveIntegrityHash,
|
|
20
20
|
} from "./security.mjs"
|
|
21
21
|
|
|
22
|
-
const VERSION = "3.9.
|
|
22
|
+
const VERSION = "3.9.1"
|
|
23
23
|
const CONFIG_DIR = path.join(os.homedir(), ".stella")
|
|
24
24
|
const CONFIG_PATH = path.join(CONFIG_DIR, "config.json")
|
|
25
25
|
const HISTORY_PATH = path.join(CONFIG_DIR, "history.json")
|