@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.
Files changed (64) hide show
  1. package/README.md +38 -14
  2. package/bin/awk.js +438 -86
  3. package/bin/claude-generators.js +3 -1
  4. package/bin/cline-generators.js +3 -1
  5. package/bin/codex-generators.js +7 -2
  6. package/core/orchestrator.md +17 -3
  7. package/core/skill-runtime-manifest.json +37 -0
  8. package/package.json +2 -2
  9. package/skill-packs/creator-studio/README.md +19 -0
  10. package/skill-packs/creator-studio/pack.json +10 -0
  11. package/skill-packs/marketing/README.md +64 -0
  12. package/skill-packs/marketing/pack.json +37 -0
  13. package/skill-packs/mobile-android/README.md +16 -0
  14. package/skill-packs/mobile-android/pack.json +10 -0
  15. package/skill-packs/mobile-ios/README.md +22 -0
  16. package/skill-packs/mobile-ios/pack.json +16 -0
  17. package/skill-packs/neural-memory/pack.json +8 -2
  18. package/skill-packs/superpowers/pack.json +1 -0
  19. package/skill-packs/superpowers/skills/single-flow-task-execution/SKILL.md +59 -358
  20. package/skill-packs/superpowers/skills/writing-skills/SKILL.md +60 -654
  21. package/skill-packs/superpowers/skills/writing-skills/examples/anti-rationalization.md +75 -0
  22. package/skill-packs/superpowers/skills/writing-skills/examples/cso-optimization.md +67 -0
  23. package/skill-packs/superpowers/skills/writing-skills/examples/tdd-for-skills.md +63 -0
  24. package/skills/CATALOG.md +49 -44
  25. package/skills/brainstorm-agent/SKILL.md +55 -315
  26. package/skills/brainstorm-agent/templates/brief-template.md +76 -0
  27. package/skills/codex-conductor/SKILL.md +55 -259
  28. package/skills/codex-conductor/examples/prompt-templates.md +72 -0
  29. package/skills/module-spec-writer/SKILL.md +38 -365
  30. package/skills/module-spec-writer/examples/port-migration-mode.md +40 -0
  31. package/skills/module-spec-writer/templates/module-spec-template.md +118 -0
  32. package/skills/orchestrator/SKILL.md +17 -8
  33. package/skills/single-flow-task-execution/SKILL.md +56 -363
  34. package/skills/single-flow-task-execution/examples/workflow-example.md +91 -0
  35. package/skills/smali-to-kotlin/SKILL.md +23 -416
  36. package/skills/smali-to-kotlin/examples/getting-started/tech-stack.md +58 -0
  37. package/skills/smali-to-kotlin/examples/pipeline/data-ui-parity.md +118 -0
  38. package/skills/smali-to-kotlin/examples/pipeline/scanner-and-bootstrap.md +106 -0
  39. package/skills/smali-to-swift/SKILL.md +18 -621
  40. package/skills/smali-to-swift/examples/getting-started/tech-stack.md +72 -0
  41. package/skills/smali-to-swift/examples/getting-started/toolchain.md +32 -0
  42. package/skills/smali-to-swift/examples/pipeline/core-logic.md +45 -0
  43. package/skills/smali-to-swift/examples/pipeline/data-layer.md +76 -0
  44. package/skills/smali-to-swift/examples/pipeline/framework-scanner.md +73 -0
  45. package/skills/smali-to-swift/examples/pipeline/project-bootstrap.md +76 -0
  46. package/skills/smali-to-swift/examples/pipeline/sdk-integration.md +66 -0
  47. package/skills/smali-to-swift/examples/pipeline/ui-viewmodel.md +96 -0
  48. package/skills/smali-to-swift/references/objc-to-swift-mapping.md +57 -0
  49. package/skills/spec-gate/SKILL.md +51 -265
  50. package/skills/spec-gate/templates/design-templates.md +93 -0
  51. package/skills/symphony-enforcer/SKILL.md +24 -555
  52. package/skills/symphony-enforcer/examples/startup-protocol.md +92 -0
  53. package/skills/symphony-enforcer/examples/task-completion.md +100 -0
  54. package/skills/symphony-enforcer/examples/three-phase.md +107 -0
  55. package/skills/symphony-enforcer/examples/trigger-points.md +99 -0
  56. package/skills/symphony-orchestrator/SKILL.md +1 -1
  57. package/skills/writing-skills/SKILL.md +82 -70
  58. package/skills/writing-skills/examples/anti-rationalization.md +53 -0
  59. package/skills/writing-skills/examples/cso-optimization.md +52 -0
  60. package/skills/writing-skills/examples/tdd-for-skills.md +48 -0
  61. package/templates/help.html +447 -0
  62. package/skills/memory-sync/SKILL.md +0 -424
  63. package/skills/memory-sync/memory-router.md +0 -185
  64. 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.1.9** · Single Source of Truth · Symphony-First · Ambient Memory
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
- > 💡 **Bước 2 & 3 được tự động cài khi chạy `awkit install`** nếu môi trường đầy đủ.
47
- > AI agent cũng tự detect cài các dependency thiếu khi init session.
46
+ > 💡 `awkit install` giờ chỉ cài **core runtime profile** cho **active platform** mặc định để giữ context nhẹ 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 `~/.gemini/antigravity/` |
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 ~/.gemini/
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.1.3"
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.1.x — Source of Truth)
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/ ← 10+ skills (auto-activate)
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
- └── neural-memory/ (Phase 3 - coming soon)
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.1.9
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-dev
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.1.x — Antigravity Workflow Kit · Created by Kien AI*
225
+ *AWKit v1.5.x — Antigravity Workflow Kit · Created by Kien AI*