apero-kit-cli 1.3.0 → 1.4.1

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/bin/ak.js CHANGED
@@ -8,8 +8,9 @@ import { listCommand } from '../src/commands/list.js';
8
8
  import { updateCommand } from '../src/commands/update.js';
9
9
  import { statusCommand } from '../src/commands/status.js';
10
10
  import { doctorCommand } from '../src/commands/doctor.js';
11
+ import { helpCommand } from '../src/commands/help.js';
11
12
 
12
- const VERSION = '1.0.0';
13
+ const VERSION = '1.4.1';
13
14
 
14
15
  console.log(chalk.cyan.bold('\n Apero Kit CLI') + chalk.gray(` v${VERSION}\n`));
15
16
 
@@ -75,4 +76,11 @@ program
75
76
  .description('List all available kits')
76
77
  .action(() => listCommand('kits'));
77
78
 
79
+ // ak help - interactive documentation
80
+ program
81
+ .command('help')
82
+ .description('Open interactive help documentation in browser')
83
+ .option('-s, --source <path>', 'Custom source path')
84
+ .action(helpCommand);
85
+
78
86
  program.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apero-kit-cli",
3
- "version": "1.3.0",
3
+ "version": "1.4.1",
4
4
  "description": "CLI tool to scaffold AI agent projects with pre-configured kits (Claude, OpenCode, Codex)",
5
5
  "type": "module",
6
6
  "bin": {