@leejungkiin/awkit 1.5.0 → 1.5.2
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 +6 -5
- package/bin/awk.js +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AWKit — Antigravity Workflow Kit v1
|
|
2
2
|
|
|
3
|
-
> **v1.
|
|
3
|
+
> **v1.5.0** · 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
|
|
|
@@ -86,13 +86,13 @@ awkit install --all
|
|
|
86
86
|
awkit sync
|
|
87
87
|
|
|
88
88
|
# 3. Commit the snapshot
|
|
89
|
-
git add -A && git commit -m "chore: sync AWKit v1.
|
|
89
|
+
git add -A && git commit -m "chore: sync AWKit v1.5.0"
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
```
|
|
95
|
-
main-awf/ (AWKit v1.
|
|
95
|
+
main-awf/ (AWKit v1.5.x — Source of Truth)
|
|
96
96
|
├── bin/
|
|
97
97
|
│ ├── awk.js ← CLI entry point
|
|
98
98
|
│ └── awf.js ← (legacy, kept for reference)
|
|
@@ -130,7 +130,7 @@ main-awf/ (AWKit v1.1.x — Source of Truth)
|
|
|
130
130
|
├── templates/ ← Project templates
|
|
131
131
|
├── scripts/
|
|
132
132
|
│ └── harvest.js ← Migration: pull from ~/.gemini/
|
|
133
|
-
├── VERSION → 1.
|
|
133
|
+
├── VERSION → 1.5.0
|
|
134
134
|
└── package.json (@leejungkiin/awkit)
|
|
135
135
|
```
|
|
136
136
|
|
|
@@ -218,7 +218,8 @@ awkit enable-pack creator-studio
|
|
|
218
218
|
| 5.x | Antigravity v5 | Node.js, Symphony integration |
|
|
219
219
|
| 6.x | AWF v6 | main-awf, multiple sources |
|
|
220
220
|
| **1.1.x** | **AWKit v1.1.9** | **Single source of truth, Native CLI, Telegram Integration** |
|
|
221
|
+
| **1.5.x** | **AWKit v1.5.0** | **Unified Orchestration, Symphony 1.5.0, 7-Gate Intelligence** |
|
|
221
222
|
|
|
222
223
|
---
|
|
223
224
|
|
|
224
|
-
*AWKit v1.
|
|
225
|
+
*AWKit v1.5.x — Antigravity Workflow Kit · Created by Kien AI*
|
package/bin/awk.js
CHANGED
|
@@ -2549,6 +2549,19 @@ Additional project context can be found in:
|
|
|
2549
2549
|
log(`${C.cyan}👉 Run 'symphony task list' to manage tasks.${C.reset}`);
|
|
2550
2550
|
log(`${C.cyan}👉 Run 'npx gitnexus analyze' after major changes to refresh index.${C.reset}`);
|
|
2551
2551
|
log('');
|
|
2552
|
+
|
|
2553
|
+
// ── 7. Open Documentation ───────────────────────────────────────────────────
|
|
2554
|
+
try {
|
|
2555
|
+
const platform = process.platform;
|
|
2556
|
+
let openCmd = 'xdg-open';
|
|
2557
|
+
if (platform === 'darwin') openCmd = 'open';
|
|
2558
|
+
else if (platform === 'win32') openCmd = 'start ""';
|
|
2559
|
+
|
|
2560
|
+
execSync(`${openCmd} "help.html"`, { cwd, stdio: 'ignore' });
|
|
2561
|
+
dim('Opened help.html in browser');
|
|
2562
|
+
} catch(e) {
|
|
2563
|
+
// Silently ignore if opening fails
|
|
2564
|
+
}
|
|
2552
2565
|
}
|
|
2553
2566
|
|
|
2554
2567
|
// ─── Telegram Bot API ─────────────────────────────────────────────────────────
|