@amrhas82/agentic-kit 1.9.0 → 1.9.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/installer/cli.js CHANGED
@@ -83,8 +83,8 @@ class InteractiveInstaller {
83
83
 
84
84
  this.variants = [
85
85
  { id: 'lite', name: 'Lite', agents: 3, skills: 0, description: 'Minimal setup, CI/CD' },
86
- { id: 'standard', name: 'Standard', agents: 13, skills: 8, description: 'Most users, general dev' },
87
- { id: 'pro', name: 'Pro', agents: 13, skills: 14, description: 'Advanced users, full features' }
86
+ { id: 'standard', name: 'Standard', agents: 14, skills: 8, description: 'Most users, general dev' },
87
+ { id: 'pro', name: 'Pro', agents: 14, skills: 20, description: 'Full installation, all features' }
88
88
  ];
89
89
  }
90
90
 
@@ -198,8 +198,8 @@ ${colors.bright}TOOLS:${colors.reset}
198
198
 
199
199
  ${colors.bright}VARIANTS:${colors.reset}
200
200
  ${colors.cyan}lite${colors.reset} - Minimal setup (3 agents, 0 skills) - For CI/CD
201
- ${colors.cyan}standard${colors.reset} - Standard setup (13 agents, 8 skills) - For most users
202
- ${colors.cyan}pro${colors.reset} - Full setup (13 agents, 22 skills) - For advanced users
201
+ ${colors.cyan}standard${colors.reset} - Standard setup (14 agents, 8 skills) - For most users
202
+ ${colors.cyan}pro${colors.reset} - Full setup (14 agents, 20 commands) - Default for everyone
203
203
 
204
204
  ${colors.bright}EXAMPLES:${colors.reset}
205
205
  # Interactive installation (default)
@@ -680,10 +680,9 @@ ${colors.bright}For more information, visit:${colors.reset}
680
680
  }
681
681
 
682
682
  // Display summary
683
- const variantInfo = this.variants.find(v => v.id === variant);
684
683
  console.log(`${colors.bright}Installation Summary:${colors.reset}`);
685
- console.log(`${colors.cyan}Variant:${colors.reset} ${variantInfo.name} (${variantInfo.agents} agents, ${variantInfo.skills} skills)`);
686
- console.log(`${colors.cyan}Tools:${colors.reset} ${this.selections.tools.join(', ')}`);
684
+ console.log(`${colors.cyan}Installing:${colors.reset} ${this.selections.tools.join(', ')}`);
685
+ console.log(`${colors.cyan}Each tool includes:${colors.reset} 14 agents + 20 commands`);
687
686
  console.log('');
688
687
 
689
688
  for (const toolId of this.selections.tools) {
@@ -1386,11 +1385,10 @@ ${colors.yellow}Press Enter to begin or Ctrl+C to exit${colors.reset}
1386
1385
  async showSummary() {
1387
1386
  console.log(`\n${colors.bright}Step 4/4 — Installation Summary${colors.reset}\n`);
1388
1387
 
1389
- const variant = this.variants.find(v => v.id === this.selections.variant);
1390
- console.log(`Package: ${variant.name} (${variant.agents} agents, ${variant.skills} skills)`);
1391
- console.log(`Tools: ${this.selections.tools.map(id =>
1388
+ console.log(`Installing: ${this.selections.tools.map(id =>
1392
1389
  this.tools.find(t => t.id === id).name
1393
- ).join(', ')}\n`);
1390
+ ).join(', ')}`);
1391
+ console.log(`Each tool includes: 14 agents + 20 commands\n`);
1394
1392
 
1395
1393
  console.log('Installation Details:');
1396
1394
  console.log('┌─────────────┬──────────────────┬──────────┬─────────────┐');
@@ -73,9 +73,10 @@ class PackageManager {
73
73
  }
74
74
 
75
75
  // Validate each variant has required fields
76
+ // Note: 'skills' is optional (some tools only have commands)
76
77
  for (const variant of requiredVariants) {
77
78
  const variantConfig = config[variant];
78
- const requiredFields = ['name', 'description', 'agents', 'skills', 'resources', 'hooks'];
79
+ const requiredFields = ['name', 'description', 'agents', 'resources', 'hooks'];
79
80
 
80
81
  for (const field of requiredFields) {
81
82
  if (variantConfig[field] === undefined) {
@@ -486,7 +487,8 @@ class PackageManager {
486
487
  }
487
488
 
488
489
  // Check 5: Each variant has required fields
489
- const requiredFields = ['name', 'description', 'agents', 'skills', 'resources', 'hooks'];
490
+ // Note: 'skills' is optional (some tools only have commands)
491
+ const requiredFields = ['name', 'description', 'agents', 'resources', 'hooks'];
490
492
  for (const reqVariant of requiredVariants) {
491
493
  const variantConfig = config[reqVariant];
492
494
  for (const field of requiredFields) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "AI development toolkit with 14 specialized agents and 20 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {