@amrhas82/agentic-kit 1.7.6 → 1.7.7
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/package.json +4 -2
- package/postinstall.js +33 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amrhas82/agentic-kit",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
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)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"prepublishOnly": "npm run clean && npm run validate",
|
|
20
20
|
"publish:npm": "npm publish --registry https://registry.npmjs.org --access public",
|
|
21
21
|
"publish:github": "npm publish --registry https://npm.pkg.github.com",
|
|
22
|
-
"publish:both": "npm run publish:npm && npm run publish:github"
|
|
22
|
+
"publish:both": "npm run publish:npm && npm run publish:github",
|
|
23
|
+
"postinstall": "node postinstall.js"
|
|
23
24
|
},
|
|
24
25
|
"keywords": [
|
|
25
26
|
"claude",
|
|
@@ -69,6 +70,7 @@
|
|
|
69
70
|
"docs/",
|
|
70
71
|
"cli.js",
|
|
71
72
|
"index.js",
|
|
73
|
+
"postinstall.js",
|
|
72
74
|
"README.md",
|
|
73
75
|
"QUICK-START.md",
|
|
74
76
|
"VARIANTS.md",
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const message = `
|
|
4
|
+
==========================================
|
|
5
|
+
Agentic Kit Installation Complete
|
|
6
|
+
==========================================
|
|
7
|
+
|
|
8
|
+
Next step: Run the interactive installer
|
|
9
|
+
|
|
10
|
+
$ agentic-kit
|
|
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
|
|
17
|
+
|
|
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)
|
|
22
|
+
|
|
23
|
+
Quick commands:
|
|
24
|
+
agentic-kit # Interactive installer
|
|
25
|
+
agentic-kit --uninstall # Remove installed tools
|
|
26
|
+
|
|
27
|
+
Documentation:
|
|
28
|
+
https://github.com/amrhas82/agentic-kit
|
|
29
|
+
|
|
30
|
+
==========================================
|
|
31
|
+
`;
|
|
32
|
+
|
|
33
|
+
console.log(message);
|