volute 0.11.2 → 0.11.3
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/{agent-manager-RXNMLNUQ.js → agent-manager-BHSSUMT3.js} +1 -1
- package/dist/{chunk-SJFWB3Q3.js → chunk-BG2IRSCA.js} +2 -2
- package/dist/cli.js +3 -3
- package/dist/{daemon-restart-YITZ6Y2E.js → daemon-restart-4C7Q4FO7.js} +1 -1
- package/dist/daemon.js +2 -2
- package/dist/{package-6P4FEQHC.js → package-KVRPKXLL.js} +1 -1
- package/dist/{up-AZ5TUREI.js → up-CRA3LTS7.js} +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-COY6TMEK.js → chunk-L4PDLAOB.js} +0 -0
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
|
|
20
20
|
// src/lib/agent-manager.ts
|
|
21
21
|
import { execFile, spawn } from "child_process";
|
|
22
|
-
import {
|
|
22
|
+
import { existsSync as existsSync3, mkdirSync, readFileSync as readFileSync2, rmSync as rmSync2, writeFileSync as writeFileSync2 } from "fs";
|
|
23
23
|
import { resolve } from "path";
|
|
24
24
|
import { promisify } from "util";
|
|
25
25
|
|
|
@@ -209,7 +209,7 @@ var AgentManager = class {
|
|
|
209
209
|
const agentCreds = resolve(agentClaudeDir, ".credentials.json");
|
|
210
210
|
if (existsSync3(sharedCreds)) {
|
|
211
211
|
try {
|
|
212
|
-
|
|
212
|
+
writeFileSync2(agentCreds, readFileSync2(sharedCreds));
|
|
213
213
|
} catch (err) {
|
|
214
214
|
throw new Error(
|
|
215
215
|
`Cannot start agent ${name}: failed to copy credentials to ${agentClaudeDir}: ${err instanceof Error ? err.message : err}`
|
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-KVRPKXLL.js");
|
|
13
13
|
console.log(pkg.version);
|
|
14
14
|
process.exit(0);
|
|
15
15
|
}
|
|
@@ -39,13 +39,13 @@ switch (command) {
|
|
|
39
39
|
await import("./env-CGORIKVF.js").then((m) => m.run(args));
|
|
40
40
|
break;
|
|
41
41
|
case "up":
|
|
42
|
-
await import("./up-
|
|
42
|
+
await import("./up-CRA3LTS7.js").then((m) => m.run(args));
|
|
43
43
|
break;
|
|
44
44
|
case "down":
|
|
45
45
|
await import("./down-O2EQJ5DO.js").then((m) => m.run(args));
|
|
46
46
|
break;
|
|
47
47
|
case "restart":
|
|
48
|
-
await import("./daemon-restart-
|
|
48
|
+
await import("./daemon-restart-4C7Q4FO7.js").then((m) => m.run(args));
|
|
49
49
|
break;
|
|
50
50
|
case "setup":
|
|
51
51
|
await import("./setup-7N4KYOYN.js").then((m) => m.run(args));
|
package/dist/daemon.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
initAgentManager,
|
|
7
7
|
loadJsonMap,
|
|
8
8
|
saveJsonMap
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-BG2IRSCA.js";
|
|
10
10
|
import {
|
|
11
11
|
applyIsolation,
|
|
12
12
|
chownAgentDir,
|
|
@@ -3522,7 +3522,7 @@ var app13 = new Hono13().post("/:name/chat", zValidator3("json", chatSchema), as
|
|
|
3522
3522
|
const participants = await getParticipants(conversationId);
|
|
3523
3523
|
const agentParticipants = participants.filter((p) => p.userType === "agent");
|
|
3524
3524
|
const participantNames = participants.map((p) => p.username);
|
|
3525
|
-
const { getAgentManager: getAgentManager2 } = await import("./agent-manager-
|
|
3525
|
+
const { getAgentManager: getAgentManager2 } = await import("./agent-manager-BHSSUMT3.js");
|
|
3526
3526
|
const manager = getAgentManager2();
|
|
3527
3527
|
const runningAgents = agentParticipants.map((ap) => {
|
|
3528
3528
|
const agentKey = ap.username === baseName ? name : ap.username;
|
|
@@ -4,7 +4,7 @@ import "./chunk-K3NQKI34.js";
|
|
|
4
4
|
// package.json
|
|
5
5
|
var package_default = {
|
|
6
6
|
name: "volute",
|
|
7
|
-
version: "0.11.
|
|
7
|
+
version: "0.11.3",
|
|
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",
|
package/package.json
CHANGED
|
File without changes
|