force-agent 0.14.1 → 0.14.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/README.md CHANGED
@@ -6,7 +6,7 @@ npm i -g force-agent # install the command
6
6
  force service start # run it in the background
7
7
  ```
8
8
 
9
- Version 0.14.1.
9
+ Version 0.14.3.
10
10
 
11
11
  The command is a small Node shim. It resolves the platform binary from the
12
12
  matching `@force-agent/cli-<os>-<arch>` optional dependency at run time, so an
package/bin/force.cjs CHANGED
@@ -192,6 +192,12 @@ function run(target) {
192
192
  "force asked to restart " + (restarts + 1) + " times in a row; not restarting. Start it again by hand.",
193
193
  )
194
194
  restarts += 1
195
+ // Audit trail for the journal: silent restarts left the 15:32 loop on
196
+ // agent.calney.com (4 consecutive exit-75 restarts) with no evidence of when
197
+ // each request arrived or how long the replaced process had lived.
198
+ process.stderr.write(
199
+ "force restarting after exit " + restartCode + " (restart " + restarts + " of " + restartLimit + ", uptime " + uptime + " ms)\n",
200
+ )
195
201
  const next = resolve(names)
196
202
  if (!next)
197
203
  fail("force could not find its platform binary after the update. Reinstall it with `npm i -g force-agent`.")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "force-agent",
3
- "version": "0.14.1",
3
+ "version": "0.14.3",
4
4
  "description": "Force Agent CLI: a coding agent that runs as a background service with a web UI.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://labfy.dev",
@@ -42,9 +42,9 @@
42
42
  "force-agent"
43
43
  ],
44
44
  "optionalDependencies": {
45
- "@force-agent/cli-darwin-arm64": "0.14.1",
46
- "@force-agent/cli-linux-arm64": "0.14.1",
47
- "@force-agent/cli-linux-x64": "0.14.1",
48
- "@force-agent/cli-windows-x64": "0.14.1"
45
+ "@force-agent/cli-darwin-arm64": "0.14.3",
46
+ "@force-agent/cli-linux-arm64": "0.14.3",
47
+ "@force-agent/cli-linux-x64": "0.14.3",
48
+ "@force-agent/cli-windows-x64": "0.14.3"
49
49
  }
50
50
  }