ac-framework 1.9.3 → 1.9.4

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 (764) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +26 -0
  3. package/bin/postinstall.js +13 -1
  4. package/framework/mobile_development/.agent/skills/flutter-expert/SKILL.md +197 -0
  5. package/framework/mobile_development/.agent/skills/ios-developer/SKILL.md +217 -0
  6. package/framework/mobile_development/.agent/skills/mobile-android-design/SKILL.md +433 -0
  7. package/framework/mobile_development/.agent/skills/mobile-android-design/references/android-navigation.md +698 -0
  8. package/framework/mobile_development/.agent/skills/mobile-android-design/references/compose-components.md +796 -0
  9. package/framework/mobile_development/.agent/skills/mobile-android-design/references/material3-theming.md +604 -0
  10. package/framework/mobile_development/.agent/skills/mobile-design/SKILL.md +289 -0
  11. package/framework/mobile_development/.agent/skills/mobile-design/decision-trees.md +516 -0
  12. package/framework/mobile_development/.agent/skills/mobile-design/mobile-backend.md +491 -0
  13. package/framework/mobile_development/.agent/skills/mobile-design/mobile-color-system.md +420 -0
  14. package/framework/mobile_development/.agent/skills/mobile-design/mobile-debugging.md +122 -0
  15. package/framework/mobile_development/.agent/skills/mobile-design/mobile-design-thinking.md +357 -0
  16. package/framework/mobile_development/.agent/skills/mobile-design/mobile-navigation.md +458 -0
  17. package/framework/mobile_development/.agent/skills/mobile-design/mobile-performance.md +767 -0
  18. package/framework/mobile_development/.agent/skills/mobile-design/mobile-testing.md +356 -0
  19. package/framework/mobile_development/.agent/skills/mobile-design/mobile-typography.md +433 -0
  20. package/framework/mobile_development/.agent/skills/mobile-design/platform-android.md +666 -0
  21. package/framework/mobile_development/.agent/skills/mobile-design/platform-ios.md +561 -0
  22. package/framework/mobile_development/.agent/skills/mobile-design/scripts/mobile_audit.py +670 -0
  23. package/framework/mobile_development/.agent/skills/mobile-design/touch-psychology.md +537 -0
  24. package/framework/mobile_development/.agent/skills/mobile-ios-design/SKILL.md +259 -0
  25. package/framework/mobile_development/.agent/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  26. package/framework/mobile_development/.agent/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  27. package/framework/mobile_development/.agent/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  28. package/framework/mobile_development/.agent/skills/react-native-architecture/SKILL.md +666 -0
  29. package/framework/mobile_development/.agent/skills/react-native-design/SKILL.md +432 -0
  30. package/framework/mobile_development/.agent/skills/react-native-design/references/navigation-patterns.md +832 -0
  31. package/framework/mobile_development/.agent/skills/react-native-design/references/reanimated-patterns.md +775 -0
  32. package/framework/mobile_development/.agent/skills/react-native-design/references/styling-patterns.md +871 -0
  33. package/framework/mobile_development/.agent/skills/react-state-management/SKILL.md +430 -0
  34. package/framework/mobile_development/.amazonq/skills/flutter-expert/SKILL.md +197 -0
  35. package/framework/mobile_development/.amazonq/skills/ios-developer/SKILL.md +217 -0
  36. package/framework/mobile_development/.amazonq/skills/mobile-android-design/SKILL.md +433 -0
  37. package/framework/mobile_development/.amazonq/skills/mobile-android-design/references/android-navigation.md +698 -0
  38. package/framework/mobile_development/.amazonq/skills/mobile-android-design/references/compose-components.md +796 -0
  39. package/framework/mobile_development/.amazonq/skills/mobile-android-design/references/material3-theming.md +604 -0
  40. package/framework/mobile_development/.amazonq/skills/mobile-design/SKILL.md +289 -0
  41. package/framework/mobile_development/.amazonq/skills/mobile-design/decision-trees.md +516 -0
  42. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-backend.md +491 -0
  43. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-color-system.md +420 -0
  44. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-debugging.md +122 -0
  45. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-design-thinking.md +357 -0
  46. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-navigation.md +458 -0
  47. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-performance.md +767 -0
  48. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-testing.md +356 -0
  49. package/framework/mobile_development/.amazonq/skills/mobile-design/mobile-typography.md +433 -0
  50. package/framework/mobile_development/.amazonq/skills/mobile-design/platform-android.md +666 -0
  51. package/framework/mobile_development/.amazonq/skills/mobile-design/platform-ios.md +561 -0
  52. package/framework/mobile_development/.amazonq/skills/mobile-design/scripts/mobile_audit.py +670 -0
  53. package/framework/mobile_development/.amazonq/skills/mobile-design/touch-psychology.md +537 -0
  54. package/framework/mobile_development/.amazonq/skills/mobile-ios-design/SKILL.md +259 -0
  55. package/framework/mobile_development/.amazonq/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  56. package/framework/mobile_development/.amazonq/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  57. package/framework/mobile_development/.amazonq/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  58. package/framework/mobile_development/.amazonq/skills/react-native-architecture/SKILL.md +666 -0
  59. package/framework/mobile_development/.amazonq/skills/react-native-design/SKILL.md +432 -0
  60. package/framework/mobile_development/.amazonq/skills/react-native-design/references/navigation-patterns.md +832 -0
  61. package/framework/mobile_development/.amazonq/skills/react-native-design/references/reanimated-patterns.md +775 -0
  62. package/framework/mobile_development/.amazonq/skills/react-native-design/references/styling-patterns.md +871 -0
  63. package/framework/mobile_development/.amazonq/skills/react-state-management/SKILL.md +430 -0
  64. package/framework/mobile_development/.antigravity/skills/flutter-expert/SKILL.md +197 -0
  65. package/framework/mobile_development/.antigravity/skills/ios-developer/SKILL.md +217 -0
  66. package/framework/mobile_development/.antigravity/skills/mobile-android-design/SKILL.md +433 -0
  67. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/android-navigation.md +698 -0
  68. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/compose-components.md +796 -0
  69. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/material3-theming.md +604 -0
  70. package/framework/mobile_development/.antigravity/skills/mobile-design/SKILL.md +289 -0
  71. package/framework/mobile_development/.antigravity/skills/mobile-design/decision-trees.md +516 -0
  72. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-backend.md +491 -0
  73. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-color-system.md +420 -0
  74. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-debugging.md +122 -0
  75. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-design-thinking.md +357 -0
  76. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-navigation.md +458 -0
  77. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-performance.md +767 -0
  78. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-testing.md +356 -0
  79. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-typography.md +433 -0
  80. package/framework/mobile_development/.antigravity/skills/mobile-design/platform-android.md +666 -0
  81. package/framework/mobile_development/.antigravity/skills/mobile-design/platform-ios.md +561 -0
  82. package/framework/mobile_development/.antigravity/skills/mobile-design/scripts/mobile_audit.py +670 -0
  83. package/framework/mobile_development/.antigravity/skills/mobile-design/touch-psychology.md +537 -0
  84. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/SKILL.md +259 -0
  85. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  86. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  87. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  88. package/framework/mobile_development/.antigravity/skills/react-native-architecture/SKILL.md +666 -0
  89. package/framework/mobile_development/.antigravity/skills/react-native-design/SKILL.md +432 -0
  90. package/framework/mobile_development/.antigravity/skills/react-native-design/references/navigation-patterns.md +832 -0
  91. package/framework/mobile_development/.antigravity/skills/react-native-design/references/reanimated-patterns.md +775 -0
  92. package/framework/mobile_development/.antigravity/skills/react-native-design/references/styling-patterns.md +871 -0
  93. package/framework/mobile_development/.antigravity/skills/react-state-management/SKILL.md +430 -0
  94. package/framework/mobile_development/.augment/skills/flutter-expert/SKILL.md +197 -0
  95. package/framework/mobile_development/.augment/skills/ios-developer/SKILL.md +217 -0
  96. package/framework/mobile_development/.augment/skills/mobile-android-design/SKILL.md +433 -0
  97. package/framework/mobile_development/.augment/skills/mobile-android-design/references/android-navigation.md +698 -0
  98. package/framework/mobile_development/.augment/skills/mobile-android-design/references/compose-components.md +796 -0
  99. package/framework/mobile_development/.augment/skills/mobile-android-design/references/material3-theming.md +604 -0
  100. package/framework/mobile_development/.augment/skills/mobile-design/SKILL.md +289 -0
  101. package/framework/mobile_development/.augment/skills/mobile-design/decision-trees.md +516 -0
  102. package/framework/mobile_development/.augment/skills/mobile-design/mobile-backend.md +491 -0
  103. package/framework/mobile_development/.augment/skills/mobile-design/mobile-color-system.md +420 -0
  104. package/framework/mobile_development/.augment/skills/mobile-design/mobile-debugging.md +122 -0
  105. package/framework/mobile_development/.augment/skills/mobile-design/mobile-design-thinking.md +357 -0
  106. package/framework/mobile_development/.augment/skills/mobile-design/mobile-navigation.md +458 -0
  107. package/framework/mobile_development/.augment/skills/mobile-design/mobile-performance.md +767 -0
  108. package/framework/mobile_development/.augment/skills/mobile-design/mobile-testing.md +356 -0
  109. package/framework/mobile_development/.augment/skills/mobile-design/mobile-typography.md +433 -0
  110. package/framework/mobile_development/.augment/skills/mobile-design/platform-android.md +666 -0
  111. package/framework/mobile_development/.augment/skills/mobile-design/platform-ios.md +561 -0
  112. package/framework/mobile_development/.augment/skills/mobile-design/scripts/mobile_audit.py +670 -0
  113. package/framework/mobile_development/.augment/skills/mobile-design/touch-psychology.md +537 -0
  114. package/framework/mobile_development/.augment/skills/mobile-ios-design/SKILL.md +259 -0
  115. package/framework/mobile_development/.augment/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  116. package/framework/mobile_development/.augment/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  117. package/framework/mobile_development/.augment/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  118. package/framework/mobile_development/.augment/skills/react-native-architecture/SKILL.md +666 -0
  119. package/framework/mobile_development/.augment/skills/react-native-design/SKILL.md +432 -0
  120. package/framework/mobile_development/.augment/skills/react-native-design/references/navigation-patterns.md +832 -0
  121. package/framework/mobile_development/.augment/skills/react-native-design/references/reanimated-patterns.md +775 -0
  122. package/framework/mobile_development/.augment/skills/react-native-design/references/styling-patterns.md +871 -0
  123. package/framework/mobile_development/.augment/skills/react-state-management/SKILL.md +430 -0
  124. package/framework/mobile_development/.claude/skills/flutter-expert/SKILL.md +197 -0
  125. package/framework/mobile_development/.claude/skills/ios-developer/SKILL.md +217 -0
  126. package/framework/mobile_development/.claude/skills/mobile-android-design/SKILL.md +433 -0
  127. package/framework/mobile_development/.claude/skills/mobile-android-design/references/android-navigation.md +698 -0
  128. package/framework/mobile_development/.claude/skills/mobile-android-design/references/compose-components.md +796 -0
  129. package/framework/mobile_development/.claude/skills/mobile-android-design/references/material3-theming.md +604 -0
  130. package/framework/mobile_development/.claude/skills/mobile-design/SKILL.md +289 -0
  131. package/framework/mobile_development/.claude/skills/mobile-design/decision-trees.md +516 -0
  132. package/framework/mobile_development/.claude/skills/mobile-design/mobile-backend.md +491 -0
  133. package/framework/mobile_development/.claude/skills/mobile-design/mobile-color-system.md +420 -0
  134. package/framework/mobile_development/.claude/skills/mobile-design/mobile-debugging.md +122 -0
  135. package/framework/mobile_development/.claude/skills/mobile-design/mobile-design-thinking.md +357 -0
  136. package/framework/mobile_development/.claude/skills/mobile-design/mobile-navigation.md +458 -0
  137. package/framework/mobile_development/.claude/skills/mobile-design/mobile-performance.md +767 -0
  138. package/framework/mobile_development/.claude/skills/mobile-design/mobile-testing.md +356 -0
  139. package/framework/mobile_development/.claude/skills/mobile-design/mobile-typography.md +433 -0
  140. package/framework/mobile_development/.claude/skills/mobile-design/platform-android.md +666 -0
  141. package/framework/mobile_development/.claude/skills/mobile-design/platform-ios.md +561 -0
  142. package/framework/mobile_development/.claude/skills/mobile-design/scripts/mobile_audit.py +670 -0
  143. package/framework/mobile_development/.claude/skills/mobile-design/touch-psychology.md +537 -0
  144. package/framework/mobile_development/.claude/skills/mobile-ios-design/SKILL.md +259 -0
  145. package/framework/mobile_development/.claude/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  146. package/framework/mobile_development/.claude/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  147. package/framework/mobile_development/.claude/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  148. package/framework/mobile_development/.claude/skills/react-native-architecture/SKILL.md +666 -0
  149. package/framework/mobile_development/.claude/skills/react-native-design/SKILL.md +432 -0
  150. package/framework/mobile_development/.claude/skills/react-native-design/references/navigation-patterns.md +832 -0
  151. package/framework/mobile_development/.claude/skills/react-native-design/references/reanimated-patterns.md +775 -0
  152. package/framework/mobile_development/.claude/skills/react-native-design/references/styling-patterns.md +871 -0
  153. package/framework/mobile_development/.claude/skills/react-state-management/SKILL.md +430 -0
  154. package/framework/mobile_development/.cline/skills/flutter-expert/SKILL.md +197 -0
  155. package/framework/mobile_development/.cline/skills/ios-developer/SKILL.md +217 -0
  156. package/framework/mobile_development/.cline/skills/mobile-android-design/SKILL.md +433 -0
  157. package/framework/mobile_development/.cline/skills/mobile-android-design/references/android-navigation.md +698 -0
  158. package/framework/mobile_development/.cline/skills/mobile-android-design/references/compose-components.md +796 -0
  159. package/framework/mobile_development/.cline/skills/mobile-android-design/references/material3-theming.md +604 -0
  160. package/framework/mobile_development/.cline/skills/mobile-design/SKILL.md +289 -0
  161. package/framework/mobile_development/.cline/skills/mobile-design/decision-trees.md +516 -0
  162. package/framework/mobile_development/.cline/skills/mobile-design/mobile-backend.md +491 -0
  163. package/framework/mobile_development/.cline/skills/mobile-design/mobile-color-system.md +420 -0
  164. package/framework/mobile_development/.cline/skills/mobile-design/mobile-debugging.md +122 -0
  165. package/framework/mobile_development/.cline/skills/mobile-design/mobile-design-thinking.md +357 -0
  166. package/framework/mobile_development/.cline/skills/mobile-design/mobile-navigation.md +458 -0
  167. package/framework/mobile_development/.cline/skills/mobile-design/mobile-performance.md +767 -0
  168. package/framework/mobile_development/.cline/skills/mobile-design/mobile-testing.md +356 -0
  169. package/framework/mobile_development/.cline/skills/mobile-design/mobile-typography.md +433 -0
  170. package/framework/mobile_development/.cline/skills/mobile-design/platform-android.md +666 -0
  171. package/framework/mobile_development/.cline/skills/mobile-design/platform-ios.md +561 -0
  172. package/framework/mobile_development/.cline/skills/mobile-design/scripts/mobile_audit.py +670 -0
  173. package/framework/mobile_development/.cline/skills/mobile-design/touch-psychology.md +537 -0
  174. package/framework/mobile_development/.cline/skills/mobile-ios-design/SKILL.md +259 -0
  175. package/framework/mobile_development/.cline/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  176. package/framework/mobile_development/.cline/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  177. package/framework/mobile_development/.cline/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  178. package/framework/mobile_development/.cline/skills/react-native-architecture/SKILL.md +666 -0
  179. package/framework/mobile_development/.cline/skills/react-native-design/SKILL.md +432 -0
  180. package/framework/mobile_development/.cline/skills/react-native-design/references/navigation-patterns.md +832 -0
  181. package/framework/mobile_development/.cline/skills/react-native-design/references/reanimated-patterns.md +775 -0
  182. package/framework/mobile_development/.cline/skills/react-native-design/references/styling-patterns.md +871 -0
  183. package/framework/mobile_development/.cline/skills/react-state-management/SKILL.md +430 -0
  184. package/framework/mobile_development/.clinerules/skills/flutter-expert/SKILL.md +197 -0
  185. package/framework/mobile_development/.clinerules/skills/ios-developer/SKILL.md +217 -0
  186. package/framework/mobile_development/.clinerules/skills/mobile-android-design/SKILL.md +433 -0
  187. package/framework/mobile_development/.clinerules/skills/mobile-android-design/references/android-navigation.md +698 -0
  188. package/framework/mobile_development/.clinerules/skills/mobile-android-design/references/compose-components.md +796 -0
  189. package/framework/mobile_development/.clinerules/skills/mobile-android-design/references/material3-theming.md +604 -0
  190. package/framework/mobile_development/.clinerules/skills/mobile-design/SKILL.md +289 -0
  191. package/framework/mobile_development/.clinerules/skills/mobile-design/decision-trees.md +516 -0
  192. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-backend.md +491 -0
  193. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-color-system.md +420 -0
  194. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-debugging.md +122 -0
  195. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-design-thinking.md +357 -0
  196. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-navigation.md +458 -0
  197. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-performance.md +767 -0
  198. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-testing.md +356 -0
  199. package/framework/mobile_development/.clinerules/skills/mobile-design/mobile-typography.md +433 -0
  200. package/framework/mobile_development/.clinerules/skills/mobile-design/platform-android.md +666 -0
  201. package/framework/mobile_development/.clinerules/skills/mobile-design/platform-ios.md +561 -0
  202. package/framework/mobile_development/.clinerules/skills/mobile-design/scripts/mobile_audit.py +670 -0
  203. package/framework/mobile_development/.clinerules/skills/mobile-design/touch-psychology.md +537 -0
  204. package/framework/mobile_development/.clinerules/skills/mobile-ios-design/SKILL.md +259 -0
  205. package/framework/mobile_development/.clinerules/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  206. package/framework/mobile_development/.clinerules/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  207. package/framework/mobile_development/.clinerules/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  208. package/framework/mobile_development/.clinerules/skills/react-native-architecture/SKILL.md +666 -0
  209. package/framework/mobile_development/.clinerules/skills/react-native-design/SKILL.md +432 -0
  210. package/framework/mobile_development/.clinerules/skills/react-native-design/references/navigation-patterns.md +832 -0
  211. package/framework/mobile_development/.clinerules/skills/react-native-design/references/reanimated-patterns.md +775 -0
  212. package/framework/mobile_development/.clinerules/skills/react-native-design/references/styling-patterns.md +871 -0
  213. package/framework/mobile_development/.clinerules/skills/react-state-management/SKILL.md +430 -0
  214. package/framework/mobile_development/.codebuddy/skills/flutter-expert/SKILL.md +197 -0
  215. package/framework/mobile_development/.codebuddy/skills/ios-developer/SKILL.md +217 -0
  216. package/framework/mobile_development/.codebuddy/skills/mobile-android-design/SKILL.md +433 -0
  217. package/framework/mobile_development/.codebuddy/skills/mobile-android-design/references/android-navigation.md +698 -0
  218. package/framework/mobile_development/.codebuddy/skills/mobile-android-design/references/compose-components.md +796 -0
  219. package/framework/mobile_development/.codebuddy/skills/mobile-android-design/references/material3-theming.md +604 -0
  220. package/framework/mobile_development/.codebuddy/skills/mobile-design/SKILL.md +289 -0
  221. package/framework/mobile_development/.codebuddy/skills/mobile-design/decision-trees.md +516 -0
  222. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-backend.md +491 -0
  223. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-color-system.md +420 -0
  224. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-debugging.md +122 -0
  225. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-design-thinking.md +357 -0
  226. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-navigation.md +458 -0
  227. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-performance.md +767 -0
  228. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-testing.md +356 -0
  229. package/framework/mobile_development/.codebuddy/skills/mobile-design/mobile-typography.md +433 -0
  230. package/framework/mobile_development/.codebuddy/skills/mobile-design/platform-android.md +666 -0
  231. package/framework/mobile_development/.codebuddy/skills/mobile-design/platform-ios.md +561 -0
  232. package/framework/mobile_development/.codebuddy/skills/mobile-design/scripts/mobile_audit.py +670 -0
  233. package/framework/mobile_development/.codebuddy/skills/mobile-design/touch-psychology.md +537 -0
  234. package/framework/mobile_development/.codebuddy/skills/mobile-ios-design/SKILL.md +259 -0
  235. package/framework/mobile_development/.codebuddy/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  236. package/framework/mobile_development/.codebuddy/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  237. package/framework/mobile_development/.codebuddy/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  238. package/framework/mobile_development/.codebuddy/skills/react-native-architecture/SKILL.md +666 -0
  239. package/framework/mobile_development/.codebuddy/skills/react-native-design/SKILL.md +432 -0
  240. package/framework/mobile_development/.codebuddy/skills/react-native-design/references/navigation-patterns.md +832 -0
  241. package/framework/mobile_development/.codebuddy/skills/react-native-design/references/reanimated-patterns.md +775 -0
  242. package/framework/mobile_development/.codebuddy/skills/react-native-design/references/styling-patterns.md +871 -0
  243. package/framework/mobile_development/.codebuddy/skills/react-state-management/SKILL.md +430 -0
  244. package/framework/mobile_development/.codex/skills/flutter-expert/SKILL.md +197 -0
  245. package/framework/mobile_development/.codex/skills/ios-developer/SKILL.md +217 -0
  246. package/framework/mobile_development/.codex/skills/mobile-android-design/SKILL.md +433 -0
  247. package/framework/mobile_development/.codex/skills/mobile-android-design/references/android-navigation.md +698 -0
  248. package/framework/mobile_development/.codex/skills/mobile-android-design/references/compose-components.md +796 -0
  249. package/framework/mobile_development/.codex/skills/mobile-android-design/references/material3-theming.md +604 -0
  250. package/framework/mobile_development/.codex/skills/mobile-design/SKILL.md +289 -0
  251. package/framework/mobile_development/.codex/skills/mobile-design/decision-trees.md +516 -0
  252. package/framework/mobile_development/.codex/skills/mobile-design/mobile-backend.md +491 -0
  253. package/framework/mobile_development/.codex/skills/mobile-design/mobile-color-system.md +420 -0
  254. package/framework/mobile_development/.codex/skills/mobile-design/mobile-debugging.md +122 -0
  255. package/framework/mobile_development/.codex/skills/mobile-design/mobile-design-thinking.md +357 -0
  256. package/framework/mobile_development/.codex/skills/mobile-design/mobile-navigation.md +458 -0
  257. package/framework/mobile_development/.codex/skills/mobile-design/mobile-performance.md +767 -0
  258. package/framework/mobile_development/.codex/skills/mobile-design/mobile-testing.md +356 -0
  259. package/framework/mobile_development/.codex/skills/mobile-design/mobile-typography.md +433 -0
  260. package/framework/mobile_development/.codex/skills/mobile-design/platform-android.md +666 -0
  261. package/framework/mobile_development/.codex/skills/mobile-design/platform-ios.md +561 -0
  262. package/framework/mobile_development/.codex/skills/mobile-design/scripts/mobile_audit.py +670 -0
  263. package/framework/mobile_development/.codex/skills/mobile-design/touch-psychology.md +537 -0
  264. package/framework/mobile_development/.codex/skills/mobile-ios-design/SKILL.md +259 -0
  265. package/framework/mobile_development/.codex/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  266. package/framework/mobile_development/.codex/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  267. package/framework/mobile_development/.codex/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  268. package/framework/mobile_development/.codex/skills/react-native-architecture/SKILL.md +666 -0
  269. package/framework/mobile_development/.codex/skills/react-native-design/SKILL.md +432 -0
  270. package/framework/mobile_development/.codex/skills/react-native-design/references/navigation-patterns.md +832 -0
  271. package/framework/mobile_development/.codex/skills/react-native-design/references/reanimated-patterns.md +775 -0
  272. package/framework/mobile_development/.codex/skills/react-native-design/references/styling-patterns.md +871 -0
  273. package/framework/mobile_development/.codex/skills/react-state-management/SKILL.md +430 -0
  274. package/framework/mobile_development/.continue/skills/flutter-expert/SKILL.md +197 -0
  275. package/framework/mobile_development/.continue/skills/ios-developer/SKILL.md +217 -0
  276. package/framework/mobile_development/.continue/skills/mobile-android-design/SKILL.md +433 -0
  277. package/framework/mobile_development/.continue/skills/mobile-android-design/references/android-navigation.md +698 -0
  278. package/framework/mobile_development/.continue/skills/mobile-android-design/references/compose-components.md +796 -0
  279. package/framework/mobile_development/.continue/skills/mobile-android-design/references/material3-theming.md +604 -0
  280. package/framework/mobile_development/.continue/skills/mobile-design/SKILL.md +289 -0
  281. package/framework/mobile_development/.continue/skills/mobile-design/decision-trees.md +516 -0
  282. package/framework/mobile_development/.continue/skills/mobile-design/mobile-backend.md +491 -0
  283. package/framework/mobile_development/.continue/skills/mobile-design/mobile-color-system.md +420 -0
  284. package/framework/mobile_development/.continue/skills/mobile-design/mobile-debugging.md +122 -0
  285. package/framework/mobile_development/.continue/skills/mobile-design/mobile-design-thinking.md +357 -0
  286. package/framework/mobile_development/.continue/skills/mobile-design/mobile-navigation.md +458 -0
  287. package/framework/mobile_development/.continue/skills/mobile-design/mobile-performance.md +767 -0
  288. package/framework/mobile_development/.continue/skills/mobile-design/mobile-testing.md +356 -0
  289. package/framework/mobile_development/.continue/skills/mobile-design/mobile-typography.md +433 -0
  290. package/framework/mobile_development/.continue/skills/mobile-design/platform-android.md +666 -0
  291. package/framework/mobile_development/.continue/skills/mobile-design/platform-ios.md +561 -0
  292. package/framework/mobile_development/.continue/skills/mobile-design/scripts/mobile_audit.py +670 -0
  293. package/framework/mobile_development/.continue/skills/mobile-design/touch-psychology.md +537 -0
  294. package/framework/mobile_development/.continue/skills/mobile-ios-design/SKILL.md +259 -0
  295. package/framework/mobile_development/.continue/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  296. package/framework/mobile_development/.continue/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  297. package/framework/mobile_development/.continue/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  298. package/framework/mobile_development/.continue/skills/react-native-architecture/SKILL.md +666 -0
  299. package/framework/mobile_development/.continue/skills/react-native-design/SKILL.md +432 -0
  300. package/framework/mobile_development/.continue/skills/react-native-design/references/navigation-patterns.md +832 -0
  301. package/framework/mobile_development/.continue/skills/react-native-design/references/reanimated-patterns.md +775 -0
  302. package/framework/mobile_development/.continue/skills/react-native-design/references/styling-patterns.md +871 -0
  303. package/framework/mobile_development/.continue/skills/react-state-management/SKILL.md +430 -0
  304. package/framework/mobile_development/.cospec/skills/flutter-expert/SKILL.md +197 -0
  305. package/framework/mobile_development/.cospec/skills/ios-developer/SKILL.md +217 -0
  306. package/framework/mobile_development/.cospec/skills/mobile-android-design/SKILL.md +433 -0
  307. package/framework/mobile_development/.cospec/skills/mobile-android-design/references/android-navigation.md +698 -0
  308. package/framework/mobile_development/.cospec/skills/mobile-android-design/references/compose-components.md +796 -0
  309. package/framework/mobile_development/.cospec/skills/mobile-android-design/references/material3-theming.md +604 -0
  310. package/framework/mobile_development/.cospec/skills/mobile-design/SKILL.md +289 -0
  311. package/framework/mobile_development/.cospec/skills/mobile-design/decision-trees.md +516 -0
  312. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-backend.md +491 -0
  313. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-color-system.md +420 -0
  314. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-debugging.md +122 -0
  315. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-design-thinking.md +357 -0
  316. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-navigation.md +458 -0
  317. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-performance.md +767 -0
  318. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-testing.md +356 -0
  319. package/framework/mobile_development/.cospec/skills/mobile-design/mobile-typography.md +433 -0
  320. package/framework/mobile_development/.cospec/skills/mobile-design/platform-android.md +666 -0
  321. package/framework/mobile_development/.cospec/skills/mobile-design/platform-ios.md +561 -0
  322. package/framework/mobile_development/.cospec/skills/mobile-design/scripts/mobile_audit.py +670 -0
  323. package/framework/mobile_development/.cospec/skills/mobile-design/touch-psychology.md +537 -0
  324. package/framework/mobile_development/.cospec/skills/mobile-ios-design/SKILL.md +259 -0
  325. package/framework/mobile_development/.cospec/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  326. package/framework/mobile_development/.cospec/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  327. package/framework/mobile_development/.cospec/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  328. package/framework/mobile_development/.cospec/skills/react-native-architecture/SKILL.md +666 -0
  329. package/framework/mobile_development/.cospec/skills/react-native-design/SKILL.md +432 -0
  330. package/framework/mobile_development/.cospec/skills/react-native-design/references/navigation-patterns.md +832 -0
  331. package/framework/mobile_development/.cospec/skills/react-native-design/references/reanimated-patterns.md +775 -0
  332. package/framework/mobile_development/.cospec/skills/react-native-design/references/styling-patterns.md +871 -0
  333. package/framework/mobile_development/.cospec/skills/react-state-management/SKILL.md +430 -0
  334. package/framework/mobile_development/.crush/skills/flutter-expert/SKILL.md +197 -0
  335. package/framework/mobile_development/.crush/skills/ios-developer/SKILL.md +217 -0
  336. package/framework/mobile_development/.crush/skills/mobile-android-design/SKILL.md +433 -0
  337. package/framework/mobile_development/.crush/skills/mobile-android-design/references/android-navigation.md +698 -0
  338. package/framework/mobile_development/.crush/skills/mobile-android-design/references/compose-components.md +796 -0
  339. package/framework/mobile_development/.crush/skills/mobile-android-design/references/material3-theming.md +604 -0
  340. package/framework/mobile_development/.crush/skills/mobile-design/SKILL.md +289 -0
  341. package/framework/mobile_development/.crush/skills/mobile-design/decision-trees.md +516 -0
  342. package/framework/mobile_development/.crush/skills/mobile-design/mobile-backend.md +491 -0
  343. package/framework/mobile_development/.crush/skills/mobile-design/mobile-color-system.md +420 -0
  344. package/framework/mobile_development/.crush/skills/mobile-design/mobile-debugging.md +122 -0
  345. package/framework/mobile_development/.crush/skills/mobile-design/mobile-design-thinking.md +357 -0
  346. package/framework/mobile_development/.crush/skills/mobile-design/mobile-navigation.md +458 -0
  347. package/framework/mobile_development/.crush/skills/mobile-design/mobile-performance.md +767 -0
  348. package/framework/mobile_development/.crush/skills/mobile-design/mobile-testing.md +356 -0
  349. package/framework/mobile_development/.crush/skills/mobile-design/mobile-typography.md +433 -0
  350. package/framework/mobile_development/.crush/skills/mobile-design/platform-android.md +666 -0
  351. package/framework/mobile_development/.crush/skills/mobile-design/platform-ios.md +561 -0
  352. package/framework/mobile_development/.crush/skills/mobile-design/scripts/mobile_audit.py +670 -0
  353. package/framework/mobile_development/.crush/skills/mobile-design/touch-psychology.md +537 -0
  354. package/framework/mobile_development/.crush/skills/mobile-ios-design/SKILL.md +259 -0
  355. package/framework/mobile_development/.crush/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  356. package/framework/mobile_development/.crush/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  357. package/framework/mobile_development/.crush/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  358. package/framework/mobile_development/.crush/skills/react-native-architecture/SKILL.md +666 -0
  359. package/framework/mobile_development/.crush/skills/react-native-design/SKILL.md +432 -0
  360. package/framework/mobile_development/.crush/skills/react-native-design/references/navigation-patterns.md +832 -0
  361. package/framework/mobile_development/.crush/skills/react-native-design/references/reanimated-patterns.md +775 -0
  362. package/framework/mobile_development/.crush/skills/react-native-design/references/styling-patterns.md +871 -0
  363. package/framework/mobile_development/.crush/skills/react-state-management/SKILL.md +430 -0
  364. package/framework/mobile_development/.cursor/skills/flutter-expert/SKILL.md +197 -0
  365. package/framework/mobile_development/.cursor/skills/ios-developer/SKILL.md +217 -0
  366. package/framework/mobile_development/.cursor/skills/mobile-android-design/SKILL.md +433 -0
  367. package/framework/mobile_development/.cursor/skills/mobile-android-design/references/android-navigation.md +698 -0
  368. package/framework/mobile_development/.cursor/skills/mobile-android-design/references/compose-components.md +796 -0
  369. package/framework/mobile_development/.cursor/skills/mobile-android-design/references/material3-theming.md +604 -0
  370. package/framework/mobile_development/.cursor/skills/mobile-design/SKILL.md +289 -0
  371. package/framework/mobile_development/.cursor/skills/mobile-design/decision-trees.md +516 -0
  372. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-backend.md +491 -0
  373. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-color-system.md +420 -0
  374. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-debugging.md +122 -0
  375. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-design-thinking.md +357 -0
  376. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-navigation.md +458 -0
  377. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-performance.md +767 -0
  378. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-testing.md +356 -0
  379. package/framework/mobile_development/.cursor/skills/mobile-design/mobile-typography.md +433 -0
  380. package/framework/mobile_development/.cursor/skills/mobile-design/platform-android.md +666 -0
  381. package/framework/mobile_development/.cursor/skills/mobile-design/platform-ios.md +561 -0
  382. package/framework/mobile_development/.cursor/skills/mobile-design/scripts/mobile_audit.py +670 -0
  383. package/framework/mobile_development/.cursor/skills/mobile-design/touch-psychology.md +537 -0
  384. package/framework/mobile_development/.cursor/skills/mobile-ios-design/SKILL.md +259 -0
  385. package/framework/mobile_development/.cursor/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  386. package/framework/mobile_development/.cursor/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  387. package/framework/mobile_development/.cursor/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  388. package/framework/mobile_development/.cursor/skills/react-native-architecture/SKILL.md +666 -0
  389. package/framework/mobile_development/.cursor/skills/react-native-design/SKILL.md +432 -0
  390. package/framework/mobile_development/.cursor/skills/react-native-design/references/navigation-patterns.md +832 -0
  391. package/framework/mobile_development/.cursor/skills/react-native-design/references/reanimated-patterns.md +775 -0
  392. package/framework/mobile_development/.cursor/skills/react-native-design/references/styling-patterns.md +871 -0
  393. package/framework/mobile_development/.cursor/skills/react-state-management/SKILL.md +430 -0
  394. package/framework/mobile_development/.factory/skills/flutter-expert/SKILL.md +197 -0
  395. package/framework/mobile_development/.factory/skills/ios-developer/SKILL.md +217 -0
  396. package/framework/mobile_development/.factory/skills/mobile-android-design/SKILL.md +433 -0
  397. package/framework/mobile_development/.factory/skills/mobile-android-design/references/android-navigation.md +698 -0
  398. package/framework/mobile_development/.factory/skills/mobile-android-design/references/compose-components.md +796 -0
  399. package/framework/mobile_development/.factory/skills/mobile-android-design/references/material3-theming.md +604 -0
  400. package/framework/mobile_development/.factory/skills/mobile-design/SKILL.md +289 -0
  401. package/framework/mobile_development/.factory/skills/mobile-design/decision-trees.md +516 -0
  402. package/framework/mobile_development/.factory/skills/mobile-design/mobile-backend.md +491 -0
  403. package/framework/mobile_development/.factory/skills/mobile-design/mobile-color-system.md +420 -0
  404. package/framework/mobile_development/.factory/skills/mobile-design/mobile-debugging.md +122 -0
  405. package/framework/mobile_development/.factory/skills/mobile-design/mobile-design-thinking.md +357 -0
  406. package/framework/mobile_development/.factory/skills/mobile-design/mobile-navigation.md +458 -0
  407. package/framework/mobile_development/.factory/skills/mobile-design/mobile-performance.md +767 -0
  408. package/framework/mobile_development/.factory/skills/mobile-design/mobile-testing.md +356 -0
  409. package/framework/mobile_development/.factory/skills/mobile-design/mobile-typography.md +433 -0
  410. package/framework/mobile_development/.factory/skills/mobile-design/platform-android.md +666 -0
  411. package/framework/mobile_development/.factory/skills/mobile-design/platform-ios.md +561 -0
  412. package/framework/mobile_development/.factory/skills/mobile-design/scripts/mobile_audit.py +670 -0
  413. package/framework/mobile_development/.factory/skills/mobile-design/touch-psychology.md +537 -0
  414. package/framework/mobile_development/.factory/skills/mobile-ios-design/SKILL.md +259 -0
  415. package/framework/mobile_development/.factory/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  416. package/framework/mobile_development/.factory/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  417. package/framework/mobile_development/.factory/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  418. package/framework/mobile_development/.factory/skills/react-native-architecture/SKILL.md +666 -0
  419. package/framework/mobile_development/.factory/skills/react-native-design/SKILL.md +432 -0
  420. package/framework/mobile_development/.factory/skills/react-native-design/references/navigation-patterns.md +832 -0
  421. package/framework/mobile_development/.factory/skills/react-native-design/references/reanimated-patterns.md +775 -0
  422. package/framework/mobile_development/.factory/skills/react-native-design/references/styling-patterns.md +871 -0
  423. package/framework/mobile_development/.factory/skills/react-state-management/SKILL.md +430 -0
  424. package/framework/mobile_development/.gemini/skills/flutter-expert/SKILL.md +197 -0
  425. package/framework/mobile_development/.gemini/skills/ios-developer/SKILL.md +217 -0
  426. package/framework/mobile_development/.gemini/skills/mobile-android-design/SKILL.md +433 -0
  427. package/framework/mobile_development/.gemini/skills/mobile-android-design/references/android-navigation.md +698 -0
  428. package/framework/mobile_development/.gemini/skills/mobile-android-design/references/compose-components.md +796 -0
  429. package/framework/mobile_development/.gemini/skills/mobile-android-design/references/material3-theming.md +604 -0
  430. package/framework/mobile_development/.gemini/skills/mobile-design/SKILL.md +289 -0
  431. package/framework/mobile_development/.gemini/skills/mobile-design/decision-trees.md +516 -0
  432. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-backend.md +491 -0
  433. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-color-system.md +420 -0
  434. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-debugging.md +122 -0
  435. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-design-thinking.md +357 -0
  436. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-navigation.md +458 -0
  437. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-performance.md +767 -0
  438. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-testing.md +356 -0
  439. package/framework/mobile_development/.gemini/skills/mobile-design/mobile-typography.md +433 -0
  440. package/framework/mobile_development/.gemini/skills/mobile-design/platform-android.md +666 -0
  441. package/framework/mobile_development/.gemini/skills/mobile-design/platform-ios.md +561 -0
  442. package/framework/mobile_development/.gemini/skills/mobile-design/scripts/mobile_audit.py +670 -0
  443. package/framework/mobile_development/.gemini/skills/mobile-design/touch-psychology.md +537 -0
  444. package/framework/mobile_development/.gemini/skills/mobile-ios-design/SKILL.md +259 -0
  445. package/framework/mobile_development/.gemini/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  446. package/framework/mobile_development/.gemini/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  447. package/framework/mobile_development/.gemini/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  448. package/framework/mobile_development/.gemini/skills/react-native-architecture/SKILL.md +666 -0
  449. package/framework/mobile_development/.gemini/skills/react-native-design/SKILL.md +432 -0
  450. package/framework/mobile_development/.gemini/skills/react-native-design/references/navigation-patterns.md +832 -0
  451. package/framework/mobile_development/.gemini/skills/react-native-design/references/reanimated-patterns.md +775 -0
  452. package/framework/mobile_development/.gemini/skills/react-native-design/references/styling-patterns.md +871 -0
  453. package/framework/mobile_development/.gemini/skills/react-state-management/SKILL.md +430 -0
  454. package/framework/mobile_development/.github/skills/flutter-expert/SKILL.md +197 -0
  455. package/framework/mobile_development/.github/skills/ios-developer/SKILL.md +217 -0
  456. package/framework/mobile_development/.github/skills/mobile-android-design/SKILL.md +433 -0
  457. package/framework/mobile_development/.github/skills/mobile-android-design/references/android-navigation.md +698 -0
  458. package/framework/mobile_development/.github/skills/mobile-android-design/references/compose-components.md +796 -0
  459. package/framework/mobile_development/.github/skills/mobile-android-design/references/material3-theming.md +604 -0
  460. package/framework/mobile_development/.github/skills/mobile-design/SKILL.md +289 -0
  461. package/framework/mobile_development/.github/skills/mobile-design/decision-trees.md +516 -0
  462. package/framework/mobile_development/.github/skills/mobile-design/mobile-backend.md +491 -0
  463. package/framework/mobile_development/.github/skills/mobile-design/mobile-color-system.md +420 -0
  464. package/framework/mobile_development/.github/skills/mobile-design/mobile-debugging.md +122 -0
  465. package/framework/mobile_development/.github/skills/mobile-design/mobile-design-thinking.md +357 -0
  466. package/framework/mobile_development/.github/skills/mobile-design/mobile-navigation.md +458 -0
  467. package/framework/mobile_development/.github/skills/mobile-design/mobile-performance.md +767 -0
  468. package/framework/mobile_development/.github/skills/mobile-design/mobile-testing.md +356 -0
  469. package/framework/mobile_development/.github/skills/mobile-design/mobile-typography.md +433 -0
  470. package/framework/mobile_development/.github/skills/mobile-design/platform-android.md +666 -0
  471. package/framework/mobile_development/.github/skills/mobile-design/platform-ios.md +561 -0
  472. package/framework/mobile_development/.github/skills/mobile-design/scripts/mobile_audit.py +670 -0
  473. package/framework/mobile_development/.github/skills/mobile-design/touch-psychology.md +537 -0
  474. package/framework/mobile_development/.github/skills/mobile-ios-design/SKILL.md +259 -0
  475. package/framework/mobile_development/.github/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  476. package/framework/mobile_development/.github/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  477. package/framework/mobile_development/.github/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  478. package/framework/mobile_development/.github/skills/react-native-architecture/SKILL.md +666 -0
  479. package/framework/mobile_development/.github/skills/react-native-design/SKILL.md +432 -0
  480. package/framework/mobile_development/.github/skills/react-native-design/references/navigation-patterns.md +832 -0
  481. package/framework/mobile_development/.github/skills/react-native-design/references/reanimated-patterns.md +775 -0
  482. package/framework/mobile_development/.github/skills/react-native-design/references/styling-patterns.md +871 -0
  483. package/framework/mobile_development/.github/skills/react-state-management/SKILL.md +430 -0
  484. package/framework/mobile_development/.iflow/skills/flutter-expert/SKILL.md +197 -0
  485. package/framework/mobile_development/.iflow/skills/ios-developer/SKILL.md +217 -0
  486. package/framework/mobile_development/.iflow/skills/mobile-android-design/SKILL.md +433 -0
  487. package/framework/mobile_development/.iflow/skills/mobile-android-design/references/android-navigation.md +698 -0
  488. package/framework/mobile_development/.iflow/skills/mobile-android-design/references/compose-components.md +796 -0
  489. package/framework/mobile_development/.iflow/skills/mobile-android-design/references/material3-theming.md +604 -0
  490. package/framework/mobile_development/.iflow/skills/mobile-design/SKILL.md +289 -0
  491. package/framework/mobile_development/.iflow/skills/mobile-design/decision-trees.md +516 -0
  492. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-backend.md +491 -0
  493. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-color-system.md +420 -0
  494. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-debugging.md +122 -0
  495. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-design-thinking.md +357 -0
  496. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-navigation.md +458 -0
  497. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-performance.md +767 -0
  498. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-testing.md +356 -0
  499. package/framework/mobile_development/.iflow/skills/mobile-design/mobile-typography.md +433 -0
  500. package/framework/mobile_development/.iflow/skills/mobile-design/platform-android.md +666 -0
  501. package/framework/mobile_development/.iflow/skills/mobile-design/platform-ios.md +561 -0
  502. package/framework/mobile_development/.iflow/skills/mobile-design/scripts/mobile_audit.py +670 -0
  503. package/framework/mobile_development/.iflow/skills/mobile-design/touch-psychology.md +537 -0
  504. package/framework/mobile_development/.iflow/skills/mobile-ios-design/SKILL.md +259 -0
  505. package/framework/mobile_development/.iflow/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  506. package/framework/mobile_development/.iflow/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  507. package/framework/mobile_development/.iflow/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  508. package/framework/mobile_development/.iflow/skills/react-native-architecture/SKILL.md +666 -0
  509. package/framework/mobile_development/.iflow/skills/react-native-design/SKILL.md +432 -0
  510. package/framework/mobile_development/.iflow/skills/react-native-design/references/navigation-patterns.md +832 -0
  511. package/framework/mobile_development/.iflow/skills/react-native-design/references/reanimated-patterns.md +775 -0
  512. package/framework/mobile_development/.iflow/skills/react-native-design/references/styling-patterns.md +871 -0
  513. package/framework/mobile_development/.iflow/skills/react-state-management/SKILL.md +430 -0
  514. package/framework/mobile_development/.kilocode/skills/flutter-expert/SKILL.md +197 -0
  515. package/framework/mobile_development/.kilocode/skills/ios-developer/SKILL.md +217 -0
  516. package/framework/mobile_development/.kilocode/skills/mobile-android-design/SKILL.md +433 -0
  517. package/framework/mobile_development/.kilocode/skills/mobile-android-design/references/android-navigation.md +698 -0
  518. package/framework/mobile_development/.kilocode/skills/mobile-android-design/references/compose-components.md +796 -0
  519. package/framework/mobile_development/.kilocode/skills/mobile-android-design/references/material3-theming.md +604 -0
  520. package/framework/mobile_development/.kilocode/skills/mobile-design/SKILL.md +289 -0
  521. package/framework/mobile_development/.kilocode/skills/mobile-design/decision-trees.md +516 -0
  522. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-backend.md +491 -0
  523. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-color-system.md +420 -0
  524. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-debugging.md +122 -0
  525. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-design-thinking.md +357 -0
  526. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-navigation.md +458 -0
  527. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-performance.md +767 -0
  528. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-testing.md +356 -0
  529. package/framework/mobile_development/.kilocode/skills/mobile-design/mobile-typography.md +433 -0
  530. package/framework/mobile_development/.kilocode/skills/mobile-design/platform-android.md +666 -0
  531. package/framework/mobile_development/.kilocode/skills/mobile-design/platform-ios.md +561 -0
  532. package/framework/mobile_development/.kilocode/skills/mobile-design/scripts/mobile_audit.py +670 -0
  533. package/framework/mobile_development/.kilocode/skills/mobile-design/touch-psychology.md +537 -0
  534. package/framework/mobile_development/.kilocode/skills/mobile-ios-design/SKILL.md +259 -0
  535. package/framework/mobile_development/.kilocode/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  536. package/framework/mobile_development/.kilocode/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  537. package/framework/mobile_development/.kilocode/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  538. package/framework/mobile_development/.kilocode/skills/react-native-architecture/SKILL.md +666 -0
  539. package/framework/mobile_development/.kilocode/skills/react-native-design/SKILL.md +432 -0
  540. package/framework/mobile_development/.kilocode/skills/react-native-design/references/navigation-patterns.md +832 -0
  541. package/framework/mobile_development/.kilocode/skills/react-native-design/references/reanimated-patterns.md +775 -0
  542. package/framework/mobile_development/.kilocode/skills/react-native-design/references/styling-patterns.md +871 -0
  543. package/framework/mobile_development/.kilocode/skills/react-state-management/SKILL.md +430 -0
  544. package/framework/mobile_development/.kimi/skills/flutter-expert/SKILL.md +197 -0
  545. package/framework/mobile_development/.kimi/skills/ios-developer/SKILL.md +217 -0
  546. package/framework/mobile_development/.kimi/skills/mobile-android-design/SKILL.md +433 -0
  547. package/framework/mobile_development/.kimi/skills/mobile-android-design/references/android-navigation.md +698 -0
  548. package/framework/mobile_development/.kimi/skills/mobile-android-design/references/compose-components.md +796 -0
  549. package/framework/mobile_development/.kimi/skills/mobile-android-design/references/material3-theming.md +604 -0
  550. package/framework/mobile_development/.kimi/skills/mobile-design/SKILL.md +289 -0
  551. package/framework/mobile_development/.kimi/skills/mobile-design/decision-trees.md +516 -0
  552. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-backend.md +491 -0
  553. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-color-system.md +420 -0
  554. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-debugging.md +122 -0
  555. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-design-thinking.md +357 -0
  556. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-navigation.md +458 -0
  557. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-performance.md +767 -0
  558. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-testing.md +356 -0
  559. package/framework/mobile_development/.kimi/skills/mobile-design/mobile-typography.md +433 -0
  560. package/framework/mobile_development/.kimi/skills/mobile-design/platform-android.md +666 -0
  561. package/framework/mobile_development/.kimi/skills/mobile-design/platform-ios.md +561 -0
  562. package/framework/mobile_development/.kimi/skills/mobile-design/scripts/mobile_audit.py +670 -0
  563. package/framework/mobile_development/.kimi/skills/mobile-design/touch-psychology.md +537 -0
  564. package/framework/mobile_development/.kimi/skills/mobile-ios-design/SKILL.md +259 -0
  565. package/framework/mobile_development/.kimi/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  566. package/framework/mobile_development/.kimi/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  567. package/framework/mobile_development/.kimi/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  568. package/framework/mobile_development/.kimi/skills/react-native-architecture/SKILL.md +666 -0
  569. package/framework/mobile_development/.kimi/skills/react-native-design/SKILL.md +432 -0
  570. package/framework/mobile_development/.kimi/skills/react-native-design/references/navigation-patterns.md +832 -0
  571. package/framework/mobile_development/.kimi/skills/react-native-design/references/reanimated-patterns.md +775 -0
  572. package/framework/mobile_development/.kimi/skills/react-native-design/references/styling-patterns.md +871 -0
  573. package/framework/mobile_development/.kimi/skills/react-state-management/SKILL.md +430 -0
  574. package/framework/mobile_development/.opencode/skills/flutter-expert/SKILL.md +197 -0
  575. package/framework/mobile_development/.opencode/skills/ios-developer/SKILL.md +217 -0
  576. package/framework/mobile_development/.opencode/skills/mobile-android-design/SKILL.md +433 -0
  577. package/framework/mobile_development/.opencode/skills/mobile-android-design/references/android-navigation.md +698 -0
  578. package/framework/mobile_development/.opencode/skills/mobile-android-design/references/compose-components.md +796 -0
  579. package/framework/mobile_development/.opencode/skills/mobile-android-design/references/material3-theming.md +604 -0
  580. package/framework/mobile_development/.opencode/skills/mobile-design/SKILL.md +289 -0
  581. package/framework/mobile_development/.opencode/skills/mobile-design/decision-trees.md +516 -0
  582. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-backend.md +491 -0
  583. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-color-system.md +420 -0
  584. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-debugging.md +122 -0
  585. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-design-thinking.md +357 -0
  586. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-navigation.md +458 -0
  587. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-performance.md +767 -0
  588. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-testing.md +356 -0
  589. package/framework/mobile_development/.opencode/skills/mobile-design/mobile-typography.md +433 -0
  590. package/framework/mobile_development/.opencode/skills/mobile-design/platform-android.md +666 -0
  591. package/framework/mobile_development/.opencode/skills/mobile-design/platform-ios.md +561 -0
  592. package/framework/mobile_development/.opencode/skills/mobile-design/scripts/mobile_audit.py +670 -0
  593. package/framework/mobile_development/.opencode/skills/mobile-design/touch-psychology.md +537 -0
  594. package/framework/mobile_development/.opencode/skills/mobile-ios-design/SKILL.md +259 -0
  595. package/framework/mobile_development/.opencode/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  596. package/framework/mobile_development/.opencode/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  597. package/framework/mobile_development/.opencode/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  598. package/framework/mobile_development/.opencode/skills/react-native-architecture/SKILL.md +666 -0
  599. package/framework/mobile_development/.opencode/skills/react-native-design/SKILL.md +432 -0
  600. package/framework/mobile_development/.opencode/skills/react-native-design/references/navigation-patterns.md +832 -0
  601. package/framework/mobile_development/.opencode/skills/react-native-design/references/reanimated-patterns.md +775 -0
  602. package/framework/mobile_development/.opencode/skills/react-native-design/references/styling-patterns.md +871 -0
  603. package/framework/mobile_development/.opencode/skills/react-state-management/SKILL.md +430 -0
  604. package/framework/mobile_development/.qoder/skills/flutter-expert/SKILL.md +197 -0
  605. package/framework/mobile_development/.qoder/skills/ios-developer/SKILL.md +217 -0
  606. package/framework/mobile_development/.qoder/skills/mobile-android-design/SKILL.md +433 -0
  607. package/framework/mobile_development/.qoder/skills/mobile-android-design/references/android-navigation.md +698 -0
  608. package/framework/mobile_development/.qoder/skills/mobile-android-design/references/compose-components.md +796 -0
  609. package/framework/mobile_development/.qoder/skills/mobile-android-design/references/material3-theming.md +604 -0
  610. package/framework/mobile_development/.qoder/skills/mobile-design/SKILL.md +289 -0
  611. package/framework/mobile_development/.qoder/skills/mobile-design/decision-trees.md +516 -0
  612. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-backend.md +491 -0
  613. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-color-system.md +420 -0
  614. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-debugging.md +122 -0
  615. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-design-thinking.md +357 -0
  616. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-navigation.md +458 -0
  617. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-performance.md +767 -0
  618. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-testing.md +356 -0
  619. package/framework/mobile_development/.qoder/skills/mobile-design/mobile-typography.md +433 -0
  620. package/framework/mobile_development/.qoder/skills/mobile-design/platform-android.md +666 -0
  621. package/framework/mobile_development/.qoder/skills/mobile-design/platform-ios.md +561 -0
  622. package/framework/mobile_development/.qoder/skills/mobile-design/scripts/mobile_audit.py +670 -0
  623. package/framework/mobile_development/.qoder/skills/mobile-design/touch-psychology.md +537 -0
  624. package/framework/mobile_development/.qoder/skills/mobile-ios-design/SKILL.md +259 -0
  625. package/framework/mobile_development/.qoder/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  626. package/framework/mobile_development/.qoder/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  627. package/framework/mobile_development/.qoder/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  628. package/framework/mobile_development/.qoder/skills/react-native-architecture/SKILL.md +666 -0
  629. package/framework/mobile_development/.qoder/skills/react-native-design/SKILL.md +432 -0
  630. package/framework/mobile_development/.qoder/skills/react-native-design/references/navigation-patterns.md +832 -0
  631. package/framework/mobile_development/.qoder/skills/react-native-design/references/reanimated-patterns.md +775 -0
  632. package/framework/mobile_development/.qoder/skills/react-native-design/references/styling-patterns.md +871 -0
  633. package/framework/mobile_development/.qoder/skills/react-state-management/SKILL.md +430 -0
  634. package/framework/mobile_development/.qwen/skills/flutter-expert/SKILL.md +197 -0
  635. package/framework/mobile_development/.qwen/skills/ios-developer/SKILL.md +217 -0
  636. package/framework/mobile_development/.qwen/skills/mobile-android-design/SKILL.md +433 -0
  637. package/framework/mobile_development/.qwen/skills/mobile-android-design/references/android-navigation.md +698 -0
  638. package/framework/mobile_development/.qwen/skills/mobile-android-design/references/compose-components.md +796 -0
  639. package/framework/mobile_development/.qwen/skills/mobile-android-design/references/material3-theming.md +604 -0
  640. package/framework/mobile_development/.qwen/skills/mobile-design/SKILL.md +289 -0
  641. package/framework/mobile_development/.qwen/skills/mobile-design/decision-trees.md +516 -0
  642. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-backend.md +491 -0
  643. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-color-system.md +420 -0
  644. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-debugging.md +122 -0
  645. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-design-thinking.md +357 -0
  646. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-navigation.md +458 -0
  647. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-performance.md +767 -0
  648. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-testing.md +356 -0
  649. package/framework/mobile_development/.qwen/skills/mobile-design/mobile-typography.md +433 -0
  650. package/framework/mobile_development/.qwen/skills/mobile-design/platform-android.md +666 -0
  651. package/framework/mobile_development/.qwen/skills/mobile-design/platform-ios.md +561 -0
  652. package/framework/mobile_development/.qwen/skills/mobile-design/scripts/mobile_audit.py +670 -0
  653. package/framework/mobile_development/.qwen/skills/mobile-design/touch-psychology.md +537 -0
  654. package/framework/mobile_development/.qwen/skills/mobile-ios-design/SKILL.md +259 -0
  655. package/framework/mobile_development/.qwen/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  656. package/framework/mobile_development/.qwen/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  657. package/framework/mobile_development/.qwen/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  658. package/framework/mobile_development/.qwen/skills/react-native-architecture/SKILL.md +666 -0
  659. package/framework/mobile_development/.qwen/skills/react-native-design/SKILL.md +432 -0
  660. package/framework/mobile_development/.qwen/skills/react-native-design/references/navigation-patterns.md +832 -0
  661. package/framework/mobile_development/.qwen/skills/react-native-design/references/reanimated-patterns.md +775 -0
  662. package/framework/mobile_development/.qwen/skills/react-native-design/references/styling-patterns.md +871 -0
  663. package/framework/mobile_development/.qwen/skills/react-state-management/SKILL.md +430 -0
  664. package/framework/mobile_development/.roo/skills/flutter-expert/SKILL.md +197 -0
  665. package/framework/mobile_development/.roo/skills/ios-developer/SKILL.md +217 -0
  666. package/framework/mobile_development/.roo/skills/mobile-android-design/SKILL.md +433 -0
  667. package/framework/mobile_development/.roo/skills/mobile-android-design/references/android-navigation.md +698 -0
  668. package/framework/mobile_development/.roo/skills/mobile-android-design/references/compose-components.md +796 -0
  669. package/framework/mobile_development/.roo/skills/mobile-android-design/references/material3-theming.md +604 -0
  670. package/framework/mobile_development/.roo/skills/mobile-design/SKILL.md +289 -0
  671. package/framework/mobile_development/.roo/skills/mobile-design/decision-trees.md +516 -0
  672. package/framework/mobile_development/.roo/skills/mobile-design/mobile-backend.md +491 -0
  673. package/framework/mobile_development/.roo/skills/mobile-design/mobile-color-system.md +420 -0
  674. package/framework/mobile_development/.roo/skills/mobile-design/mobile-debugging.md +122 -0
  675. package/framework/mobile_development/.roo/skills/mobile-design/mobile-design-thinking.md +357 -0
  676. package/framework/mobile_development/.roo/skills/mobile-design/mobile-navigation.md +458 -0
  677. package/framework/mobile_development/.roo/skills/mobile-design/mobile-performance.md +767 -0
  678. package/framework/mobile_development/.roo/skills/mobile-design/mobile-testing.md +356 -0
  679. package/framework/mobile_development/.roo/skills/mobile-design/mobile-typography.md +433 -0
  680. package/framework/mobile_development/.roo/skills/mobile-design/platform-android.md +666 -0
  681. package/framework/mobile_development/.roo/skills/mobile-design/platform-ios.md +561 -0
  682. package/framework/mobile_development/.roo/skills/mobile-design/scripts/mobile_audit.py +670 -0
  683. package/framework/mobile_development/.roo/skills/mobile-design/touch-psychology.md +537 -0
  684. package/framework/mobile_development/.roo/skills/mobile-ios-design/SKILL.md +259 -0
  685. package/framework/mobile_development/.roo/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  686. package/framework/mobile_development/.roo/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  687. package/framework/mobile_development/.roo/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  688. package/framework/mobile_development/.roo/skills/react-native-architecture/SKILL.md +666 -0
  689. package/framework/mobile_development/.roo/skills/react-native-design/SKILL.md +432 -0
  690. package/framework/mobile_development/.roo/skills/react-native-design/references/navigation-patterns.md +832 -0
  691. package/framework/mobile_development/.roo/skills/react-native-design/references/reanimated-patterns.md +775 -0
  692. package/framework/mobile_development/.roo/skills/react-native-design/references/styling-patterns.md +871 -0
  693. package/framework/mobile_development/.roo/skills/react-state-management/SKILL.md +430 -0
  694. package/framework/mobile_development/.trae/skills/flutter-expert/SKILL.md +197 -0
  695. package/framework/mobile_development/.trae/skills/ios-developer/SKILL.md +217 -0
  696. package/framework/mobile_development/.trae/skills/mobile-android-design/SKILL.md +433 -0
  697. package/framework/mobile_development/.trae/skills/mobile-android-design/references/android-navigation.md +698 -0
  698. package/framework/mobile_development/.trae/skills/mobile-android-design/references/compose-components.md +796 -0
  699. package/framework/mobile_development/.trae/skills/mobile-android-design/references/material3-theming.md +604 -0
  700. package/framework/mobile_development/.trae/skills/mobile-design/SKILL.md +289 -0
  701. package/framework/mobile_development/.trae/skills/mobile-design/decision-trees.md +516 -0
  702. package/framework/mobile_development/.trae/skills/mobile-design/mobile-backend.md +491 -0
  703. package/framework/mobile_development/.trae/skills/mobile-design/mobile-color-system.md +420 -0
  704. package/framework/mobile_development/.trae/skills/mobile-design/mobile-debugging.md +122 -0
  705. package/framework/mobile_development/.trae/skills/mobile-design/mobile-design-thinking.md +357 -0
  706. package/framework/mobile_development/.trae/skills/mobile-design/mobile-navigation.md +458 -0
  707. package/framework/mobile_development/.trae/skills/mobile-design/mobile-performance.md +767 -0
  708. package/framework/mobile_development/.trae/skills/mobile-design/mobile-testing.md +356 -0
  709. package/framework/mobile_development/.trae/skills/mobile-design/mobile-typography.md +433 -0
  710. package/framework/mobile_development/.trae/skills/mobile-design/platform-android.md +666 -0
  711. package/framework/mobile_development/.trae/skills/mobile-design/platform-ios.md +561 -0
  712. package/framework/mobile_development/.trae/skills/mobile-design/scripts/mobile_audit.py +670 -0
  713. package/framework/mobile_development/.trae/skills/mobile-design/touch-psychology.md +537 -0
  714. package/framework/mobile_development/.trae/skills/mobile-ios-design/SKILL.md +259 -0
  715. package/framework/mobile_development/.trae/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  716. package/framework/mobile_development/.trae/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  717. package/framework/mobile_development/.trae/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  718. package/framework/mobile_development/.trae/skills/react-native-architecture/SKILL.md +666 -0
  719. package/framework/mobile_development/.trae/skills/react-native-design/SKILL.md +432 -0
  720. package/framework/mobile_development/.trae/skills/react-native-design/references/navigation-patterns.md +832 -0
  721. package/framework/mobile_development/.trae/skills/react-native-design/references/reanimated-patterns.md +775 -0
  722. package/framework/mobile_development/.trae/skills/react-native-design/references/styling-patterns.md +871 -0
  723. package/framework/mobile_development/.trae/skills/react-state-management/SKILL.md +430 -0
  724. package/framework/mobile_development/.windsurf/skills/flutter-expert/SKILL.md +197 -0
  725. package/framework/mobile_development/.windsurf/skills/ios-developer/SKILL.md +217 -0
  726. package/framework/mobile_development/.windsurf/skills/mobile-android-design/SKILL.md +433 -0
  727. package/framework/mobile_development/.windsurf/skills/mobile-android-design/references/android-navigation.md +698 -0
  728. package/framework/mobile_development/.windsurf/skills/mobile-android-design/references/compose-components.md +796 -0
  729. package/framework/mobile_development/.windsurf/skills/mobile-android-design/references/material3-theming.md +604 -0
  730. package/framework/mobile_development/.windsurf/skills/mobile-design/SKILL.md +289 -0
  731. package/framework/mobile_development/.windsurf/skills/mobile-design/decision-trees.md +516 -0
  732. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-backend.md +491 -0
  733. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-color-system.md +420 -0
  734. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-debugging.md +122 -0
  735. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-design-thinking.md +357 -0
  736. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-navigation.md +458 -0
  737. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-performance.md +767 -0
  738. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-testing.md +356 -0
  739. package/framework/mobile_development/.windsurf/skills/mobile-design/mobile-typography.md +433 -0
  740. package/framework/mobile_development/.windsurf/skills/mobile-design/platform-android.md +666 -0
  741. package/framework/mobile_development/.windsurf/skills/mobile-design/platform-ios.md +561 -0
  742. package/framework/mobile_development/.windsurf/skills/mobile-design/scripts/mobile_audit.py +670 -0
  743. package/framework/mobile_development/.windsurf/skills/mobile-design/touch-psychology.md +537 -0
  744. package/framework/mobile_development/.windsurf/skills/mobile-ios-design/SKILL.md +259 -0
  745. package/framework/mobile_development/.windsurf/skills/mobile-ios-design/references/hig-patterns.md +529 -0
  746. package/framework/mobile_development/.windsurf/skills/mobile-ios-design/references/ios-navigation.md +556 -0
  747. package/framework/mobile_development/.windsurf/skills/mobile-ios-design/references/swiftui-components.md +575 -0
  748. package/framework/mobile_development/.windsurf/skills/react-native-architecture/SKILL.md +666 -0
  749. package/framework/mobile_development/.windsurf/skills/react-native-design/SKILL.md +432 -0
  750. package/framework/mobile_development/.windsurf/skills/react-native-design/references/navigation-patterns.md +832 -0
  751. package/framework/mobile_development/.windsurf/skills/react-native-design/references/reanimated-patterns.md +775 -0
  752. package/framework/mobile_development/.windsurf/skills/react-native-design/references/styling-patterns.md +871 -0
  753. package/framework/mobile_development/.windsurf/skills/react-state-management/SKILL.md +430 -0
  754. package/package.json +1 -1
  755. package/src/agents/constants.js +8 -0
  756. package/src/agents/opencode-client.js +46 -0
  757. package/src/agents/orchestrator.js +179 -0
  758. package/src/agents/role-prompts.js +48 -0
  759. package/src/agents/scheduler.js +22 -0
  760. package/src/agents/state-store.js +240 -0
  761. package/src/cli.js +2 -0
  762. package/src/commands/agents.js +564 -0
  763. package/src/commands/init.js +72 -0
  764. package/src/services/dependency-installer.js +98 -0
@@ -0,0 +1,217 @@
1
+ ---
2
+ name: ios-developer
3
+ description: Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization.
4
+ risk: unknown
5
+ source: community
6
+ date_added: '2026-02-27'
7
+ ---
8
+
9
+ ## Use this skill when
10
+
11
+ - Working on ios developer tasks or workflows
12
+ - Needing guidance, best practices, or checklists for ios developer
13
+
14
+ ## Do not use this skill when
15
+
16
+ - The task is unrelated to ios developer
17
+ - You need a different domain or tool outside this scope
18
+
19
+ ## Instructions
20
+
21
+ - Clarify goals, constraints, and required inputs.
22
+ - Apply relevant best practices and validate outcomes.
23
+ - Provide actionable steps and verification.
24
+ - If detailed examples are required, open `resources/implementation-playbook.md`.
25
+
26
+ You are an iOS development expert specializing in native iOS app development with comprehensive knowledge of the Apple ecosystem.
27
+
28
+ ## Purpose
29
+ Expert iOS developer specializing in Swift 6, SwiftUI, and native iOS application development. Masters modern iOS architecture patterns, performance optimization, and Apple platform integrations while maintaining code quality and App Store compliance.
30
+
31
+ ## Capabilities
32
+
33
+ ### Core iOS Development
34
+ - Swift 6 language features including strict concurrency and typed throws
35
+ - SwiftUI declarative UI framework with iOS 18 enhancements
36
+ - UIKit integration and hybrid SwiftUI/UIKit architectures
37
+ - iOS 18 specific features and API integrations
38
+ - Xcode 16 development environment optimization
39
+ - Swift Package Manager for dependency management
40
+ - iOS App lifecycle and scene-based architecture
41
+ - Background processing and app state management
42
+
43
+ ### SwiftUI Mastery
44
+ - SwiftUI 5.0+ features including enhanced animations and layouts
45
+ - State management with @State, @Binding, @ObservedObject, and @StateObject
46
+ - Combine framework integration for reactive programming
47
+ - Custom view modifiers and view builders
48
+ - SwiftUI navigation patterns and coordinator architecture
49
+ - Preview providers and canvas development
50
+ - Accessibility-first SwiftUI development
51
+ - SwiftUI performance optimization techniques
52
+
53
+ ### UIKit Integration & Legacy Support
54
+ - UIKit and SwiftUI interoperability patterns
55
+ - UIViewController and UIView wrapping techniques
56
+ - Custom UIKit components and controls
57
+ - Auto Layout programmatic and Interface Builder approaches
58
+ - Collection views and table views with diffable data sources
59
+ - Custom transitions and view controller animations
60
+ - Legacy code migration strategies to SwiftUI
61
+ - UIKit appearance customization and theming
62
+
63
+ ### Architecture Patterns
64
+ - MVVM architecture with SwiftUI and Combine
65
+ - Clean Architecture implementation for iOS apps
66
+ - Coordinator pattern for navigation management
67
+ - Repository pattern for data abstraction
68
+ - Dependency injection with Swinject or custom solutions
69
+ - Modular architecture and Swift Package organization
70
+ - Protocol-oriented programming patterns
71
+ - Reactive programming with Combine publishers
72
+
73
+ ### Data Management & Persistence
74
+ - Core Data with SwiftUI integration and @FetchRequest
75
+ - SwiftData for modern data persistence (iOS 17+)
76
+ - CloudKit integration for cloud storage and sync
77
+ - Keychain Services for secure data storage
78
+ - UserDefaults and property wrappers for app settings
79
+ - File system operations and document-based apps
80
+ - SQLite and FMDB for complex database operations
81
+ - Network caching and offline-first strategies
82
+
83
+ ### Networking & API Integration
84
+ - URLSession with async/await for modern networking
85
+ - Combine publishers for reactive networking patterns
86
+ - RESTful API integration with Codable protocols
87
+ - GraphQL integration with Apollo iOS
88
+ - WebSocket connections for real-time communication
89
+ - Network reachability and connection monitoring
90
+ - Certificate pinning and network security
91
+ - Background URLSession for file transfers
92
+
93
+ ### Performance Optimization
94
+ - Instruments profiling for memory and performance analysis
95
+ - Core Animation and rendering optimization
96
+ - Image loading and caching strategies (SDWebImage, Kingfisher)
97
+ - Lazy loading patterns and pagination
98
+ - Background processing optimization
99
+ - Memory management and ARC optimization
100
+ - Thread management and GCD patterns
101
+ - Battery life optimization techniques
102
+
103
+ ### Security & Privacy
104
+ - iOS security best practices and data protection
105
+ - Keychain Services for sensitive data storage
106
+ - Biometric authentication (Touch ID, Face ID)
107
+ - App Transport Security (ATS) configuration
108
+ - Certificate pinning implementation
109
+ - Privacy-focused development and data collection
110
+ - App Tracking Transparency framework integration
111
+ - Secure coding practices and vulnerability prevention
112
+
113
+ ### Testing Strategies
114
+ - XCTest framework for unit and integration testing
115
+ - UI testing with XCUITest automation
116
+ - Test-driven development (TDD) practices
117
+ - Mock objects and dependency injection for testing
118
+ - Snapshot testing for UI regression prevention
119
+ - Performance testing and benchmarking
120
+ - Continuous integration with Xcode Cloud
121
+ - TestFlight beta testing and feedback collection
122
+
123
+ ### App Store & Distribution
124
+ - App Store Connect management and optimization
125
+ - App Store review guidelines compliance
126
+ - Metadata optimization and ASO best practices
127
+ - Screenshot automation and marketing assets
128
+ - App Store pricing and monetization strategies
129
+ - TestFlight internal and external testing
130
+ - Enterprise distribution and MDM integration
131
+ - Privacy nutrition labels and app privacy reports
132
+
133
+ ### Advanced iOS Features
134
+ - Widget development for home screen and lock screen
135
+ - Live Activities and Dynamic Island integration
136
+ - SiriKit integration for voice commands
137
+ - Core ML and Create ML for on-device machine learning
138
+ - ARKit for augmented reality experiences
139
+ - Core Location and MapKit for location-based features
140
+ - HealthKit integration for health and fitness apps
141
+ - HomeKit for smart home automation
142
+
143
+ ### Apple Ecosystem Integration
144
+ - Watch connectivity for Apple Watch companion apps
145
+ - WatchOS app development with SwiftUI
146
+ - macOS Catalyst for Mac app distribution
147
+ - Universal apps for iPhone, iPad, and Mac
148
+ - AirDrop and document sharing integration
149
+ - Handoff and Continuity features
150
+ - iCloud integration for seamless user experience
151
+ - Sign in with Apple implementation
152
+
153
+ ### DevOps & Automation
154
+ - Xcode Cloud for continuous integration and delivery
155
+ - Fastlane for deployment automation
156
+ - GitHub Actions and Bitrise for CI/CD pipelines
157
+ - Automatic code signing and certificate management
158
+ - Build configurations and scheme management
159
+ - Archive and distribution automation
160
+ - Crash reporting with Crashlytics or Sentry
161
+ - Analytics integration and user behavior tracking
162
+
163
+ ### Accessibility & Inclusive Design
164
+ - VoiceOver and assistive technology support
165
+ - Dynamic Type and text scaling support
166
+ - High contrast and reduced motion accommodations
167
+ - Accessibility inspector and audit tools
168
+ - Semantic markup and accessibility traits
169
+ - Keyboard navigation and external keyboard support
170
+ - Voice Control and Switch Control compatibility
171
+ - Inclusive design principles and testing
172
+
173
+ ## Behavioral Traits
174
+ - Follows Apple Human Interface Guidelines religiously
175
+ - Prioritizes user experience and platform consistency
176
+ - Implements comprehensive error handling and user feedback
177
+ - Uses Swift's type system for compile-time safety
178
+ - Considers performance implications of UI decisions
179
+ - Writes maintainable, well-documented Swift code
180
+ - Keeps up with WWDC announcements and iOS updates
181
+ - Plans for multiple device sizes and orientations
182
+ - Implements proper memory management patterns
183
+ - Follows App Store review guidelines proactively
184
+
185
+ ## Knowledge Base
186
+ - iOS SDK updates and new API availability
187
+ - Swift language evolution and upcoming features
188
+ - SwiftUI framework enhancements and best practices
189
+ - Apple design system and platform conventions
190
+ - App Store optimization and marketing strategies
191
+ - iOS security framework and privacy requirements
192
+ - Performance optimization tools and techniques
193
+ - Accessibility standards and assistive technologies
194
+ - Apple ecosystem integration opportunities
195
+ - Enterprise iOS deployment and management
196
+
197
+ ## Response Approach
198
+ 1. **Analyze requirements** for iOS-specific implementation patterns
199
+ 2. **Recommend SwiftUI-first solutions** with UIKit integration when needed
200
+ 3. **Provide production-ready Swift code** with proper error handling
201
+ 4. **Include accessibility considerations** from the design phase
202
+ 5. **Consider App Store guidelines** and review requirements
203
+ 6. **Optimize for performance** across all iOS device types
204
+ 7. **Implement proper testing strategies** for quality assurance
205
+ 8. **Address privacy and security** requirements proactively
206
+
207
+ ## Example Interactions
208
+ - "Build a SwiftUI app with Core Data and CloudKit synchronization"
209
+ - "Create custom UIKit components that integrate with SwiftUI views"
210
+ - "Implement biometric authentication with proper fallback handling"
211
+ - "Design an accessible data visualization with VoiceOver support"
212
+ - "Set up CI/CD pipeline with Xcode Cloud and TestFlight distribution"
213
+ - "Optimize app performance using Instruments and memory profiling"
214
+ - "Create Live Activities for real-time updates on lock screen"
215
+ - "Implement ARKit features for product visualization app"
216
+
217
+ Focus on Swift-first solutions with modern iOS patterns. Include comprehensive error handling, accessibility support, and App Store compliance considerations.
@@ -0,0 +1,433 @@
1
+ ---
2
+ name: mobile-android-design
3
+ description: Master Material Design 3 and Jetpack Compose patterns for building native Android apps. Use when designing Android interfaces, implementing Compose UI, or following Google's Material Design guidelines.
4
+ ---
5
+
6
+ # Android Mobile Design
7
+
8
+ Master Material Design 3 (Material You) and Jetpack Compose to build modern, adaptive Android applications that integrate seamlessly with the Android ecosystem.
9
+
10
+ ## When to Use This Skill
11
+
12
+ - Designing Android app interfaces following Material Design 3
13
+ - Building Jetpack Compose UI and layouts
14
+ - Implementing Android navigation patterns (Navigation Compose)
15
+ - Creating adaptive layouts for phones, tablets, and foldables
16
+ - Using Material 3 theming with dynamic colors
17
+ - Building accessible Android interfaces
18
+ - Implementing Android-specific gestures and interactions
19
+ - Designing for different screen configurations
20
+
21
+ ## Core Concepts
22
+
23
+ ### 1. Material Design 3 Principles
24
+
25
+ **Personalization**: Dynamic color adapts UI to user's wallpaper
26
+ **Accessibility**: Tonal palettes ensure sufficient color contrast
27
+ **Large Screens**: Responsive layouts for tablets and foldables
28
+
29
+ **Material Components:**
30
+
31
+ - Cards, Buttons, FABs, Chips
32
+ - Navigation (rail, drawer, bottom nav)
33
+ - Text fields, Dialogs, Sheets
34
+ - Lists, Menus, Progress indicators
35
+
36
+ ### 2. Jetpack Compose Layout System
37
+
38
+ **Column and Row:**
39
+
40
+ ```kotlin
41
+ // Vertical arrangement with alignment
42
+ Column(
43
+ modifier = Modifier.padding(16.dp),
44
+ verticalArrangement = Arrangement.spacedBy(12.dp),
45
+ horizontalAlignment = Alignment.Start
46
+ ) {
47
+ Text(
48
+ text = "Title",
49
+ style = MaterialTheme.typography.headlineSmall
50
+ )
51
+ Text(
52
+ text = "Subtitle",
53
+ style = MaterialTheme.typography.bodyMedium,
54
+ color = MaterialTheme.colorScheme.onSurfaceVariant
55
+ )
56
+ }
57
+
58
+ // Horizontal arrangement with weight
59
+ Row(
60
+ modifier = Modifier.fillMaxWidth(),
61
+ horizontalArrangement = Arrangement.SpaceBetween,
62
+ verticalAlignment = Alignment.CenterVertically
63
+ ) {
64
+ Icon(Icons.Default.Star, contentDescription = null)
65
+ Text("Featured")
66
+ Spacer(modifier = Modifier.weight(1f))
67
+ TextButton(onClick = {}) {
68
+ Text("View All")
69
+ }
70
+ }
71
+ ```
72
+
73
+ **Lazy Lists and Grids:**
74
+
75
+ ```kotlin
76
+ // Lazy column with sticky headers
77
+ LazyColumn {
78
+ items.groupBy { it.category }.forEach { (category, categoryItems) ->
79
+ stickyHeader {
80
+ Text(
81
+ text = category,
82
+ modifier = Modifier
83
+ .fillMaxWidth()
84
+ .background(MaterialTheme.colorScheme.surface)
85
+ .padding(16.dp),
86
+ style = MaterialTheme.typography.titleMedium
87
+ )
88
+ }
89
+ items(categoryItems) { item ->
90
+ ItemRow(item = item)
91
+ }
92
+ }
93
+ }
94
+
95
+ // Adaptive grid
96
+ LazyVerticalGrid(
97
+ columns = GridCells.Adaptive(minSize = 150.dp),
98
+ contentPadding = PaddingValues(16.dp),
99
+ horizontalArrangement = Arrangement.spacedBy(12.dp),
100
+ verticalArrangement = Arrangement.spacedBy(12.dp)
101
+ ) {
102
+ items(items) { item ->
103
+ ItemCard(item = item)
104
+ }
105
+ }
106
+ ```
107
+
108
+ ### 3. Navigation Patterns
109
+
110
+ **Bottom Navigation:**
111
+
112
+ ```kotlin
113
+ @Composable
114
+ fun MainScreen() {
115
+ val navController = rememberNavController()
116
+
117
+ Scaffold(
118
+ bottomBar = {
119
+ NavigationBar {
120
+ val navBackStackEntry by navController.currentBackStackEntryAsState()
121
+ val currentDestination = navBackStackEntry?.destination
122
+
123
+ NavigationDestination.entries.forEach { destination ->
124
+ NavigationBarItem(
125
+ icon = { Icon(destination.icon, contentDescription = null) },
126
+ label = { Text(destination.label) },
127
+ selected = currentDestination?.hierarchy?.any {
128
+ it.route == destination.route
129
+ } == true,
130
+ onClick = {
131
+ navController.navigate(destination.route) {
132
+ popUpTo(navController.graph.findStartDestination().id) {
133
+ saveState = true
134
+ }
135
+ launchSingleTop = true
136
+ restoreState = true
137
+ }
138
+ }
139
+ )
140
+ }
141
+ }
142
+ }
143
+ ) { innerPadding ->
144
+ NavHost(
145
+ navController = navController,
146
+ startDestination = NavigationDestination.Home.route,
147
+ modifier = Modifier.padding(innerPadding)
148
+ ) {
149
+ composable(NavigationDestination.Home.route) { HomeScreen() }
150
+ composable(NavigationDestination.Search.route) { SearchScreen() }
151
+ composable(NavigationDestination.Profile.route) { ProfileScreen() }
152
+ }
153
+ }
154
+ }
155
+ ```
156
+
157
+ **Navigation Drawer:**
158
+
159
+ ```kotlin
160
+ @Composable
161
+ fun DrawerNavigation() {
162
+ val drawerState = rememberDrawerState(DrawerValue.Closed)
163
+ val scope = rememberCoroutineScope()
164
+
165
+ ModalNavigationDrawer(
166
+ drawerState = drawerState,
167
+ drawerContent = {
168
+ ModalDrawerSheet {
169
+ Spacer(Modifier.height(12.dp))
170
+ Text(
171
+ "App Name",
172
+ modifier = Modifier.padding(16.dp),
173
+ style = MaterialTheme.typography.titleLarge
174
+ )
175
+ HorizontalDivider()
176
+
177
+ NavigationDrawerItem(
178
+ icon = { Icon(Icons.Default.Home, null) },
179
+ label = { Text("Home") },
180
+ selected = true,
181
+ onClick = { scope.launch { drawerState.close() } }
182
+ )
183
+ NavigationDrawerItem(
184
+ icon = { Icon(Icons.Default.Settings, null) },
185
+ label = { Text("Settings") },
186
+ selected = false,
187
+ onClick = { }
188
+ )
189
+ }
190
+ }
191
+ ) {
192
+ Scaffold(
193
+ topBar = {
194
+ TopAppBar(
195
+ title = { Text("Home") },
196
+ navigationIcon = {
197
+ IconButton(onClick = { scope.launch { drawerState.open() } }) {
198
+ Icon(Icons.Default.Menu, contentDescription = "Menu")
199
+ }
200
+ }
201
+ )
202
+ }
203
+ ) { innerPadding ->
204
+ Content(modifier = Modifier.padding(innerPadding))
205
+ }
206
+ }
207
+ }
208
+ ```
209
+
210
+ ### 4. Material 3 Theming
211
+
212
+ **Color Scheme:**
213
+
214
+ ```kotlin
215
+ // Dynamic color (Android 12+)
216
+ val dynamicColorScheme = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
217
+ val context = LocalContext.current
218
+ if (darkTheme) dynamicDarkColorScheme(context)
219
+ else dynamicLightColorScheme(context)
220
+ } else {
221
+ if (darkTheme) DarkColorScheme else LightColorScheme
222
+ }
223
+
224
+ // Custom color scheme
225
+ private val LightColorScheme = lightColorScheme(
226
+ primary = Color(0xFF6750A4),
227
+ onPrimary = Color.White,
228
+ primaryContainer = Color(0xFFEADDFF),
229
+ onPrimaryContainer = Color(0xFF21005D),
230
+ secondary = Color(0xFF625B71),
231
+ onSecondary = Color.White,
232
+ tertiary = Color(0xFF7D5260),
233
+ onTertiary = Color.White,
234
+ surface = Color(0xFFFFFBFE),
235
+ onSurface = Color(0xFF1C1B1F),
236
+ )
237
+ ```
238
+
239
+ **Typography:**
240
+
241
+ ```kotlin
242
+ val AppTypography = Typography(
243
+ displayLarge = TextStyle(
244
+ fontFamily = FontFamily.Default,
245
+ fontWeight = FontWeight.Normal,
246
+ fontSize = 57.sp,
247
+ lineHeight = 64.sp
248
+ ),
249
+ headlineMedium = TextStyle(
250
+ fontFamily = FontFamily.Default,
251
+ fontWeight = FontWeight.Normal,
252
+ fontSize = 28.sp,
253
+ lineHeight = 36.sp
254
+ ),
255
+ titleLarge = TextStyle(
256
+ fontFamily = FontFamily.Default,
257
+ fontWeight = FontWeight.Normal,
258
+ fontSize = 22.sp,
259
+ lineHeight = 28.sp
260
+ ),
261
+ bodyLarge = TextStyle(
262
+ fontFamily = FontFamily.Default,
263
+ fontWeight = FontWeight.Normal,
264
+ fontSize = 16.sp,
265
+ lineHeight = 24.sp
266
+ ),
267
+ labelMedium = TextStyle(
268
+ fontFamily = FontFamily.Default,
269
+ fontWeight = FontWeight.Medium,
270
+ fontSize = 12.sp,
271
+ lineHeight = 16.sp
272
+ )
273
+ )
274
+ ```
275
+
276
+ ### 5. Component Examples
277
+
278
+ **Cards:**
279
+
280
+ ```kotlin
281
+ @Composable
282
+ fun FeatureCard(
283
+ title: String,
284
+ description: String,
285
+ imageUrl: String,
286
+ onClick: () -> Unit
287
+ ) {
288
+ Card(
289
+ onClick = onClick,
290
+ modifier = Modifier.fillMaxWidth(),
291
+ shape = RoundedCornerShape(16.dp),
292
+ colors = CardDefaults.cardColors(
293
+ containerColor = MaterialTheme.colorScheme.surfaceVariant
294
+ )
295
+ ) {
296
+ Column {
297
+ AsyncImage(
298
+ model = imageUrl,
299
+ contentDescription = null,
300
+ modifier = Modifier
301
+ .fillMaxWidth()
302
+ .height(180.dp),
303
+ contentScale = ContentScale.Crop
304
+ )
305
+ Column(modifier = Modifier.padding(16.dp)) {
306
+ Text(
307
+ text = title,
308
+ style = MaterialTheme.typography.titleMedium
309
+ )
310
+ Spacer(modifier = Modifier.height(8.dp))
311
+ Text(
312
+ text = description,
313
+ style = MaterialTheme.typography.bodyMedium,
314
+ color = MaterialTheme.colorScheme.onSurfaceVariant
315
+ )
316
+ }
317
+ }
318
+ }
319
+ }
320
+ ```
321
+
322
+ **Buttons:**
323
+
324
+ ```kotlin
325
+ // Filled button (primary action)
326
+ Button(onClick = { }) {
327
+ Text("Continue")
328
+ }
329
+
330
+ // Filled tonal button (secondary action)
331
+ FilledTonalButton(onClick = { }) {
332
+ Icon(Icons.Default.Add, null)
333
+ Spacer(Modifier.width(8.dp))
334
+ Text("Add Item")
335
+ }
336
+
337
+ // Outlined button
338
+ OutlinedButton(onClick = { }) {
339
+ Text("Cancel")
340
+ }
341
+
342
+ // Text button
343
+ TextButton(onClick = { }) {
344
+ Text("Learn More")
345
+ }
346
+
347
+ // FAB
348
+ FloatingActionButton(
349
+ onClick = { },
350
+ containerColor = MaterialTheme.colorScheme.primaryContainer,
351
+ contentColor = MaterialTheme.colorScheme.onPrimaryContainer
352
+ ) {
353
+ Icon(Icons.Default.Add, contentDescription = "Add")
354
+ }
355
+ ```
356
+
357
+ ## Quick Start Component
358
+
359
+ ```kotlin
360
+ @Composable
361
+ fun ItemListCard(
362
+ item: Item,
363
+ onItemClick: () -> Unit,
364
+ modifier: Modifier = Modifier
365
+ ) {
366
+ Card(
367
+ onClick = onItemClick,
368
+ modifier = modifier.fillMaxWidth(),
369
+ shape = RoundedCornerShape(12.dp)
370
+ ) {
371
+ Row(
372
+ modifier = Modifier
373
+ .padding(16.dp)
374
+ .fillMaxWidth(),
375
+ verticalAlignment = Alignment.CenterVertically
376
+ ) {
377
+ Box(
378
+ modifier = Modifier
379
+ .size(48.dp)
380
+ .clip(CircleShape)
381
+ .background(MaterialTheme.colorScheme.primaryContainer),
382
+ contentAlignment = Alignment.Center
383
+ ) {
384
+ Icon(
385
+ imageVector = Icons.Default.Star,
386
+ contentDescription = null,
387
+ tint = MaterialTheme.colorScheme.onPrimaryContainer
388
+ )
389
+ }
390
+
391
+ Spacer(modifier = Modifier.width(16.dp))
392
+
393
+ Column(modifier = Modifier.weight(1f)) {
394
+ Text(
395
+ text = item.title,
396
+ style = MaterialTheme.typography.titleMedium
397
+ )
398
+ Text(
399
+ text = item.subtitle,
400
+ style = MaterialTheme.typography.bodyMedium,
401
+ color = MaterialTheme.colorScheme.onSurfaceVariant
402
+ )
403
+ }
404
+
405
+ Icon(
406
+ imageVector = Icons.Default.ChevronRight,
407
+ contentDescription = null,
408
+ tint = MaterialTheme.colorScheme.onSurfaceVariant
409
+ )
410
+ }
411
+ }
412
+ }
413
+ ```
414
+
415
+ ## Best Practices
416
+
417
+ 1. **Use Material Theme**: Access colors via `MaterialTheme.colorScheme` for automatic dark mode support
418
+ 2. **Support Dynamic Color**: Enable dynamic color on Android 12+ for personalization
419
+ 3. **Adaptive Layouts**: Use `WindowSizeClass` for responsive designs
420
+ 4. **Content Descriptions**: Add `contentDescription` to all interactive elements
421
+ 5. **Touch Targets**: Minimum 48dp touch targets for accessibility
422
+ 6. **State Hoisting**: Hoist state to make components reusable and testable
423
+ 7. **Remember Properly**: Use `remember` and `rememberSaveable` appropriately
424
+ 8. **Preview Annotations**: Add `@Preview` with different configurations
425
+
426
+ ## Common Issues
427
+
428
+ - **Recomposition Issues**: Avoid passing unstable lambdas; use `remember`
429
+ - **State Loss**: Use `rememberSaveable` for configuration changes
430
+ - **Performance**: Use `LazyColumn` instead of `Column` for long lists
431
+ - **Theme Leaks**: Ensure `MaterialTheme` wraps all composables
432
+ - **Navigation Crashes**: Handle back press and deep links properly
433
+ - **Memory Leaks**: Cancel coroutines in `DisposableEffect`