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.
@@ -3,7 +3,7 @@ import {
3
3
  AgentManager,
4
4
  getAgentManager,
5
5
  initAgentManager
6
- } from "./chunk-SJFWB3Q3.js";
6
+ } from "./chunk-BG2IRSCA.js";
7
7
  import "./chunk-46S7YHUB.js";
8
8
  import "./chunk-QF22MYDJ.js";
9
9
  import "./chunk-DP2DX4WV.js";
@@ -19,7 +19,7 @@ import {
19
19
 
20
20
  // src/lib/agent-manager.ts
21
21
  import { execFile, spawn } from "child_process";
22
- import { copyFileSync, existsSync as existsSync3, mkdirSync, readFileSync as readFileSync2, rmSync as rmSync2, writeFileSync as writeFileSync2 } from "fs";
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
- copyFileSync(sharedCreds, agentCreds);
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-6P4FEQHC.js");
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-AZ5TUREI.js").then((m) => m.run(args));
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-YITZ6Y2E.js").then((m) => m.run(args));
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));
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  run
4
- } from "./chunk-COY6TMEK.js";
4
+ } from "./chunk-L4PDLAOB.js";
5
5
  import {
6
6
  stopDaemon
7
7
  } from "./chunk-RGWADNLT.js";
package/dist/daemon.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  initAgentManager,
7
7
  loadJsonMap,
8
8
  saveJsonMap
9
- } from "./chunk-SJFWB3Q3.js";
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-RXNMLNUQ.js");
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.2",
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",
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  readGlobalConfig,
4
4
  run
5
- } from "./chunk-COY6TMEK.js";
5
+ } from "./chunk-L4PDLAOB.js";
6
6
  import "./chunk-ZKNBD5P3.js";
7
7
  import "./chunk-WTJI3JVR.js";
8
8
  import "./chunk-D424ZQGI.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volute",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "description": "CLI for creating and managing self-modifying AI agents powered by the Claude Agent SDK",
5
5
  "type": "module",
6
6
  "license": "MIT",
File without changes