@amrhas82/agentic-kit 2.3.4 → 2.4.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
@@ -456,7 +456,7 @@ ${colors.bright}${colors.cyan}██╔══██║██║ ██║█
456
456
  ${colors.bright}${colors.cyan}██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║${colors.reset}
457
457
  ${colors.bright}${colors.cyan}╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝${colors.reset}
458
458
 
459
- ${colors.bright}v2.3.4 | 11 agents + 20 commands per tool${colors.reset}
459
+ ${colors.bright}v2.4.0 | 11 agents + 20 commands per tool${colors.reset}
460
460
  `);
461
461
  }
462
462
 
@@ -10,7 +10,7 @@ const path = require('path');
10
10
  class PackageManager {
11
11
  constructor() {
12
12
  this.packagesDir = path.join(__dirname, '..', 'packages');
13
- this.variants = ['lite', 'standard', 'pro'];
13
+ this.variants = ['pro'];
14
14
  this.tools = ['claude', 'opencode', 'ampcode', 'droid'];
15
15
  this.variantConfigCache = {}; // Cache for loaded variant configurations
16
16
  }
@@ -65,7 +65,7 @@ class PackageManager {
65
65
  }
66
66
 
67
67
  // Validate required variants exist
68
- const requiredVariants = ['lite', 'standard', 'pro'];
68
+ const requiredVariants = ['pro'];
69
69
  for (const variant of requiredVariants) {
70
70
  if (!config[variant]) {
71
71
  throw new Error(`Required variant '${variant}' not found in variants.json for tool ${toolId}`);
@@ -514,8 +514,8 @@ class PackageManager {
514
514
  };
515
515
  }
516
516
 
517
- // Check 4: All required variants are present (lite, standard, pro)
518
- const requiredVariants = ['lite', 'standard', 'pro'];
517
+ // Check 4: Required variant is present (pro)
518
+ const requiredVariants = ['pro'];
519
519
  for (const reqVariant of requiredVariants) {
520
520
  if (!config[reqVariant]) {
521
521
  return {
@@ -590,17 +590,16 @@ class PackageManager {
590
590
  }
591
591
  };
592
592
 
593
- // Validate agents
594
- await checkContentExists('agents', selectedContent.agents, 'agents', true);
593
+ // Validate agents (use dynamic directory name)
594
+ const agentsDirName = availableContent.agentsDir || 'agents';
595
+ await checkContentExists('agents', selectedContent.agents, agentsDirName, true);
595
596
 
596
597
  // Validate skills (directories)
597
- await checkContentExists('skills', selectedContent.skills, 'skills', false);
598
+ await checkContentExists('skills', selectedContent.skills || [], 'skills', false);
598
599
 
599
- // Validate resources
600
- await checkContentExists('resources', selectedContent.resources, 'resources', false);
601
-
602
- // Validate hooks
603
- await checkContentExists('hooks', selectedContent.hooks, 'hooks', false);
600
+ // Validate commands (use dynamic directory name)
601
+ const commandsDirName = availableContent.commandsDir || 'commands';
602
+ await checkContentExists('commands', selectedContent.commands || [], commandsDirName, true);
604
603
 
605
604
  } catch (error) {
606
605
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "2.3.4",
3
+ "version": "2.4.0",
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": {
@@ -1,82 +1,7 @@
1
1
  {
2
- "lite": {
3
- "name": "Lite",
4
- "description": "Essential workflow agents with core document and debugging skills",
5
- "useCase": "Users wanting comprehensive workflow management with essential document processing and debugging capabilities",
6
- "targetUsers": "Beginners, evaluators, users wanting balanced features with moderate footprint",
7
- "agents": [
8
- "1-create-prd",
9
- "2-generate-tasks",
10
- "3-process-task-list",
11
- "context-builder"
12
- ],
13
- "commands": [
14
- "brainstorming",
15
- "code-review",
16
- "condition-based-waiting",
17
- "debug",
18
- "docs-builder",
19
- "explain",
20
- "git-commit",
21
- "optimize",
22
- "refactor",
23
- "review",
24
- "root-cause-tracing",
25
- "security",
26
- "ship",
27
- "skill-creator",
28
- "stash",
29
- "systematic-debugging",
30
- "test-driven-development",
31
- "test-generate",
32
- "testing-anti-patterns",
33
- "verification-before-completion"
34
- ]
35
- },
36
- "standard": {
37
- "name": "Standard",
38
- "description": "Complete workflow and development team with enhanced testing and validation skills",
39
- "useCase": "Professional development with full team coordination, testing, and comprehensive skill set",
40
- "targetUsers": "Professional developers, teams, quality-focused users",
41
- "agents": [
42
- "1-create-prd",
43
- "2-generate-tasks",
44
- "3-process-task-list",
45
- "orchestrator",
46
- "quality-assurance",
47
- "code-developer",
48
- "market-researcher",
49
- "ui-designer",
50
- "context-builder"
51
- ],
52
- "commands": [
53
- "brainstorming",
54
- "code-review",
55
- "condition-based-waiting",
56
- "debug",
57
- "docs-builder",
58
- "explain",
59
- "git-commit",
60
- "optimize",
61
- "refactor",
62
- "review",
63
- "root-cause-tracing",
64
- "security",
65
- "ship",
66
- "skill-creator",
67
- "stash",
68
- "systematic-debugging",
69
- "test-driven-development",
70
- "test-generate",
71
- "testing-anti-patterns",
72
- "verification-before-completion"
73
- ]
74
- },
75
2
  "pro": {
76
3
  "name": "Pro",
77
- "description": "Complete installation with all capabilities including advanced development, testing, and creative skills",
78
- "useCase": "Full-featured installation for users needing all AI codegen, document processing, testing, debugging, and creative capabilities",
79
- "targetUsers": "Power users, enterprises, teams requiring comprehensive feature set",
4
+ "description": "Complete installation with all agents and commands",
80
5
  "agents": "*",
81
6
  "commands": "*"
82
7
  }
@@ -1,86 +1,7 @@
1
1
  {
2
- "lite": {
3
- "name": "Lite",
4
- "description": "Essential workflow agents with core document and debugging skills",
5
- "useCase": "Users wanting comprehensive workflow management with essential document processing and debugging capabilities",
6
- "targetUsers": "Beginners, evaluators, users wanting balanced features with moderate footprint",
7
- "agents": [
8
- "1-create-prd",
9
- "2-generate-tasks",
10
- "3-process-task-list",
11
- "context-builder"
12
- ],
13
- "skills": [
14
- "brainstorming",
15
- "code-review",
16
- "condition-based-waiting",
17
- "docs-builder",
18
- "root-cause-tracing",
19
- "skill-creator",
20
- "systematic-debugging",
21
- "test-driven-development",
22
- "testing-anti-patterns",
23
- "verification-before-completion"
24
- ],
25
- "commands": [
26
- "debug",
27
- "explain",
28
- "git-commit",
29
- "optimize",
30
- "refactor",
31
- "review",
32
- "security",
33
- "ship",
34
- "stash",
35
- "test-generate"
36
- ]
37
- },
38
- "standard": {
39
- "name": "Standard",
40
- "description": "Complete workflow and development team with enhanced testing and validation skills",
41
- "useCase": "Professional development with full team coordination, testing, and comprehensive skill set",
42
- "targetUsers": "Professional developers, teams, quality-focused users",
43
- "agents": [
44
- "1-create-prd",
45
- "2-generate-tasks",
46
- "3-process-task-list",
47
- "orchestrator",
48
- "quality-assurance",
49
- "code-developer",
50
- "market-researcher",
51
- "ui-designer",
52
- "context-builder"
53
- ],
54
- "skills": [
55
- "brainstorming",
56
- "code-review",
57
- "condition-based-waiting",
58
- "docs-builder",
59
- "root-cause-tracing",
60
- "skill-creator",
61
- "systematic-debugging",
62
- "test-driven-development",
63
- "testing-anti-patterns",
64
- "verification-before-completion"
65
- ],
66
- "commands": [
67
- "debug",
68
- "explain",
69
- "git-commit",
70
- "optimize",
71
- "refactor",
72
- "review",
73
- "security",
74
- "ship",
75
- "stash",
76
- "test-generate"
77
- ]
78
- },
79
2
  "pro": {
80
3
  "name": "Pro",
81
- "description": "Complete installation with all capabilities including advanced development, testing, and creative skills",
82
- "useCase": "Full-featured installation for users needing all AI codegen, document processing, testing, debugging, and creative capabilities",
83
- "targetUsers": "Power users, enterprises, teams requiring comprehensive feature set",
4
+ "description": "Complete installation with all agents, skills, and commands",
84
5
  "agents": "*",
85
6
  "skills": "*",
86
7
  "commands": "*"
@@ -1,82 +1,7 @@
1
1
  {
2
- "lite": {
3
- "name": "Lite",
4
- "description": "Essential workflow agents with core document and debugging skills",
5
- "useCase": "Users wanting comprehensive workflow management with essential document processing and debugging capabilities",
6
- "targetUsers": "Beginners, evaluators, users wanting balanced features with moderate footprint",
7
- "agents": [
8
- "1-create-prd",
9
- "2-generate-tasks",
10
- "3-process-task-list",
11
- "context-builder"
12
- ],
13
- "commands": [
14
- "brainstorming",
15
- "code-review",
16
- "condition-based-waiting",
17
- "debug",
18
- "docs-builder",
19
- "explain",
20
- "git-commit",
21
- "optimize",
22
- "refactor",
23
- "review",
24
- "root-cause-tracing",
25
- "security",
26
- "ship",
27
- "skill-creator",
28
- "stash",
29
- "systematic-debugging",
30
- "test-driven-development",
31
- "test-generate",
32
- "testing-anti-patterns",
33
- "verification-before-completion"
34
- ]
35
- },
36
- "standard": {
37
- "name": "Standard",
38
- "description": "Complete workflow and development team with enhanced testing and validation skills",
39
- "useCase": "Professional development with full team coordination, testing, and comprehensive skill set",
40
- "targetUsers": "Professional developers, teams, quality-focused users",
41
- "agents": [
42
- "1-create-prd",
43
- "2-generate-tasks",
44
- "3-process-task-list",
45
- "orchestrator",
46
- "quality-assurance",
47
- "code-developer",
48
- "market-researcher",
49
- "ui-designer",
50
- "context-builder"
51
- ],
52
- "commands": [
53
- "brainstorming",
54
- "code-review",
55
- "condition-based-waiting",
56
- "debug",
57
- "docs-builder",
58
- "explain",
59
- "git-commit",
60
- "optimize",
61
- "refactor",
62
- "review",
63
- "root-cause-tracing",
64
- "security",
65
- "ship",
66
- "skill-creator",
67
- "stash",
68
- "systematic-debugging",
69
- "test-driven-development",
70
- "test-generate",
71
- "testing-anti-patterns",
72
- "verification-before-completion"
73
- ]
74
- },
75
2
  "pro": {
76
3
  "name": "Pro",
77
- "description": "Complete installation with all capabilities including advanced development, testing, and creative skills",
78
- "useCase": "Full-featured installation for users needing all AI codegen, document processing, testing, debugging, and creative capabilities",
79
- "targetUsers": "Power users, enterprises, teams requiring comprehensive feature set",
4
+ "description": "Complete installation with all agents and commands",
80
5
  "agents": "*",
81
6
  "commands": "*"
82
7
  }
@@ -1,82 +1,7 @@
1
1
  {
2
- "lite": {
3
- "name": "Lite",
4
- "description": "Essential workflow agents with core document and debugging skills",
5
- "useCase": "Users wanting comprehensive workflow management with essential document processing and debugging capabilities",
6
- "targetUsers": "Beginners, evaluators, users wanting balanced features with moderate footprint",
7
- "agents": [
8
- "1-create-prd",
9
- "2-generate-tasks",
10
- "3-process-task-list",
11
- "context-builder"
12
- ],
13
- "commands": [
14
- "brainstorming",
15
- "code-review",
16
- "condition-based-waiting",
17
- "debug",
18
- "docs-builder",
19
- "explain",
20
- "git-commit",
21
- "optimize",
22
- "refactor",
23
- "review",
24
- "root-cause-tracing",
25
- "security",
26
- "ship",
27
- "skill-creator",
28
- "stash",
29
- "systematic-debugging",
30
- "test-driven-development",
31
- "test-generate",
32
- "testing-anti-patterns",
33
- "verification-before-completion"
34
- ]
35
- },
36
- "standard": {
37
- "name": "Standard",
38
- "description": "Complete workflow and development team with enhanced testing and validation skills",
39
- "useCase": "Professional development with full team coordination, testing, and comprehensive skill set",
40
- "targetUsers": "Professional developers, teams, quality-focused users",
41
- "agents": [
42
- "1-create-prd",
43
- "2-generate-tasks",
44
- "3-process-task-list",
45
- "orchestrator",
46
- "quality-assurance",
47
- "code-developer",
48
- "market-researcher",
49
- "ui-designer",
50
- "context-builder"
51
- ],
52
- "commands": [
53
- "brainstorming",
54
- "code-review",
55
- "condition-based-waiting",
56
- "debug",
57
- "docs-builder",
58
- "explain",
59
- "git-commit",
60
- "optimize",
61
- "refactor",
62
- "review",
63
- "root-cause-tracing",
64
- "security",
65
- "ship",
66
- "skill-creator",
67
- "stash",
68
- "systematic-debugging",
69
- "test-driven-development",
70
- "test-generate",
71
- "testing-anti-patterns",
72
- "verification-before-completion"
73
- ]
74
- },
75
2
  "pro": {
76
3
  "name": "Pro",
77
- "description": "Complete installation with all capabilities including advanced development, testing, and creative skills",
78
- "useCase": "Full-featured installation for users needing all AI codegen, document processing, testing, debugging, and creative capabilities",
79
- "targetUsers": "Power users, enterprises, teams requiring comprehensive feature set",
4
+ "description": "Complete installation with all agents and commands",
80
5
  "agents": "*",
81
6
  "commands": "*"
82
7
  }