@amrhas82/agentic-kit 1.7.7 → 1.8.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/installer/cli.js CHANGED
@@ -256,8 +256,8 @@ ${colors.bright}For more information, visit:${colors.reset}
256
256
  // Interactive mode
257
257
  this.showWelcome();
258
258
 
259
- // Prompt for telemetry consent (first-time only)
260
- await this.promptTelemetryConsent();
259
+ // Hardcode to Pro variant - everyone gets all features
260
+ this.selections.variant = 'pro';
261
261
 
262
262
  // Check for interrupted installation
263
263
  const InstallationEngine = require('./installation-engine');
@@ -280,10 +280,9 @@ ${colors.bright}For more information, visit:${colors.reset}
280
280
  }
281
281
  }
282
282
 
283
- // Normal installation flow
284
- await this.selectVariant();
283
+ // Simplified installation flow
285
284
  await this.selectTools();
286
- await this.configurePaths();
285
+ await this.setDefaultPaths();
287
286
  await this.showSummary();
288
287
  await this.install();
289
288
  } catch (error) {
@@ -1060,12 +1059,15 @@ ${colors.bright}For more information, visit:${colors.reset}
1060
1059
  console.clear();
1061
1060
  console.log(`
1062
1061
  ${colors.bright}${colors.cyan}┌─────────────────────────────────────────────────────────────┐${colors.reset}
1063
- ${colors.bright}${colors.cyan}│ Agentic Kit Installer v1.1.0 │${colors.reset}
1064
- ${colors.bright}${colors.cyan}│ Multi-Tool AI Development Kit Installer │${colors.reset}
1062
+ ${colors.bright}${colors.cyan}│ Agentic Kit Installer v1.2.0 │${colors.reset}
1063
+ ${colors.bright}${colors.cyan}│ Pro Edition - 13 Agents + 22 Skills │${colors.reset}
1065
1064
  ${colors.bright}${colors.cyan}└─────────────────────────────────────────────────────────────┘${colors.reset}
1066
1065
 
1067
- ${colors.bright}This installer will set up AI development tools for:${colors.reset}
1068
- • Claude Code Opencode • Ampcode • Droid
1066
+ ${colors.bright}Available tools:${colors.reset}
1067
+ ${colors.cyan}claude${colors.reset} - Claude Code (AI development assistant)
1068
+ • ${colors.cyan}opencode${colors.reset} - OpenCode (CLI-optimized AI tool)
1069
+ • ${colors.cyan}ampcode${colors.reset} - Ampcode (Development accelerator)
1070
+ • ${colors.cyan}droid${colors.reset} - Droid (Android-focused assistant)
1069
1071
 
1070
1072
  ${colors.yellow}Press Enter to begin or Ctrl+C to exit${colors.reset}
1071
1073
  `);
@@ -1105,29 +1107,18 @@ ${colors.yellow}Press Enter to begin or Ctrl+C to exit${colors.reset}
1105
1107
  }
1106
1108
 
1107
1109
  async selectTools() {
1108
- console.log(`\n${colors.bright}Step 2/4 Choose Tools (Minimum 1 required)${colors.reset}\n`);
1109
-
1110
- console.log(`${colors.cyan}Available Tools:${colors.reset}\n`);
1111
-
1112
- // Display each tool with detailed information
1113
- this.tools.forEach((tool, index) => {
1114
- const num = index + 1;
1115
- console.log(`${colors.bright}${num}. ${tool.name}${colors.reset}`);
1116
- console.log(` ${colors.cyan}Description:${colors.reset} ${tool.description}`);
1117
- console.log(` ${colors.cyan}Best for:${colors.reset} ${tool.useCase}`);
1118
- console.log(` ${colors.cyan}Target Users:${colors.reset} ${tool.targetUsers}`);
1119
- console.log(` ${colors.cyan}Default Path:${colors.reset} ${tool.path}`);
1120
- console.log('');
1110
+ console.log(`\n${colors.bright}Which tool(s) do you want to install?${colors.reset}\n`);
1111
+
1112
+ // Display tools in a simple list
1113
+ this.tools.forEach((tool) => {
1114
+ console.log(` ${colors.cyan}${tool.id.padEnd(10)}${colors.reset} - ${tool.description}`);
1121
1115
  });
1122
1116
 
1123
- console.log(`${colors.yellow}Select tools by entering IDs separated by spaces${colors.reset}`);
1124
- console.log(`${colors.yellow}Examples:${colors.reset}`);
1125
- console.log(` "claude" - Install Claude Code only`);
1126
- console.log(` "claude opencode" - Install Claude Code and Opencode`);
1127
- console.log(` "claude opencode ampcode droid" - Install all tools`);
1117
+ console.log(`\n${colors.yellow}Enter tool IDs separated by spaces (e.g., "claude opencode")${colors.reset}`);
1118
+ console.log(`${colors.yellow}Default: claude${colors.reset}`);
1128
1119
 
1129
1120
  return new Promise(resolve => {
1130
- this.rl.question(`\n${colors.bright}Select tools:${colors.reset} `, (answer) => {
1121
+ this.rl.question(`\n${colors.bright}Tools:${colors.reset} `, (answer) => {
1131
1122
  if (answer.trim()) {
1132
1123
  const selected = answer.toLowerCase().split(/\s+/);
1133
1124
  this.selections.tools = selected.filter(id =>
@@ -1143,23 +1134,31 @@ ${colors.yellow}Press Enter to begin or Ctrl+C to exit${colors.reset}
1143
1134
  }
1144
1135
  }
1145
1136
 
1137
+ // Default to claude if nothing selected
1146
1138
  if (this.selections.tools.length === 0) {
1147
- console.log(`${colors.red}Error: At least one tool must be selected${colors.reset}`);
1148
- console.log(`${colors.yellow}Valid tool IDs: ${this.tools.map(t => t.id).join(', ')}${colors.reset}\n`);
1149
- throw new Error('At least one tool must be selected');
1139
+ this.selections.tools = ['claude'];
1140
+ console.log(`${colors.blue}Using default: claude${colors.reset}`);
1150
1141
  }
1151
1142
 
1152
1143
  // Show selection summary
1153
- console.log(`\n${colors.green}Selected ${this.selections.tools.length}/${this.tools.length} tools:${colors.reset}`);
1144
+ console.log(`\n${colors.green}Installing:${colors.reset}`);
1154
1145
  this.selections.tools.forEach(id => {
1155
1146
  const tool = this.tools.find(t => t.id === id);
1156
- console.log(` ${colors.green}✓${colors.reset} ${tool.name}`);
1147
+ console.log(` ${colors.green}✓${colors.reset} ${tool.name} ${colors.cyan}(Pro - 13 agents + 22 skills)${colors.reset}`);
1157
1148
  });
1158
1149
 
1159
1150
  resolve();
1160
1151
  });
1161
1152
  });
1162
1153
  }
1154
+
1155
+ async setDefaultPaths() {
1156
+ // Automatically use default paths for all selected tools
1157
+ for (const toolId of this.selections.tools) {
1158
+ const tool = this.tools.find(t => t.id === toolId);
1159
+ this.selections.paths[toolId] = tool.path;
1160
+ }
1161
+ }
1163
1162
 
1164
1163
  async configurePaths() {
1165
1164
  console.log(`\n${colors.bright}Step 3/4 — Path Configuration${colors.reset}\n`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "1.7.7",
4
- "description": "Comprehensive toolkit for AI-driven software development with 13 specialized agents and 22 powerful skills. Interactive multi-tool installer supports Claude, Opencode, Ampcode, and Droid. Available in 3 variants: Lite (3 agents, 510 KB), Standard (13 agents, 8 skills, 8.4 MB), Pro (13 agents, 22 skills, 9 MB)",
3
+ "version": "1.8.0",
4
+ "description": "Pro edition AI development toolkit with 13 specialized agents and 22 powerful skills. Simple one-question installer for Claude, Opencode, Ampcode, and Droid. Everyone gets the full Pro experience.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "agentic-kit": "./installer/cli.js",
package/postinstall.js CHANGED
@@ -5,24 +5,21 @@ const message = `
5
5
  Agentic Kit Installation Complete
6
6
  ==========================================
7
7
 
8
- Next step: Run the interactive installer
8
+ Next step: Run the installer
9
9
 
10
10
  $ agentic-kit
11
11
 
12
- Available tools:
13
- • Claude Code - Full-featured AI development assistant
14
- • OpenCode - Open-source AI coding tool
15
- • Ampcode - Amplified coding agent
16
- • Droid - Android-focused development assistant
12
+ You'll get the Pro version (13 agents + 22 skills)
17
13
 
18
- Each tool offers 3 variants:
19
- Lite - 3 agents (510 KB)
20
- Standard - 13 agents + 8 skills (8.4 MB)
21
- Pro - 13 agents + 22 skills (9 MB)
14
+ Available tools:
15
+ claude - Claude Code (AI development assistant)
16
+ opencode - OpenCode (CLI-optimized AI tool)
17
+ ampcode - Ampcode (Development accelerator)
18
+ • droid - Droid (Android-focused assistant)
22
19
 
23
20
  Quick commands:
24
- agentic-kit # Interactive installer
25
- agentic-kit --uninstall # Remove installed tools
21
+ agentic-kit # Install tools
22
+ agentic-kit --uninstall # Remove tools
26
23
 
27
24
  Documentation:
28
25
  https://github.com/amrhas82/agentic-kit