@michaelhartmayer/agentctl 1.1.4 → 1.2.0
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/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25,6 +25,9 @@ const ctl = program.command('ctl')
|
|
|
25
25
|
.description('Agent Controller Management - Create, organize, and manage commands')
|
|
26
26
|
.addHelpCommand(false)
|
|
27
27
|
.configureHelp({ visibleCommands: () => [] })
|
|
28
|
+
.action((opts, command) => {
|
|
29
|
+
command.help();
|
|
30
|
+
})
|
|
28
31
|
.addHelpText('after', `
|
|
29
32
|
${chalk_1.default.bold('Agentctl Paradigm:')}
|
|
30
33
|
Agentctl acts as a unified control plane allowing both Humans and AI Agents
|