@leejungkiin/awkit 1.4.3 → 1.5.1
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 +38 -14
- package/bin/awk.js +438 -86
- package/bin/claude-generators.js +3 -1
- package/bin/cline-generators.js +3 -1
- package/bin/codex-generators.js +7 -2
- package/core/orchestrator.md +17 -3
- package/core/skill-runtime-manifest.json +37 -0
- package/package.json +2 -2
- package/skill-packs/creator-studio/README.md +19 -0
- package/skill-packs/creator-studio/pack.json +10 -0
- package/skill-packs/marketing/README.md +64 -0
- package/skill-packs/marketing/pack.json +37 -0
- package/skill-packs/mobile-android/README.md +16 -0
- package/skill-packs/mobile-android/pack.json +10 -0
- package/skill-packs/mobile-ios/README.md +22 -0
- package/skill-packs/mobile-ios/pack.json +16 -0
- package/skill-packs/neural-memory/pack.json +8 -2
- package/skill-packs/superpowers/pack.json +1 -0
- package/skill-packs/superpowers/skills/single-flow-task-execution/SKILL.md +59 -358
- package/skill-packs/superpowers/skills/writing-skills/SKILL.md +60 -654
- package/skill-packs/superpowers/skills/writing-skills/examples/anti-rationalization.md +75 -0
- package/skill-packs/superpowers/skills/writing-skills/examples/cso-optimization.md +67 -0
- package/skill-packs/superpowers/skills/writing-skills/examples/tdd-for-skills.md +63 -0
- package/skills/CATALOG.md +49 -44
- package/skills/brainstorm-agent/SKILL.md +55 -315
- package/skills/brainstorm-agent/templates/brief-template.md +76 -0
- package/skills/codex-conductor/SKILL.md +55 -259
- package/skills/codex-conductor/examples/prompt-templates.md +72 -0
- package/skills/module-spec-writer/SKILL.md +38 -365
- package/skills/module-spec-writer/examples/port-migration-mode.md +40 -0
- package/skills/module-spec-writer/templates/module-spec-template.md +118 -0
- package/skills/orchestrator/SKILL.md +17 -8
- package/skills/single-flow-task-execution/SKILL.md +56 -363
- package/skills/single-flow-task-execution/examples/workflow-example.md +91 -0
- package/skills/smali-to-kotlin/SKILL.md +23 -416
- package/skills/smali-to-kotlin/examples/getting-started/tech-stack.md +58 -0
- package/skills/smali-to-kotlin/examples/pipeline/data-ui-parity.md +118 -0
- package/skills/smali-to-kotlin/examples/pipeline/scanner-and-bootstrap.md +106 -0
- package/skills/smali-to-swift/SKILL.md +18 -621
- package/skills/smali-to-swift/examples/getting-started/tech-stack.md +72 -0
- package/skills/smali-to-swift/examples/getting-started/toolchain.md +32 -0
- package/skills/smali-to-swift/examples/pipeline/core-logic.md +45 -0
- package/skills/smali-to-swift/examples/pipeline/data-layer.md +76 -0
- package/skills/smali-to-swift/examples/pipeline/framework-scanner.md +73 -0
- package/skills/smali-to-swift/examples/pipeline/project-bootstrap.md +76 -0
- package/skills/smali-to-swift/examples/pipeline/sdk-integration.md +66 -0
- package/skills/smali-to-swift/examples/pipeline/ui-viewmodel.md +96 -0
- package/skills/smali-to-swift/references/objc-to-swift-mapping.md +57 -0
- package/skills/spec-gate/SKILL.md +51 -265
- package/skills/spec-gate/templates/design-templates.md +93 -0
- package/skills/symphony-enforcer/SKILL.md +24 -555
- package/skills/symphony-enforcer/examples/startup-protocol.md +92 -0
- package/skills/symphony-enforcer/examples/task-completion.md +100 -0
- package/skills/symphony-enforcer/examples/three-phase.md +107 -0
- package/skills/symphony-enforcer/examples/trigger-points.md +99 -0
- package/skills/symphony-orchestrator/SKILL.md +1 -1
- package/skills/writing-skills/SKILL.md +82 -70
- package/skills/writing-skills/examples/anti-rationalization.md +53 -0
- package/skills/writing-skills/examples/cso-optimization.md +52 -0
- package/skills/writing-skills/examples/tdd-for-skills.md +48 -0
- package/templates/help.html +447 -0
- package/skills/memory-sync/SKILL.md +0 -424
- package/skills/memory-sync/memory-router.md +0 -185
- package/skills/memory-sync/memory-templates.md +0 -201
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
|
|
|
@@ -33,7 +33,7 @@ awkit install
|
|
|
33
33
|
# 2. Symphony (Task Management & Multi-Agent Orchestration)
|
|
34
34
|
npm install -g @leejungkiin/awkit-symphony
|
|
35
35
|
|
|
36
|
-
# 3. NeuralMemory (AI Memory Engine — requires Python >= 3.11)
|
|
36
|
+
# 3. Optional: NeuralMemory pack (AI Memory Engine — requires Python >= 3.11)
|
|
37
37
|
pip install neural-memory
|
|
38
38
|
nmem init
|
|
39
39
|
|
|
@@ -43,15 +43,17 @@ symphony --version
|
|
|
43
43
|
nmem --version
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
> 💡 **
|
|
47
|
-
>
|
|
46
|
+
> 💡 `awkit install` giờ chỉ cài **core runtime profile** cho **active platform** mặc định để giữ context nhẹ và tránh generate artifact không cần thiết cho Cline/Claude.
|
|
47
|
+
> Các skill chuyên sâu theo domain sẽ được bật sau bằng `awkit enable-pack <name>`.
|
|
48
|
+
> Dùng `awkit install --all` chỉ khi anh/chị thực sự muốn regenerate tất cả platform cùng lúc.
|
|
48
49
|
|
|
49
50
|
|
|
50
51
|
## 📦 Commands
|
|
51
52
|
|
|
52
53
|
| Command | Description |
|
|
53
54
|
|---------|-------------|
|
|
54
|
-
| `awkit install` | Deploy AWKit vào
|
|
55
|
+
| `awkit install` | Deploy AWKit core runtime vào active platform hiện tại |
|
|
56
|
+
| `awkit install --all` | Deploy AWKit core runtime cho mọi platform được hỗ trợ |
|
|
55
57
|
| `awkit update` | Update lên version mới nhất |
|
|
56
58
|
| `awkit init` | Khởi tạo project mới (tạo .project-identity, CODEBASE.md, etc.) |
|
|
57
59
|
| `awkit sync` | Full sync: harvest + install (one shot) |
|
|
@@ -74,20 +76,23 @@ awkit status
|
|
|
74
76
|
# 2a. You edited in ~/.gemini/ → pull back to repo
|
|
75
77
|
awkit harvest
|
|
76
78
|
|
|
77
|
-
# 2b. You edited in repo → deploy to
|
|
79
|
+
# 2b. You edited in repo → deploy to active runtime
|
|
78
80
|
awkit install
|
|
79
81
|
|
|
82
|
+
# 2b-alt. Regenerate every platform on purpose
|
|
83
|
+
awkit install --all
|
|
84
|
+
|
|
80
85
|
# 2c. Both directions (full round-trip)
|
|
81
86
|
awkit sync
|
|
82
87
|
|
|
83
88
|
# 3. Commit the snapshot
|
|
84
|
-
git add -A && git commit -m "chore: sync AWKit v1.
|
|
89
|
+
git add -A && git commit -m "chore: sync AWKit v1.5.0"
|
|
85
90
|
```
|
|
86
91
|
|
|
87
92
|
|
|
88
93
|
|
|
89
94
|
```
|
|
90
|
-
main-awf/ (AWKit v1.
|
|
95
|
+
main-awf/ (AWKit v1.5.x — Source of Truth)
|
|
91
96
|
├── bin/
|
|
92
97
|
│ ├── awk.js ← CLI entry point
|
|
93
98
|
│ └── awf.js ← (legacy, kept for reference)
|
|
@@ -107,20 +112,25 @@ main-awf/ (AWKit v1.1.x — Source of Truth)
|
|
|
107
112
|
│ ├── roles/ tech-lead, pm, qa...
|
|
108
113
|
│ ├── meta/ customize, file-protection...
|
|
109
114
|
│ └── _uncategorized/ misc files
|
|
110
|
-
├── skills/ ←
|
|
115
|
+
├── skills/ ← Source skill library
|
|
111
116
|
│ ├── orchestrator/
|
|
112
117
|
│ ├── memory-sync/
|
|
113
118
|
│ ├── brainstorm-agent/
|
|
114
119
|
│ ├── symphony-orchestrator/
|
|
115
120
|
│ ├── awf-session-restore/
|
|
116
121
|
│ └── ...
|
|
117
|
-
├── skill-packs/ ← Optional add-ons
|
|
118
|
-
│
|
|
122
|
+
├── skill-packs/ ← Optional add-ons, installed on demand
|
|
123
|
+
│ ├── mobile-ios/
|
|
124
|
+
│ ├── mobile-android/
|
|
125
|
+
│ ├── marketing/
|
|
126
|
+
│ ├── creator-studio/
|
|
127
|
+
│ ├── neural-memory/
|
|
128
|
+
│ └── superpowers/
|
|
119
129
|
├── schemas/ ← JSON schemas
|
|
120
130
|
├── templates/ ← Project templates
|
|
121
131
|
├── scripts/
|
|
122
132
|
│ └── harvest.js ← Migration: pull from ~/.gemini/
|
|
123
|
-
├── VERSION → 1.
|
|
133
|
+
├── VERSION → 1.5.0
|
|
124
134
|
└── package.json (@leejungkiin/awkit)
|
|
125
135
|
```
|
|
126
136
|
|
|
@@ -148,6 +158,16 @@ main-awf/ (edit here)
|
|
|
148
158
|
Gemini / Claude / Any AI
|
|
149
159
|
```
|
|
150
160
|
|
|
161
|
+
## 🪶 Lean Runtime
|
|
162
|
+
|
|
163
|
+
`awkit install` no longer copies the full source skill library into runtime by default.
|
|
164
|
+
|
|
165
|
+
- Default install = **core work profile** only: orchestration, planning, debugging, verification, review, and project coordination.
|
|
166
|
+
- Default target = **active platform only**, which keeps repo-local generated files like `CLAUDE.md` and `.clinerules/*` untouched unless you explicitly choose them.
|
|
167
|
+
- Domain-heavy skills like mobile reverse engineering, ASO/marketing, and media production stay out of runtime until you opt in.
|
|
168
|
+
- `awkit status` now compares runtime against the active core profile + enabled packs, so optional skills no longer show as false drift.
|
|
169
|
+
- Re-running `awkit install` archives old managed optional skills from runtime, which helps shrink the skill catalog exposed to the agent.
|
|
170
|
+
|
|
151
171
|
## 📨 Telegram Integration
|
|
152
172
|
|
|
153
173
|
Bạn có thể cấu hình AWKit gửi thông báo tự động (deploy xong, test pass...) qua Telegram:
|
|
@@ -184,7 +204,10 @@ AI agent của hệ thống cũng tự động gọi qua cổng GitNexus bằng
|
|
|
184
204
|
```bash
|
|
185
205
|
awkit list-packs
|
|
186
206
|
awkit enable-pack neural-memory
|
|
187
|
-
awkit enable-pack ios
|
|
207
|
+
awkit enable-pack mobile-ios
|
|
208
|
+
awkit enable-pack mobile-android
|
|
209
|
+
awkit enable-pack marketing
|
|
210
|
+
awkit enable-pack creator-studio
|
|
188
211
|
```
|
|
189
212
|
|
|
190
213
|
## 🏗️ Versioning
|
|
@@ -195,7 +218,8 @@ awkit enable-pack ios-dev
|
|
|
195
218
|
| 5.x | Antigravity v5 | Node.js, Symphony integration |
|
|
196
219
|
| 6.x | AWF v6 | main-awf, multiple sources |
|
|
197
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** |
|
|
198
222
|
|
|
199
223
|
---
|
|
200
224
|
|
|
201
|
-
*AWKit v1.
|
|
225
|
+
*AWKit v1.5.x — Antigravity Workflow Kit · Created by Kien AI*
|