@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
@@ -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
+ ```