volute 0.10.1 → 0.10.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/dist/cli.js
CHANGED
|
@@ -9,7 +9,7 @@ if (!process.env.VOLUTE_HOME) {
|
|
|
9
9
|
var command = process.argv[2];
|
|
10
10
|
var args = process.argv.slice(3);
|
|
11
11
|
if (command === "--version" || command === "-v") {
|
|
12
|
-
const { default: pkg } = await import("./package-
|
|
12
|
+
const { default: pkg } = await import("./package-BS2B432F.js");
|
|
13
13
|
console.log(pkg.version);
|
|
14
14
|
process.exit(0);
|
|
15
15
|
}
|
|
@@ -48,7 +48,7 @@ switch (command) {
|
|
|
48
48
|
await import("./daemon-restart-7X72OXOW.js").then((m) => m.run(args));
|
|
49
49
|
break;
|
|
50
50
|
case "setup":
|
|
51
|
-
await import("./setup-
|
|
51
|
+
await import("./setup-EDCCQ3X7.js").then((m) => m.run(args));
|
|
52
52
|
break;
|
|
53
53
|
case "service":
|
|
54
54
|
await import("./service-OW35VZ5G.js").then((m) => m.run(args));
|
|
@@ -4,7 +4,7 @@ import "./chunk-K3NQKI34.js";
|
|
|
4
4
|
// package.json
|
|
5
5
|
var package_default = {
|
|
6
6
|
name: "volute",
|
|
7
|
-
version: "0.10.
|
|
7
|
+
version: "0.10.2",
|
|
8
8
|
description: "CLI for creating and managing self-modifying AI agents powered by the Claude Agent SDK",
|
|
9
9
|
type: "module",
|
|
10
10
|
license: "MIT",
|
|
@@ -61,8 +61,8 @@ function generateUnit(voluteBin, port, host) {
|
|
|
61
61
|
"Environment=VOLUTE_ISOLATION=user",
|
|
62
62
|
"Restart=on-failure",
|
|
63
63
|
"RestartSec=5",
|
|
64
|
-
"ProtectSystem=
|
|
65
|
-
`ReadWritePaths=${DATA_DIR} ${AGENTS_DIR}
|
|
64
|
+
"ProtectSystem=true",
|
|
65
|
+
`ReadWritePaths=${DATA_DIR} ${AGENTS_DIR}`,
|
|
66
66
|
"PrivateTmp=yes"
|
|
67
67
|
];
|
|
68
68
|
if (!binUnderHome) {
|