daemora 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daemora",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A powerful open-source AI agent that runs on your machine. Connects to any AI model, any MCP server, any channel. Fully autonomous — plans, codes, tests, browses, emails, and manages your tools without asking permission.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -17,6 +17,7 @@ import daemonManager from "./daemon/DaemonManager.js";
17
17
  import secretVault from "./safety/SecretVault.js";
18
18
  import { readFileSync, writeFileSync, existsSync } from "fs";
19
19
  import { join } from "path";
20
+ import { execSync } from "child_process";
20
21
 
21
22
  const P = {
22
23
  brand: "#7C6AFF",
@@ -174,7 +175,6 @@ function handleDaemon(action) {
174
175
  }
175
176
 
176
177
  case "logs": {
177
- const { execSync } = await import("child_process");
178
178
  const stdoutLog = join(daemonManager.logsDir, "daemon-stdout.log");
179
179
  const stderrLog = join(daemonManager.logsDir, "daemon-stderr.log");
180
180
  const lines = process.argv[4] || "50";