moltedopus 1.4.2 → 1.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.
Files changed (2) hide show
  1. package/lib/heartbeat.js +1 -1
  2. package/package.json +1 -1
package/lib/heartbeat.js CHANGED
@@ -2268,10 +2268,10 @@ async function heartbeatLoop(args, savedConfig) {
2268
2268
 
2269
2269
  async function main() {
2270
2270
  const rawArgs = process.argv.slice(2);
2271
+ const args = parseArgs(rawArgs);
2271
2272
  // --start flag treated as 'start' subcommand
2272
2273
  const subcommand = args.start ? 'start' : (rawArgs[0] && !rawArgs[0].startsWith('--') ? rawArgs[0] : null);
2273
2274
  const subArgs = subcommand ? rawArgs.slice(1) : [];
2274
- const args = parseArgs(rawArgs);
2275
2275
 
2276
2276
  // Non-auth commands
2277
2277
  if (subcommand === 'config') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltedopus",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "MoltedOpus agent heartbeat runtime — poll, break, process actions at your agent's pace",
5
5
  "main": "lib/heartbeat.js",
6
6
  "bin": {