@amrhas82/agentic-kit 2.3.2 → 2.3.3

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/installer/cli.js +8 -3
  2. package/package.json +1 -1
package/installer/cli.js CHANGED
@@ -73,9 +73,14 @@ class InteractiveInstaller {
73
73
  async askInstallOrUninstall() {
74
74
  console.log('\nWhat would you like to do?\n');
75
75
  console.log(' 1. Install tools');
76
- console.log(' 2. Uninstall tools\n');
76
+ console.log(' 2. Uninstall tools');
77
+ console.log(' 3. Exit\n');
77
78
 
78
- const choice = await this.askQuestion('Enter choice (1 or 2): ', '1');
79
+ const choice = await this.askQuestion('Enter choice (1-3): ', '1');
80
+ if (choice === '3') {
81
+ console.log('\nGoodbye!\n');
82
+ process.exit(0);
83
+ }
79
84
  return choice === '2' ? 'uninstall' : 'install';
80
85
  }
81
86
 
@@ -451,7 +456,7 @@ ${colors.bright}${colors.cyan}██╔══██║██║ ██║█
451
456
  ${colors.bright}${colors.cyan}██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║${colors.reset}
452
457
  ${colors.bright}${colors.cyan}╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝${colors.reset}
453
458
 
454
- ${colors.bright}v2.3.2 | 11 agents + 20 commands per tool${colors.reset}
459
+ ${colors.bright}v2.3.3 | 11 agents + 20 commands per tool${colors.reset}
455
460
  `);
456
461
  }
457
462
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "AI development toolkit with 11 specialized agents and 20 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {