@leejungkiin/awkit 1.1.3 → 1.1.4
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 +25 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# AWKit — Antigravity Workflow Kit v1
|
|
1
|
+
# AWKit — Antigravity Workflow Kit v1
|
|
2
2
|
|
|
3
|
-
> **v1.
|
|
3
|
+
> **v1.1.4** · Single Source of Truth · Symphony-First · Ambient Memory
|
|
4
4
|
|
|
5
5
|
AWKit là framework điều phối AI agent chuyên nghiệp. Đây là **nơi duy nhất** chứa toàn bộ workflows, skills, GEMINI.md và cấu hình — không còn phân tán giữa nhiều repo.
|
|
6
6
|
|
|
@@ -22,6 +22,7 @@ awkit doctor
|
|
|
22
22
|
|---------|-------------|
|
|
23
23
|
| `awkit install` | Deploy AWKit vào `~/.gemini/antigravity/` |
|
|
24
24
|
| `awkit update` | Update lên version mới nhất |
|
|
25
|
+
| `awkit init` | Khởi tạo project mới (tạo .project-identity, CODEBASE.md, etc.) |
|
|
25
26
|
| `awkit sync` | Full sync: harvest + install (one shot) |
|
|
26
27
|
| `awkit status` | So sánh repo vs installed (diff view) |
|
|
27
28
|
| `awkit harvest` | Pull từ `~/.gemini/antigravity/` về repo |
|
|
@@ -29,6 +30,8 @@ awkit doctor
|
|
|
29
30
|
| `awkit enable-pack <name>` | Kích hoạt skill pack |
|
|
30
31
|
| `awkit disable-pack <name>` | Vô hiệu skill pack |
|
|
31
32
|
| `awkit list-packs` | Xem danh sách skill packs |
|
|
33
|
+
| `awkit tg setup` | Cài đặt Telegram Bot Token, Chat ID & Topic |
|
|
34
|
+
| `awkit tg send <msg>` | Gửi tin nhắn qua Telegram |
|
|
32
35
|
| `awkit version` | Show version |
|
|
33
36
|
|
|
34
37
|
### Typical Workflow
|
|
@@ -47,13 +50,13 @@ awkit install
|
|
|
47
50
|
awkit sync
|
|
48
51
|
|
|
49
52
|
# 3. Commit the snapshot
|
|
50
|
-
git add -A && git commit -m "chore: sync AWKit
|
|
53
|
+
git add -A && git commit -m "chore: sync AWKit v1.1.3"
|
|
51
54
|
```
|
|
52
55
|
|
|
53
56
|
|
|
54
57
|
|
|
55
58
|
```
|
|
56
|
-
main-awf/ (AWKit
|
|
59
|
+
main-awf/ (AWKit v1.1.x — Source of Truth)
|
|
57
60
|
├── bin/
|
|
58
61
|
│ ├── awk.js ← CLI entry point
|
|
59
62
|
│ └── awf.js ← (legacy, kept for reference)
|
|
@@ -86,7 +89,7 @@ main-awf/ (AWKit v7.0 — Source of Truth)
|
|
|
86
89
|
├── templates/ ← Project templates
|
|
87
90
|
├── scripts/
|
|
88
91
|
│ └── harvest.js ← Migration: pull from ~/.gemini/
|
|
89
|
-
├── VERSION → 1.
|
|
92
|
+
├── VERSION → 1.1.3
|
|
90
93
|
└── package.json (@leejungkiin/awkit)
|
|
91
94
|
```
|
|
92
95
|
|
|
@@ -114,6 +117,21 @@ main-awf/ (edit here)
|
|
|
114
117
|
Gemini / Claude / Any AI
|
|
115
118
|
```
|
|
116
119
|
|
|
120
|
+
## 📨 Telegram Integration
|
|
121
|
+
|
|
122
|
+
Bạn có thể cấu hình AWKit gửi thông báo tự động (deploy xong, test pass...) qua Telegram:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
# 1. Setup Bot Token, Chat ID và Message Thread ID (Topic)
|
|
126
|
+
awkit tg setup
|
|
127
|
+
|
|
128
|
+
# 2. Gửi thử tin nhắn kiểm tra
|
|
129
|
+
awkit tg send "Hello from AWKit!"
|
|
130
|
+
|
|
131
|
+
# 3. Gửi đến chat/topic cụ thể
|
|
132
|
+
awkit tg send "Hello" --chat -100123456789 --topic 1234
|
|
133
|
+
```
|
|
134
|
+
|
|
117
135
|
## 📦 Skill Packs
|
|
118
136
|
|
|
119
137
|
```bash
|
|
@@ -129,8 +147,8 @@ awkit enable-pack ios-dev
|
|
|
129
147
|
| 4.x | AWF v4 | Shell-based, `awf-` prefix skills |
|
|
130
148
|
| 5.x | Antigravity v5 | Node.js, Symphony integration |
|
|
131
149
|
| 6.x | AWF v6 | main-awf, multiple sources |
|
|
132
|
-
| **1.
|
|
150
|
+
| **1.1.x** | **AWKit v1.1** | **Single source of truth, Native CLI, Telegram Integration** |
|
|
133
151
|
|
|
134
152
|
---
|
|
135
153
|
|
|
136
|
-
*AWKit v1.
|
|
154
|
+
*AWKit v1.1.x — Antigravity Workflow Kit · Created by Kien AI*
|