@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
@@ -25,14 +25,16 @@ function generateClaudeRules(sourcePath, destPath) {
25
25
  * Preserves full directory structure: <skill-name>/SKILL.md + scripts/ + templates/
26
26
  * Injects YAML frontmatter if missing.
27
27
  */
28
- function generateClaudeSkills(srcDir, destDir) {
28
+ function generateClaudeSkills(srcDir, destDir, selectedSkills = null) {
29
29
  if (!fs.existsSync(srcDir)) return;
30
30
 
31
31
  fs.mkdirSync(destDir, { recursive: true });
32
32
  const skills = fs.readdirSync(srcDir);
33
+ const allowed = selectedSkills ? new Set(selectedSkills) : null;
33
34
 
34
35
  let count = 0;
35
36
  for (const skill of skills) {
37
+ if (allowed && !allowed.has(skill)) continue;
36
38
  const skillSrcDir = path.join(srcDir, skill);
37
39
  if (!fs.statSync(skillSrcDir).isDirectory()) continue;
38
40
  if (skill === '.DS_Store') continue;
@@ -44,14 +44,16 @@ function generateClineWorkflows(srcDir, destDir) {
44
44
  /**
45
45
  * Copies SKILL.md from each skill directory to the given directory.
46
46
  */
47
- function generateClineSkills(srcDir, destDir) {
47
+ function generateClineSkills(srcDir, destDir, selectedSkills = null) {
48
48
  if (!fs.existsSync(srcDir)) return;
49
49
 
50
50
  fs.mkdirSync(destDir, { recursive: true });
51
51
  const skills = fs.readdirSync(srcDir);
52
+ const allowed = selectedSkills ? new Set(selectedSkills) : null;
52
53
 
53
54
  let count = 0;
54
55
  for (const skill of skills) {
56
+ if (allowed && !allowed.has(skill)) continue;
55
57
  const skillDir = path.join(srcDir, skill);
56
58
  if (!fs.statSync(skillDir).isDirectory()) continue;
57
59
 
@@ -20,14 +20,17 @@ function generateCodexAgentsMd(sourcePath, destPath) {
20
20
  * Generates Codex skills directory structure.
21
21
  * Copies SKILL.md and parses it.
22
22
  */
23
- function generateCodexSkills(srcDir, destDir) {
23
+ function generateCodexSkills(srcDir, destDir, selectedSkills = null) {
24
24
  if (!fs.existsSync(srcDir)) return;
25
25
 
26
26
  fs.mkdirSync(destDir, { recursive: true });
27
27
  const skills = fs.readdirSync(srcDir);
28
+ const allowed = selectedSkills ? new Set(selectedSkills) : null;
28
29
 
29
30
  let count = 0;
30
31
  for (const skill of skills) {
32
+ if (allowed && !allowed.has(skill)) continue;
33
+
31
34
  const skillDir = path.join(srcDir, skill);
32
35
  if (!fs.statSync(skillDir).isDirectory()) continue;
33
36
 
@@ -59,11 +62,12 @@ function generateCodexSkills(srcDir, destDir) {
59
62
  /**
60
63
  * Generates Codex custom agents (.toml) for specific skills.
61
64
  */
62
- function generateCodexAgents(srcDir, destDir) {
65
+ function generateCodexAgents(srcDir, destDir, selectedSkills = null) {
63
66
  if (!fs.existsSync(srcDir)) return;
64
67
 
65
68
  fs.mkdirSync(destDir, { recursive: true });
66
69
  const skills = fs.readdirSync(srcDir);
70
+ const allowed = selectedSkills ? new Set(selectedSkills) : null;
67
71
 
68
72
  const SPECIALIST_SKILLS = [
69
73
  'ios-engineer',
@@ -77,6 +81,7 @@ function generateCodexAgents(srcDir, destDir) {
77
81
 
78
82
  let count = 0;
79
83
  for (const skill of skills) {
84
+ if (allowed && !allowed.has(skill)) continue;
80
85
  if (!SPECIALIST_SKILLS.includes(skill)) continue;
81
86
 
82
87
  const skillDir = path.join(srcDir, skill);
@@ -42,10 +42,24 @@ ads_intent:
42
42
  action: Suggest `/ads-audit` or `/adsExpert`
43
43
  ```
44
44
 
45
- ### 3. Skill Pack Check
45
+ ### 3. Lean Runtime + Skill Pack Check
46
46
  ```
47
- If user request involves iOS-specific Check if mobile-ios pack enabled
48
- If not enabled → Suggest: "awf enable-pack mobile-ios"
47
+ Default runtime is intentionally lean. Domain-heavy skills should be enabled on demand.
48
+
49
+ If user request involves iOS / Swift / Xcode / App Clip / SwiftUI
50
+ → Suggest: "awkit enable-pack mobile-ios"
51
+
52
+ If user request involves Android / Kotlin / Compose / AdMob / APK reverse engineering
53
+ → Suggest: "awkit enable-pack mobile-android"
54
+
55
+ If user request involves ASO / App Store marketing / ASA / competitor tracking / ratings
56
+ → Suggest: "awkit enable-pack marketing"
57
+
58
+ If user request involves sprite generation / LucyLab TTS / short-form video production
59
+ → Suggest: "awkit enable-pack creator-studio"
60
+
61
+ If user request involves NeuralMemory audits / intake / evolution workflows
62
+ → Suggest: "awkit enable-pack neural-memory"
49
63
  ```
50
64
 
51
65
  ### 4. Fallback
@@ -0,0 +1,37 @@
1
+ {
2
+ "version": 1,
3
+ "defaultProfile": "core",
4
+ "profiles": {
5
+ "core": {
6
+ "description": "Lean default runtime. Installs only cross-project workflow, orchestration, planning, debugging, verification, and repo-management skills.",
7
+ "skills": [
8
+ "auto-save",
9
+ "awf-adaptive-language",
10
+ "awf-context-help",
11
+ "awf-error-translator",
12
+ "awf-session-restore",
13
+ "awf-version-tracker",
14
+ "brainstorm-agent",
15
+ "code-review",
16
+ "codex-conductor",
17
+ "gemini-conductor",
18
+ "gitnexus-intelligence",
19
+ "module-spec-writer",
20
+ "nm-memory-sync",
21
+ "orchestrator",
22
+ "ship-to-code",
23
+ "single-flow-task-execution",
24
+ "skill-creator",
25
+ "spec-gate",
26
+ "symphony-enforcer",
27
+ "symphony-orchestrator",
28
+ "systematic-debugging",
29
+ "telegram-notify",
30
+ "trello-sync",
31
+ "verification-gate",
32
+ "visual-design-gate",
33
+ "writing-skills"
34
+ ]
35
+ }
36
+ }
37
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leejungkiin/awkit",
3
- "version": "1.4.3",
3
+ "version": "1.5.1",
4
4
  "description": "Antigravity Workflow Kit. Unified AI agent orchestration system.",
5
5
  "main": "bin/awk.js",
6
6
  "bin": {
@@ -37,7 +37,7 @@
37
37
  "CHANGELOG.md"
38
38
  ],
39
39
  "dependencies": {
40
- "@leejungkiin/awkit-symphony": "^0.1.0",
40
+ "@leejungkiin/awkit-symphony": "^1.5.0",
41
41
  "@leejungkiin/gitnexus": "file:../gitnexus/gitnexus"
42
42
  }
43
43
  }
@@ -0,0 +1,19 @@
1
+ # Creator Studio Skill Pack
2
+
3
+ > Optional media creation skills for sprites, LucyLab TTS, and short-form video production.
4
+
5
+ ## Skills
6
+
7
+ | Skill | Purpose |
8
+ |-------|---------|
9
+ | `ai-sprite-maker` | Generate 2D sprite sheets and game assets |
10
+ | `lucylab-tts` | Create voiceovers with LucyLab TTS |
11
+ | `short-maker` | Produce short-form video content workflows |
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ awkit enable-pack creator-studio
17
+ ```
18
+
19
+ Use this pack only when a project actually needs media-generation or video-production skills.
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "creator-studio",
3
+ "auto_install": false,
4
+ "description": "Optional media creation skills for sprite generation, short-form video workflows, and LucyLab TTS automation",
5
+ "skills": [
6
+ "ai-sprite-maker",
7
+ "lucylab-tts",
8
+ "short-maker"
9
+ ]
10
+ }
@@ -0,0 +1,64 @@
1
+ # Marketing & ASO Skill Pack
2
+
3
+ > 30 skills for App Store Optimization, user acquisition, competitive intelligence, and app growth.
4
+
5
+ ## Skills by Category
6
+
7
+ ### 🔍 ASO Core
8
+ | Skill | Purpose |
9
+ |-------|---------|
10
+ | `aso-audit` | Full ASO health audit |
11
+ | `keyword-research` | Discover & prioritize keywords |
12
+ | `metadata-optimization` | Optimize title, subtitle, keyword field |
13
+ | `android-aso` | Google Play Store optimization |
14
+ | `seasonal-aso` | Season/holiday keyword strategy |
15
+ | `localization` | International market expansion |
16
+
17
+ ### 🎨 Creative & Listing
18
+ | Skill | Purpose |
19
+ |-------|---------|
20
+ | `screenshot-optimization` | Design & optimize screenshots |
21
+ | `app-icon-optimization` | Icon design & A/B testing |
22
+ | `ab-test-store-listing` | A/B test listing elements (CPP) |
23
+ | `in-app-events` | App Store In-App Events |
24
+ | `app-clips` | App Clips for discovery |
25
+
26
+ ### 📊 Competitive Intelligence
27
+ | Skill | Purpose |
28
+ |-------|---------|
29
+ | `competitor-analysis` | One-time deep competitive analysis |
30
+ | `competitor-tracking` | Ongoing competitor monitoring |
31
+ | `market-movers` | Chart rank changes & breakouts |
32
+ | `market-pulse` | Comprehensive market overview |
33
+
34
+ ### 💰 Monetization & Retention
35
+ | Skill | Purpose |
36
+ |-------|---------|
37
+ | `monetization-strategy` | Pricing, paywalls, subscriptions |
38
+ | `subscription-lifecycle` | Trial → renewal → win-back |
39
+ | `retention-optimization` | Reduce churn, increase LTV |
40
+ | `onboarding-optimization` | First-run flow & activation |
41
+ | `rating-prompt-strategy` | Optimize review prompts |
42
+ | `review-management` | Analyze & respond to reviews |
43
+
44
+ ### 📈 Acquisition & Launch
45
+ | Skill | Purpose |
46
+ |-------|---------|
47
+ | `ua-campaign` | Paid user acquisition campaigns |
48
+ | `apple-search-ads` | Apple Search Ads optimization |
49
+ | `app-launch` | Launch strategy & checklist |
50
+ | `app-store-featured` | Get featured by Apple |
51
+ | `press-and-pr` | Press coverage & media |
52
+ | `app-marketing-context` | Marketing brief foundation |
53
+
54
+ ### 📊 Analytics
55
+ | Skill | Purpose |
56
+ |-------|---------|
57
+ | `app-analytics` | Setup & interpret tracking |
58
+ | `asc-metrics` | App Store Connect data analysis |
59
+ | `crash-analytics` | Crash rate monitoring & triage |
60
+
61
+ ## Usage
62
+
63
+ Skills live in `~/.gemini/antigravity/skills/` and auto-activate based on keywords.
64
+ This pack provides a catalog view — no installation needed.
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "marketing",
3
+ "auto_install": false,
4
+ "description": "App Store Optimization (ASO), user acquisition, competitive analysis, and app marketing skills",
5
+ "skills": [
6
+ "aso-audit",
7
+ "keyword-research",
8
+ "metadata-optimization",
9
+ "competitor-analysis",
10
+ "competitor-tracking",
11
+ "screenshot-optimization",
12
+ "app-icon-optimization",
13
+ "ab-test-store-listing",
14
+ "app-launch",
15
+ "app-marketing-context",
16
+ "app-store-featured",
17
+ "apple-search-ads",
18
+ "ua-campaign",
19
+ "in-app-events",
20
+ "seasonal-aso",
21
+ "localization",
22
+ "market-movers",
23
+ "market-pulse",
24
+ "press-and-pr",
25
+ "review-management",
26
+ "rating-prompt-strategy",
27
+ "monetization-strategy",
28
+ "retention-optimization",
29
+ "onboarding-optimization",
30
+ "subscription-lifecycle",
31
+ "app-analytics",
32
+ "asc-metrics",
33
+ "crash-analytics",
34
+ "android-aso",
35
+ "app-clips"
36
+ ]
37
+ }
@@ -0,0 +1,16 @@
1
+ # Mobile Android Skill Pack
2
+
3
+ > 3 skills for Android development, reverse engineering, and ad monetization.
4
+
5
+ ## Skills
6
+
7
+ | Skill | Purpose | Auto-trigger? |
8
+ |-------|---------|--------------|
9
+ | `smali-to-kotlin` | Reverse engineer APK → modern Kotlin + Compose | conditional |
10
+ | `android-re-analyzer` | Decompile APK/XAPK/JAR, trace call flows, extract APIs | conditional |
11
+ | `admob-roas` | AdMob ROAS tracking (ad_impression, tROAS events) | conditional |
12
+
13
+ ## Usage
14
+
15
+ Skills live in `~/.gemini/antigravity/skills/` and auto-activate based on keywords.
16
+ This pack provides a catalog view — no installation needed.
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "mobile-android",
3
+ "auto_install": false,
4
+ "description": "Android development skills: Kotlin, Jetpack Compose, reverse engineering, AdMob ROAS, and APK analysis",
5
+ "skills": [
6
+ "smali-to-kotlin",
7
+ "android-re-analyzer",
8
+ "admob-roas"
9
+ ]
10
+ }
@@ -0,0 +1,22 @@
1
+ # Mobile iOS Skill Pack
2
+
3
+ > 9 skills for iOS development, reverse engineering, and Xcode build optimization.
4
+
5
+ ## Skills
6
+
7
+ | Skill | Purpose | Auto-trigger? |
8
+ |-------|---------|--------------|
9
+ | `ios-engineer` | Core iOS development (Swift, SwiftUI, MVVM) | conditional |
10
+ | `swiftui-pro` | SwiftUI code review & best practices | conditional |
11
+ | `smali-to-swift` | Reverse engineer IPA → modern Swift app | conditional |
12
+ | `xcode-build-orchestrator` | Full A-Z build optimization flow | conditional |
13
+ | `xcode-build-benchmark` | Measure clean/incremental build times | conditional |
14
+ | `xcode-build-fixer` | Apply approved build optimization fixes | conditional |
15
+ | `xcode-compilation-analyzer` | Swift compile hotspots & type-checking | conditional |
16
+ | `xcode-project-analyzer` | Project config, settings, schemes audit | conditional |
17
+ | `spm-build-analysis` | SPM dependencies & module analysis | conditional |
18
+
19
+ ## Usage
20
+
21
+ Skills live in `~/.gemini/antigravity/skills/` and auto-activate based on keywords.
22
+ This pack provides a catalog view — no installation needed.
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "mobile-ios",
3
+ "auto_install": false,
4
+ "description": "iOS development skills: Xcode, Swift, SwiftUI, reverse engineering, build optimization, and SPM analysis",
5
+ "skills": [
6
+ "ios-engineer",
7
+ "smali-to-swift",
8
+ "swiftui-pro",
9
+ "xcode-build-benchmark",
10
+ "xcode-build-fixer",
11
+ "xcode-build-orchestrator",
12
+ "xcode-compilation-analyzer",
13
+ "xcode-project-analyzer",
14
+ "spm-build-analysis"
15
+ ]
16
+ }
@@ -1,7 +1,13 @@
1
1
  {
2
2
  "name": "neural-memory",
3
- "auto_install": true,
3
+ "auto_install": false,
4
4
  "description": "NeuralMemory-powered ambient brain sync with spreading activation recall",
5
+ "skills": [
6
+ "nm-memory-sync",
7
+ "nm-memory-intake",
8
+ "nm-memory-audit",
9
+ "nm-memory-evolution"
10
+ ],
5
11
  "requires": [
6
12
  {
7
13
  "type": "pip",
@@ -32,4 +38,4 @@
32
38
  "Claude Code": "Run: /plugin install neural-memory"
33
39
  }
34
40
  }
35
- }
41
+ }
@@ -2,6 +2,7 @@
2
2
  "name": "superpowers",
3
3
  "auto_install": false,
4
4
  "description": "Structured development workflows ported from Claude Code Superpowers: TDD, code review, planning, debugging, git worktree isolation, and two-stage review loops",
5
+ "skills": ["single-flow-task-execution", "writing-skills"],
5
6
  "origin": "https://github.com/skainguyen1412/antigravity-superpowers",
6
7
  "requires": [],
7
8
  "post_install": [],