@amrhas82/agentic-kit 2.3.0 → 2.3.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
|
@@ -451,7 +451,7 @@ ${colors.bright}${colors.cyan}██╔══██║██║ ██║█
|
|
|
451
451
|
${colors.bright}${colors.cyan}██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║${colors.reset}
|
|
452
452
|
${colors.bright}${colors.cyan}╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝${colors.reset}
|
|
453
453
|
|
|
454
|
-
${colors.bright}v2.3.
|
|
454
|
+
${colors.bright}v2.3.1 | 11 agents + 20 commands per tool${colors.reset}
|
|
455
455
|
`);
|
|
456
456
|
}
|
|
457
457
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amrhas82/agentic-kit",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
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": {
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"files": [
|
|
68
68
|
"installer/",
|
|
69
69
|
"packages/",
|
|
70
|
+
"tools/",
|
|
70
71
|
"docs/",
|
|
71
72
|
"cli.js",
|
|
72
73
|
"index.js",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "ampcode",
|
|
3
|
+
"name": "Ampcode",
|
|
4
|
+
"description": "Amplified AI codegen workflows",
|
|
5
|
+
"default_path": "~/.amp",
|
|
6
|
+
"optimization": "amplified-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "ampcode-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "amplified-optimized",
|
|
11
|
+
"skill_compatibility": "ampcode-native",
|
|
12
|
+
"resource_format": "enhanced",
|
|
13
|
+
"hook_integration": "ampcode-hooks"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "claude",
|
|
3
|
+
"name": "Claude Code",
|
|
4
|
+
"description": "Conversational AI development assistant",
|
|
5
|
+
"default_path": "~/.claude",
|
|
6
|
+
"optimization": "conversational-ai",
|
|
7
|
+
"integration_type": "plugin",
|
|
8
|
+
"manifest_format": "claude-plugin",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "claude-conversational",
|
|
11
|
+
"skill_compatibility": "claude-native",
|
|
12
|
+
"resource_format": "markdown",
|
|
13
|
+
"hook_integration": "claude-plugin"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "droid",
|
|
3
|
+
"name": "Droid",
|
|
4
|
+
"description": "Mobile-focused AI codegen tool",
|
|
5
|
+
"default_path": "~/.factory",
|
|
6
|
+
"optimization": "mobile-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "droid-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "mobile-optimized",
|
|
11
|
+
"skill_compatibility": "droid-native",
|
|
12
|
+
"resource_format": "mobile-focused",
|
|
13
|
+
"hook_integration": "droid-hooks"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "opencode",
|
|
3
|
+
"name": "Opencode",
|
|
4
|
+
"description": "CLI-based AI codegen tool",
|
|
5
|
+
"default_path": "~/.config/opencode",
|
|
6
|
+
"optimization": "cli-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "opencode-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "cli-optimized",
|
|
11
|
+
"skill_compatibility": "cli-native",
|
|
12
|
+
"resource_format": "terminal",
|
|
13
|
+
"hook_integration": "cli-hooks"
|
|
14
|
+
}
|