@openagents-org/agent-launcher 0.2.80 → 0.2.81

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.80",
3
+ "version": "0.2.81",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
7
+ "agn": "bin/agent-connector.js",
7
8
  "openagents": "bin/agent-connector.js",
8
9
  "agent-connector": "bin/agent-connector.js"
9
10
  },
package/src/cli.js CHANGED
@@ -454,7 +454,7 @@ async function cmdVersion() {
454
454
  }
455
455
 
456
456
  async function cmdHelp() {
457
- print(`Usage: openagents <command> [options]
457
+ print(`Usage: agn <command> [options]
458
458
 
459
459
  Commands:
460
460
  up [--foreground] Start daemon (background by default)
@@ -558,7 +558,7 @@ async function main() {
558
558
  const handler = commands[cmd];
559
559
  if (!handler) {
560
560
  print(`Unknown command: ${cmd}`);
561
- print('Run: openagents help');
561
+ print('Run: agn help');
562
562
  process.exitCode = 1;
563
563
  return;
564
564
  }
package/src/daemon.js CHANGED
@@ -210,7 +210,7 @@ class Daemon {
210
210
 
211
211
  console.log(`Daemon started (PID ${proc.pid})`);
212
212
  console.log(`Logs: ${logFile}`);
213
- console.log('Stop: agent-connector down');
213
+ console.log('Stop: agn down');
214
214
  }
215
215
 
216
216
  /**