@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
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Step 0: Library Scanner (PRE-STEP — Always First) 🔍
|
|
2
|
+
|
|
3
|
+
**Purpose:** Scan the APK structure to identify all third-party libraries before any coding.
|
|
4
|
+
|
|
5
|
+
## Process
|
|
6
|
+
|
|
7
|
+
1. **Scan `smali/` directories** for package patterns:
|
|
8
|
+
```
|
|
9
|
+
smali/com/google/ → Google SDKs
|
|
10
|
+
smali/com/facebook/ → Facebook SDK
|
|
11
|
+
smali/com/squareup/ → OkHttp, Retrofit, Picasso
|
|
12
|
+
smali/io/reactivex/ → RxJava
|
|
13
|
+
smali/org/greenrobot/ → EventBus
|
|
14
|
+
smali/com/bumptech/ → Glide
|
|
15
|
+
smali/com/airbnb/ → Lottie
|
|
16
|
+
smali/androidx/ → AndroidX (baseline)
|
|
17
|
+
smali/com/jakewharton/ → Butterknife, Timber
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
2. **Check `lib/` for native libraries (.so)**:
|
|
21
|
+
```
|
|
22
|
+
lib/arm64-v8a/*.so → 64-bit native libs
|
|
23
|
+
lib/armeabi-v7a/*.so → 32-bit native libs
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
3. **Check `assets/` for embedded resources:**
|
|
27
|
+
- ML models (.tflite, .onnx)
|
|
28
|
+
- WebView HTML/JS bundles
|
|
29
|
+
- Config files (JSON, XML)
|
|
30
|
+
|
|
31
|
+
4. **Output: Library Report**
|
|
32
|
+
```markdown
|
|
33
|
+
## 📦 Library Detection Report
|
|
34
|
+
|
|
35
|
+
### ✅ Can Reuse (add to build.gradle)
|
|
36
|
+
| Library | Detected Package | Latest Version | Action |
|
|
37
|
+
|---------|-----------------|----------------|--------|
|
|
38
|
+
| Retrofit | com.squareup.retrofit2 | 2.9.0 | Add dependency |
|
|
39
|
+
| OkHttp | com.squareup.okhttp3 | 4.12.0 | Add dependency |
|
|
40
|
+
| Glide | com.bumptech.glide | 4.16.0 | Evaluate → Coil? |
|
|
41
|
+
|
|
42
|
+
### 🔄 Must Replace (legacy)
|
|
43
|
+
| Old Library | Detected Package | Replacement |
|
|
44
|
+
|-------------|-----------------|-------------|
|
|
45
|
+
| Volley | com.android.volley | Retrofit |
|
|
46
|
+
| AsyncTask | android.os.AsyncTask | Coroutines |
|
|
47
|
+
|
|
48
|
+
### 📱 Native (.so) — Keep As-Is
|
|
49
|
+
| File | Architecture | Notes |
|
|
50
|
+
|------|-------------|-------|
|
|
51
|
+
| libfoo.so | arm64-v8a | Need JNI bridge |
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
# Step 1: AndroidManifest Analysis & Project Bootstrap 📄
|
|
57
|
+
|
|
58
|
+
**Input:** User provides `AndroidManifest.xml` from Apktool output.
|
|
59
|
+
|
|
60
|
+
## Tasks
|
|
61
|
+
|
|
62
|
+
1. Extract Application ID and original package name
|
|
63
|
+
2. List all required permissions (group by category)
|
|
64
|
+
3. Identify entry points: Application class, SplashActivity, MainActivity
|
|
65
|
+
4. Map all components:
|
|
66
|
+
- Activities → future Compose screens
|
|
67
|
+
- Services → WorkManager candidates?
|
|
68
|
+
- BroadcastReceivers → keep or replace with Flow?
|
|
69
|
+
- ContentProviders → keep or replace with Room?
|
|
70
|
+
5. Detect intent-filters for deep links
|
|
71
|
+
6. **Output:** Propose Clean Architecture project structure
|
|
72
|
+
|
|
73
|
+
## Project Structure Template
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
app/src/main/java/com/package/app/
|
|
77
|
+
├── App.kt # Application class
|
|
78
|
+
├── di/ # Hilt modules
|
|
79
|
+
│ ├── AppModule.kt
|
|
80
|
+
│ ├── NetworkModule.kt
|
|
81
|
+
│ └── DatabaseModule.kt
|
|
82
|
+
├── data/ # Data Layer
|
|
83
|
+
│ ├── remote/
|
|
84
|
+
│ │ ├── api/ # Retrofit interfaces
|
|
85
|
+
│ │ ├── dto/ # Data Transfer Objects
|
|
86
|
+
│ │ └── interceptor/ # OkHttp interceptors
|
|
87
|
+
│ ├── local/
|
|
88
|
+
│ │ ├── db/ # Room database
|
|
89
|
+
│ │ ├── dao/ # Room DAOs
|
|
90
|
+
│ │ ├── entity/ # Room entities
|
|
91
|
+
│ │ └── datastore/ # DataStore preferences
|
|
92
|
+
│ └── repository/ # Repository implementations
|
|
93
|
+
├── domain/ # Domain Layer
|
|
94
|
+
│ ├── model/ # Business models
|
|
95
|
+
│ ├── repository/ # Repository interfaces
|
|
96
|
+
│ └── usecase/ # Use cases
|
|
97
|
+
├── presentation/ # Presentation Layer
|
|
98
|
+
│ ├── navigation/ # NavGraph + Routes
|
|
99
|
+
│ ├── theme/ # Material 3 Theme
|
|
100
|
+
│ ├── components/ # Reusable Compose components
|
|
101
|
+
│ └── screens/ # Feature screens
|
|
102
|
+
│ ├── splash/
|
|
103
|
+
│ ├── home/
|
|
104
|
+
│ └── ...
|
|
105
|
+
└── util/ # Extensions, helpers
|
|
106
|
+
```
|