@workermill/agent 0.4.2 → 0.4.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.
@@ -10,6 +10,7 @@ import chalk from "chalk";
10
10
  import { totalmem } from "os";
11
11
  import { spawn } from "child_process";
12
12
  import { writeFileSync, existsSync, unlinkSync, openSync } from "fs";
13
+ import { AGENT_VERSION } from "../version.js";
13
14
  import { loadConfigFromFile, checkPrerequisites, getSystemInfo, getPidFile, getLogFile, getConfigFile, } from "../config.js";
14
15
  import { startAgent } from "../index.js";
15
16
  export async function startCommand(options) {
@@ -96,10 +97,9 @@ export async function startCommand(options) {
96
97
  }
97
98
  // Register with system info
98
99
  const sysInfo = getSystemInfo();
99
- console.log(chalk.dim(` Agent: ${config.agentId}`));
100
- console.log(chalk.dim(` Host: ${sysInfo.hostname}`));
101
- console.log(chalk.dim(` Platform: ${sysInfo.platform}`));
102
- console.log(chalk.dim(` Image: ${config.workerImage}`));
100
+ console.log(chalk.dim(` Agent: ${config.agentId}`));
101
+ console.log(chalk.dim(` Version: ${AGENT_VERSION}`));
102
+ console.log(chalk.dim(` Image: ${config.workerImage}`));
103
103
  console.log();
104
104
  try {
105
105
  const cleanup = await startAgent(config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workermill/agent",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "WorkerMill Remote Agent - Run AI workers locally with your Claude Max subscription",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",