@link-assistant/agent 0.8.13 → 0.8.14

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/index.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/agent",
3
- "version": "0.8.13",
3
+ "version": "0.8.14",
4
4
  "description": "A minimal, public domain AI CLI agent compatible with OpenCode's JSON interface. Bun-only runtime.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -1,5 +1,10 @@
1
1
  #!/usr/bin/env bun
2
2
 
3
+ // Set process title to 'agent' so it appears correctly in process monitoring tools like top/ps
4
+ // Both process.title and process.argv0 need to be set for maximum compatibility
5
+ process.title = 'agent';
6
+ process.argv0 = 'agent';
7
+
3
8
  import { Server } from './server/server.ts';
4
9
  import { Instance } from './project/instance.ts';
5
10
  import { Log } from './util/log.ts';