@leejungkiin/awkit 1.1.9 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +6 -9
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AWKit — Antigravity Workflow Kit v1
2
2
 
3
- > **v1.1.4** · Single Source of Truth · Symphony-First · Ambient Memory
3
+ > **v1.1.9** · 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
 
@@ -120,7 +120,7 @@ main-awf/ (AWKit v1.1.x — Source of Truth)
120
120
  ├── templates/ ← Project templates
121
121
  ├── scripts/
122
122
  │ └── harvest.js ← Migration: pull from ~/.gemini/
123
- ├── VERSION → 1.1.3
123
+ ├── VERSION → 1.1.9
124
124
  └── package.json (@leejungkiin/awkit)
125
125
  ```
126
126
 
@@ -171,13 +171,10 @@ AWKit (từ bản cập nhật tích hợp mới) sử dụng **GitNexus** làm
171
171
 
172
172
  ```bash
173
173
  # 1. Quét toàn bộ project để tạo knowledge graph (chỉ cần chạy lần đầu hoặc khi cấu trúc code thay đổi lớn)
174
- npx gitnexus analyze
174
+ npx @leejungkiin/gitnexus analyze
175
175
 
176
- # 2. Sử dụng CLI để phân tích code hoặc explore codebase:
177
- gitnexus query "điểm thực thi workflow" # Tìm các file/class liên quan theo ngữ nghĩa
178
- gitnexus impact "tên_hàm_cần_sửa" # Xem mức độ ảnh hưởng (blast radius) trước khi edit code!
179
- gitnexus context "tên_class" # Góc nhìn 360 độ (Ai gọi nó? Nó gọi ai?)
180
- gitnexus rename "tên_cũ" "tên_mới" --dry-run # Đổi tên an toàn qua biểu đồ
176
+ # 2. Setup MCP servers skills tự động cho Antigravity và các editors khác:
177
+ npx @leejungkiin/gitnexus setup
181
178
  ```
182
179
 
183
180
  AI agent của hệ thống cũng tự động gọi qua cổng GitNexus bằng MCP Tools để tự phân tích rủi ro trước khi commit!
@@ -197,7 +194,7 @@ awkit enable-pack ios-dev
197
194
  | 4.x | AWF v4 | Shell-based, `awf-` prefix skills |
198
195
  | 5.x | Antigravity v5 | Node.js, Symphony integration |
199
196
  | 6.x | AWF v6 | main-awf, multiple sources |
200
- | **1.1.x** | **AWKit v1.1** | **Single source of truth, Native CLI, Telegram Integration** |
197
+ | **1.1.x** | **AWKit v1.1.9** | **Single source of truth, Native CLI, Telegram Integration** |
201
198
 
202
199
  ---
203
200
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leejungkiin/awkit",
3
- "version": "1.1.9",
3
+ "version": "1.2.0",
4
4
  "description": "Antigravity Workflow Kit. Unified AI agent orchestration system.",
5
5
  "main": "bin/awk.js",
6
6
  "bin": {
@@ -39,6 +39,6 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@leejungkiin/awkit-symphony": "^0.1.0",
42
- "gitnexus": "^1.4.7"
42
+ "@leejungkiin/gitnexus": "file:../gitnexus/gitnexus"
43
43
  }
44
44
  }