@tdsoft-tech/aikit 0.1.34 → 0.1.35
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/README.md +24 -2
- package/dist/cli.js +324 -76
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +33 -7
- package/dist/index.js +38 -2
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +38 -2
- package/dist/mcp-server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
### **Open-Source AI Coding Agent Toolkit**
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**🚀 NEW: Google Antigravity Support!**
|
|
11
|
+
|
|
12
|
+
**Works with Google Antigravity, OpenCode, Cursor, and Claude Code**
|
|
11
13
|
|
|
12
14
|
[](https://www.npmjs.com/package/@tdsoft-tech/aikit)
|
|
13
15
|
[](LICENSE)
|
|
@@ -26,11 +28,31 @@
|
|
|
26
28
|
|
|
27
29
|
---
|
|
28
30
|
|
|
31
|
+
## 🚀 NEW: Google Antigravity Support
|
|
32
|
+
|
|
33
|
+
AIKit now supports **Google Antigravity** - Google DeepMind's next-generation AI IDE!
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Initialize with Antigravity
|
|
37
|
+
aikit init antigravity
|
|
38
|
+
|
|
39
|
+
# Install skills to .agent/skills/
|
|
40
|
+
aikit install antigravity
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Why Antigravity + AIKit?**
|
|
44
|
+
- 🧠 **Gemini-powered** - Leverage Google's most advanced AI
|
|
45
|
+
- 📁 **Native skill format** - Skills installed as `SKILL.md` files
|
|
46
|
+
- 🔄 **Progressive disclosure** - Agent discovers skills automatically
|
|
47
|
+
- ⚡ **Zero config** - Works out of the box
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
29
51
|
## ✨ What is AIKit?
|
|
30
52
|
|
|
31
53
|
**AIKit** is a powerful, open-source toolkit that extends your AI coding experience with reusable **skills**, intelligent **agents**, custom **commands**, and flexible **plugins**. It's designed to supercharge your development workflow with AI-driven automation.
|
|
32
54
|
|
|
33
|
-
**Works with
|
|
55
|
+
**Works with Google Antigravity (featured), OpenCode, Cursor, and Claude Code.**
|
|
34
56
|
|
|
35
57
|
Perfect for developers who want to:
|
|
36
58
|
- 🚀 **Automate repetitive tasks** with custom commands
|