@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 +2 -1
- package/src/cli.js +2 -2
- package/src/daemon.js +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openagents-org/agent-launcher",
|
|
3
|
-
"version": "0.2.
|
|
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:
|
|
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:
|
|
561
|
+
print('Run: agn help');
|
|
562
562
|
process.exitCode = 1;
|
|
563
563
|
return;
|
|
564
564
|
}
|