devendra-skill-package 1.0.2

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 (223) hide show
  1. package/.github/skills/boiler-project-generator/SKILL.md +103 -0
  2. package/.github/skills/boiler-project-generator/assets/templates/android/README.md +3 -0
  3. package/.github/skills/boiler-project-generator/assets/templates/angular/README.md +3 -0
  4. package/.github/skills/boiler-project-generator/assets/templates/flutter/README.md +3 -0
  5. package/.github/skills/boiler-project-generator/assets/templates/ios/README.md +3 -0
  6. package/.github/skills/boiler-project-generator/assets/templates/react/README.md +3 -0
  7. package/.github/skills/boiler-project-generator/assets/templates/react-native/README.md +3 -0
  8. package/.github/skills/boiler-project-generator/assets/templates/react-native/api-setup.ts +76 -0
  9. package/.github/skills/boiler-project-generator/assets/templates/react-native/component-primary-button.tsx +29 -0
  10. package/.github/skills/boiler-project-generator/assets/templates/react-native/env-config.env +4 -0
  11. package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-auth-screen.tsx +45 -0
  12. package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-dashboard-screen.tsx +45 -0
  13. package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-profile-screen.tsx +45 -0
  14. package/.github/skills/boiler-project-generator/assets/templates/react-native/hook-use-app-boot.ts +11 -0
  15. package/.github/skills/boiler-project-generator/assets/templates/react-native/navigation-setup.tsx +25 -0
  16. package/.github/skills/boiler-project-generator/assets/templates/react-native/project-structure.md +24 -0
  17. package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-hooks.ts +5 -0
  18. package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-session-slice.ts +29 -0
  19. package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-store.ts +15 -0
  20. package/.github/skills/boiler-project-generator/assets/templates/react-native/theme-index.ts +23 -0
  21. package/.github/skills/boiler-project-generator/assets/templates/react-native/utils-helpers.ts +7 -0
  22. package/.github/skills/boiler-project-generator/metadata.yaml +29 -0
  23. package/.github/skills/boiler-project-generator/references/android.md +19 -0
  24. package/.github/skills/boiler-project-generator/references/angular.md +14 -0
  25. package/.github/skills/boiler-project-generator/references/flutter.md +17 -0
  26. package/.github/skills/boiler-project-generator/references/ios.md +17 -0
  27. package/.github/skills/boiler-project-generator/references/react-native.md +103 -0
  28. package/.github/skills/boiler-project-generator/references/react.md +17 -0
  29. package/.github/skills/boiler-project-generator/scripts/angular.js +43 -0
  30. package/.github/skills/boiler-project-generator/scripts/generate-project.mjs +107 -0
  31. package/.github/skills/boiler-project-generator/scripts/init.js +105 -0
  32. package/.github/skills/boiler-project-generator/scripts/react-native.js +1041 -0
  33. package/.github/skills/boiler-project-generator/scripts/react.js +32 -0
  34. package/.github/skills/clean-architecture-generator/SKILL.md +235 -0
  35. package/.github/skills/clean-architecture-generator/references/architecture-core.md +126 -0
  36. package/.github/skills/clean-architecture-generator/references/platform-angular.md +374 -0
  37. package/.github/skills/clean-architecture-generator/references/platform-flutter.md +366 -0
  38. package/.github/skills/clean-architecture-generator/references/platform-react-native.md +590 -0
  39. package/.github/skills/clean-architecture-generator/references/platform-react.md +261 -0
  40. package/.github/skills/code-test-coverage-analyzer/SKILL.md +1358 -0
  41. package/.github/skills/code-test-coverage-analyzer/assets/config-questionnaire.md +118 -0
  42. package/.github/skills/code-test-coverage-analyzer/assets/conflict-resolution-protocol.md +99 -0
  43. package/.github/skills/code-test-coverage-analyzer/assets/coverage-calculation-rules.md +294 -0
  44. package/.github/skills/code-test-coverage-analyzer/assets/multi-strategy-search.md +145 -0
  45. package/.github/skills/code-test-coverage-analyzer/assets/output-file-contracts.md +651 -0
  46. package/.github/skills/code-test-coverage-analyzer/assets/status-definitions.md +273 -0
  47. package/.github/skills/code-test-coverage-analyzer/examples/example-invocation.md +208 -0
  48. package/.github/skills/code-test-coverage-analyzer/references/android-patterns.md +229 -0
  49. package/.github/skills/code-test-coverage-analyzer/references/angular-patterns.md +177 -0
  50. package/.github/skills/code-test-coverage-analyzer/references/backend-patterns.md +383 -0
  51. package/.github/skills/code-test-coverage-analyzer/references/flutter-patterns.md +254 -0
  52. package/.github/skills/code-test-coverage-analyzer/references/ios-patterns.md +228 -0
  53. package/.github/skills/code-test-coverage-analyzer/references/react-native-patterns.md +431 -0
  54. package/.github/skills/code-test-coverage-analyzer/references/react-patterns.md +206 -0
  55. package/.github/skills/code-test-coverage-analyzer/scripts/detect-platform.ps1 +261 -0
  56. package/.github/skills/code-test-coverage-analyzer/scripts/scan-repository.ps1 +242 -0
  57. package/.github/skills/code-test-coverage-analyzer/templates/brd-compliance-row.md +107 -0
  58. package/.github/skills/code-test-coverage-analyzer/templates/test-case-row.md +130 -0
  59. package/.github/skills/code-test-coverage-analyzer/templates/user-story-compliance-row.md +170 -0
  60. package/.github/skills/custom-font-integrator/SKILL.md +373 -0
  61. package/.github/skills/custom-font-integrator/assets/FontTestScreen.js +150 -0
  62. package/.github/skills/custom-font-integrator/references/example-info-plist.xml +21 -0
  63. package/.github/skills/custom-font-integrator/scripts/setup-fonts.sh +99 -0
  64. package/.github/skills/encryption-decryption-utility/Instructions.md +282 -0
  65. package/.github/skills/encryption-decryption-utility/README.md +222 -0
  66. package/.github/skills/encryption-decryption-utility/SKILL.md +645 -0
  67. package/.github/skills/encryption-decryption-utility/assets/encryption-config-template.json +13 -0
  68. package/.github/skills/encryption-decryption-utility/assets/platform-matrix.json +180 -0
  69. package/.github/skills/encryption-decryption-utility/metadata.yaml +51 -0
  70. package/.github/skills/encryption-decryption-utility/references/android-crypto.md +157 -0
  71. package/.github/skills/encryption-decryption-utility/references/angular-crypto.md +130 -0
  72. package/.github/skills/encryption-decryption-utility/references/approach-1-webcrypto.md +95 -0
  73. package/.github/skills/encryption-decryption-utility/references/approach-2-rsa-aes-cbc.md +111 -0
  74. package/.github/skills/encryption-decryption-utility/references/approach-3-aes-sharedkey.md +114 -0
  75. package/.github/skills/encryption-decryption-utility/references/architecture.md +233 -0
  76. package/.github/skills/encryption-decryption-utility/references/backend-alignment.md +506 -0
  77. package/.github/skills/encryption-decryption-utility/references/dependency-guidance.md +234 -0
  78. package/.github/skills/encryption-decryption-utility/references/ec-implementation.md +832 -0
  79. package/.github/skills/encryption-decryption-utility/references/error-handling-playbook.md +234 -0
  80. package/.github/skills/encryption-decryption-utility/references/flutter-crypto.md +105 -0
  81. package/.github/skills/encryption-decryption-utility/references/ios-crypto.md +338 -0
  82. package/.github/skills/encryption-decryption-utility/references/native-rsa-implementation.md +373 -0
  83. package/.github/skills/encryption-decryption-utility/references/node-crypto.md +86 -0
  84. package/.github/skills/encryption-decryption-utility/references/react-crypto.md +105 -0
  85. package/.github/skills/encryption-decryption-utility/references/react-native-crypto.md +1001 -0
  86. package/.github/skills/encryption-decryption-utility/references/react-web-crypto.md +668 -0
  87. package/.github/skills/encryption-decryption-utility/references/security-checklist.md +176 -0
  88. package/.github/skills/encryption-decryption-utility/references/web-crypto.md +74 -0
  89. package/.github/skills/encryption-decryption-utility/scripts/detect.js +128 -0
  90. package/.github/skills/encryption-decryption-utility/scripts/install.js +1713 -0
  91. package/.github/skills/encryption-decryption-utility/scripts/setup.js +800 -0
  92. package/.github/skills/encryption-decryption-utility/template.md +241 -0
  93. package/.github/skills/encryption-decryption-utility/templates/config-questionnaire.md +467 -0
  94. package/.github/skills/encryption-decryption-utility/templates/delivery-checklist.md +206 -0
  95. package/.github/skills/encryption-decryption-utility/templates/implementation-plan.md +304 -0
  96. package/.github/skills/feature-generator/SKILL.MD +2741 -0
  97. package/.github/skills/feature-generator/assets/fingerprint-schema.json +385 -0
  98. package/.github/skills/feature-generator/assets/spec-template.md +172 -0
  99. package/.github/skills/feature-generator/assets/transform-rules.json +82 -0
  100. package/.github/skills/feature-generator/references/api-envelope-patterns.md +327 -0
  101. package/.github/skills/feature-generator/references/screen-logic-patterns.md +399 -0
  102. package/.github/skills/feature-generator/references/state-library-patterns.md +464 -0
  103. package/.github/skills/figma-ui-mapper/README.md +34 -0
  104. package/.github/skills/figma-ui-mapper/SKILL.md +101 -0
  105. package/.github/skills/figma-ui-mapper/assets/templates/component-map-template.md +30 -0
  106. package/.github/skills/figma-ui-mapper/assets/templates/generation-report-template.md +49 -0
  107. package/.github/skills/figma-ui-mapper/metadata.yaml +22 -0
  108. package/.github/skills/figma-ui-mapper/references/android.md +11 -0
  109. package/.github/skills/figma-ui-mapper/references/angular.md +18 -0
  110. package/.github/skills/figma-ui-mapper/references/capacitor.md +18 -0
  111. package/.github/skills/figma-ui-mapper/references/common.md +23 -0
  112. package/.github/skills/figma-ui-mapper/references/expo.md +18 -0
  113. package/.github/skills/figma-ui-mapper/references/flutter.md +18 -0
  114. package/.github/skills/figma-ui-mapper/references/frameworks/angular/rules.md +23 -0
  115. package/.github/skills/figma-ui-mapper/references/frameworks/capacitor/rules.md +23 -0
  116. package/.github/skills/figma-ui-mapper/references/frameworks/expo/rules.md +23 -0
  117. package/.github/skills/figma-ui-mapper/references/frameworks/flutter/rules.md +23 -0
  118. package/.github/skills/figma-ui-mapper/references/frameworks/ionic/rules.md +23 -0
  119. package/.github/skills/figma-ui-mapper/references/frameworks/kotlin-multiplatform/rules.md +23 -0
  120. package/.github/skills/figma-ui-mapper/references/frameworks/native-android/rules.md +23 -0
  121. package/.github/skills/figma-ui-mapper/references/frameworks/native-ios/rules.md +23 -0
  122. package/.github/skills/figma-ui-mapper/references/frameworks/next/rules.md +23 -0
  123. package/.github/skills/figma-ui-mapper/references/frameworks/nuxt/rules.md +23 -0
  124. package/.github/skills/figma-ui-mapper/references/frameworks/react/rules.md +19 -0
  125. package/.github/skills/figma-ui-mapper/references/frameworks/react-native/rules.md +23 -0
  126. package/.github/skills/figma-ui-mapper/references/frameworks/svelte/rules.md +23 -0
  127. package/.github/skills/figma-ui-mapper/references/frameworks/vue/rules.md +23 -0
  128. package/.github/skills/figma-ui-mapper/references/ionic.md +18 -0
  129. package/.github/skills/figma-ui-mapper/references/ios.md +11 -0
  130. package/.github/skills/figma-ui-mapper/references/kotlin-multiplatform.md +18 -0
  131. package/.github/skills/figma-ui-mapper/references/native-android.md +18 -0
  132. package/.github/skills/figma-ui-mapper/references/native-ios.md +18 -0
  133. package/.github/skills/figma-ui-mapper/references/next.md +18 -0
  134. package/.github/skills/figma-ui-mapper/references/nuxt.md +18 -0
  135. package/.github/skills/figma-ui-mapper/references/react-figma-guideline.md +21 -0
  136. package/.github/skills/figma-ui-mapper/references/react-native.md +18 -0
  137. package/.github/skills/figma-ui-mapper/references/react.md +18 -0
  138. package/.github/skills/figma-ui-mapper/references/script-usage.md +46 -0
  139. package/.github/skills/figma-ui-mapper/references/svelte.md +18 -0
  140. package/.github/skills/figma-ui-mapper/references/vue.md +18 -0
  141. package/.github/skills/figma-ui-mapper/references/workflow.md +74 -0
  142. package/.github/skills/figma-ui-mapper/scripts/generate-page-through-figma.js +635 -0
  143. package/.github/skills/figma-ui-mapper/scripts/generate-react-page-through-figma.js +4 -0
  144. package/.github/skills/frontend-task-breakdown/SKILL.md +734 -0
  145. package/.github/skills/md-file-converter/SKILL.md +291 -0
  146. package/.github/skills/md-file-converter/config/formats.json +114 -0
  147. package/.github/skills/md-file-converter/extractors/extract-docx.sh +120 -0
  148. package/.github/skills/md-file-converter/extractors/extract-eml.py +108 -0
  149. package/.github/skills/md-file-converter/extractors/extract-pdf.sh +97 -0
  150. package/.github/skills/md-file-converter/extractors/extract-pptx.py +143 -0
  151. package/.github/skills/md-file-converter/extractors/extract-xlsx.py +175 -0
  152. package/.github/skills/md-file-converter/scripts/check-tools.sh +47 -0
  153. package/.github/skills/md-file-converter/scripts/extract-archive.sh +83 -0
  154. package/.github/skills/md-file-converter/scripts/extract-ocr.sh +77 -0
  155. package/.github/skills/md-file-converter/scripts/get-metadata.sh +57 -0
  156. package/.github/skills/md-file-converter/templates/output.md +73 -0
  157. package/.github/skills/md-file-converter/templates/unsupported-object.md +6 -0
  158. package/.github/skills/mockAPI-contract-generator/SKILL.md +607 -0
  159. package/.github/skills/test-case-validator/CHANGELOG.md +155 -0
  160. package/.github/skills/test-case-validator/CONFIGURATION.md +130 -0
  161. package/.github/skills/test-case-validator/EXAMPLES.md +50 -0
  162. package/.github/skills/test-case-validator/QUALITY_SCORING.md +98 -0
  163. package/.github/skills/test-case-validator/README.md +111 -0
  164. package/.github/skills/test-case-validator/REPORT_TEMPLATE.md +116 -0
  165. package/.github/skills/test-case-validator/SKILL.md +209 -0
  166. package/.github/skills/test-case-validator/SYSTEM_PROMPT.md +127 -0
  167. package/.github/skills/test-case-validator/TRACEABILITY_ENGINE.md +152 -0
  168. package/.github/skills/test-case-validator/VALIDATION_RULES.md +411 -0
  169. package/.github/skills/test-case-validator/config/default.config.yaml +62 -0
  170. package/.github/skills/test-case-validator/docs/ARCHITECTURE.md +66 -0
  171. package/.github/skills/test-case-validator/docs/EXTENDING.md +85 -0
  172. package/.github/skills/test-case-validator/docs/FAQ.md +88 -0
  173. package/.github/skills/test-case-validator/docs/VERSIONING.md +55 -0
  174. package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-brd.md +43 -0
  175. package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-test-cases.csv +9 -0
  176. package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-user-story.md +29 -0
  177. package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/output-report.md +303 -0
  178. package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/input-spec.md +43 -0
  179. package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/input-test-files-index.md +56 -0
  180. package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/output-report.md +274 -0
  181. package/.github/skills/test-case-validator/prompts/00-applicability-resolution.md +61 -0
  182. package/.github/skills/test-case-validator/prompts/01-extraction-user-story.md +58 -0
  183. package/.github/skills/test-case-validator/prompts/02-extraction-brd.md +64 -0
  184. package/.github/skills/test-case-validator/prompts/03-extraction-test-cases.md +92 -0
  185. package/.github/skills/test-case-validator/prompts/04-traceability-matrix.md +41 -0
  186. package/.github/skills/test-case-validator/prompts/05-coverage-analysis.md +46 -0
  187. package/.github/skills/test-case-validator/prompts/06-missing-scenario-detection.md +32 -0
  188. package/.github/skills/test-case-validator/prompts/07-duplicate-detection.md +36 -0
  189. package/.github/skills/test-case-validator/prompts/08-risk-analysis.md +39 -0
  190. package/.github/skills/test-case-validator/prompts/09-gated-wiring-validation.md +53 -0
  191. package/.github/skills/test-case-validator/prompts/10-observation-report.md +56 -0
  192. package/.github/skills/test-case-validator/prompts/11-final-report-assembly.md +57 -0
  193. package/.github/skills/test-case-validator/templates/coverage-table.md +25 -0
  194. package/.github/skills/test-case-validator/templates/executive-summary.md +38 -0
  195. package/.github/skills/test-case-validator/templates/final-summary-block.md +87 -0
  196. package/.github/skills/test-case-validator/templates/observation-entry.md +41 -0
  197. package/.github/skills/test-case-validator/templates/rtm-row.md +25 -0
  198. package/.github/skills/validation-engine-builder/README.md +50 -0
  199. package/.github/skills/validation-engine-builder/SKILL.md +241 -0
  200. package/.github/skills/validation-engine-builder/references/core.md +158 -0
  201. package/.github/skills/validation-engine-builder/references/platform-angular.md +166 -0
  202. package/.github/skills/validation-engine-builder/references/platform-flutter.md +118 -0
  203. package/.github/skills/validation-engine-builder/references/platform-react-native.md +170 -0
  204. package/.github/skills/validation-engine-builder/references/platform-react.md +94 -0
  205. package/.github/skills/validation-engine-builder/scripts/apply-to-project.js +80 -0
  206. package/.github/skills/validation-engine-builder/scripts/generate-angular.js +271 -0
  207. package/.github/skills/validation-engine-builder/scripts/generate-flutter.js +298 -0
  208. package/.github/skills/validation-engine-builder/scripts/generate-react-native.js +217 -0
  209. package/.github/skills/validation-engine-builder/scripts/generate-react.js +163 -0
  210. package/.github/skills/validation-engine-builder/scripts/install-deps.js +53 -0
  211. package/.github/skills/validation-engine-builder/scripts/shared/detect-platform.js +68 -0
  212. package/.github/skills/validation-engine-builder/scripts/shared/npm-deps.js +103 -0
  213. package/.github/skills/validation-engine-builder/scripts/shared/rhf-hook.js +43 -0
  214. package/.github/skills/validation-engine-builder/scripts/shared/ts-messages-regex.js +62 -0
  215. package/.github/skills/validation-engine-builder/scripts/shared/util.js +44 -0
  216. package/.github/skills/validation-engine-builder/scripts/shared/yup-schemas.js +80 -0
  217. package/.github/skills/validation-engine-builder/template.md +73 -0
  218. package/.github/skills/validation-engine-builder/templates/messages.json +22 -0
  219. package/.github/skills/validation-engine-builder/templates/regex.json +16 -0
  220. package/.github/skills/validation-engine-builder/templates/schemas.json +48 -0
  221. package/bin/index.js +145 -0
  222. package/package.json +22 -0
  223. package/readme.md +0 -0
@@ -0,0 +1,11 @@
1
+ # android Reference
2
+
3
+ Compatibility alias only.
4
+
5
+ Use native-android as canonical framework ID.
6
+ If a caller requests android, map it to native-android and load:
7
+ - references/native-android.md
8
+ - references/frameworks/native-android/rules.md
9
+
10
+ ## Validation
11
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # angular Reference
2
+
3
+ Load this file only when detected framework is angular.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # capacitor Reference
2
+
3
+ Load this file only when detected framework is capacitor.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,23 @@
1
+ # Common Reference
2
+
3
+ Use this reference for all frameworks.
4
+
5
+ ## Shared Requirements
6
+ - Follow component-first generation order.
7
+ - Extract tokens before styling.
8
+ - Build coverage map before implementation.
9
+ - Run accessibility and screenshot validation gates.
10
+ - Produce report and artifact outputs.
11
+
12
+ ## Shared Detection Signals
13
+ - package.json
14
+ - pubspec.yaml
15
+ - angular.json
16
+ - next.config.*
17
+ - nuxt.config.*
18
+ - App.tsx
19
+ - main.dart
20
+ - android/
21
+ - ios/
22
+ - build.gradle
23
+ - Podfile
@@ -0,0 +1,18 @@
1
+ # expo Reference
2
+
3
+ Load this file only when detected framework is expo.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # flutter Reference
2
+
3
+ Load this file only when detected framework is flutter.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,23 @@
1
+ # angular Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for angular
11
+ - styling approach: follow project-native styling conventions for angular
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for angular
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for angular
18
+ - naming conventions: framework-standard naming style for angular
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for angular.
@@ -0,0 +1,23 @@
1
+ # capacitor Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for capacitor
11
+ - styling approach: follow project-native styling conventions for capacitor
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for capacitor
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for capacitor
18
+ - naming conventions: framework-standard naming style for capacitor
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for capacitor.
@@ -0,0 +1,23 @@
1
+ # expo Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for expo
11
+ - styling approach: follow project-native styling conventions for expo
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for expo
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for expo
18
+ - naming conventions: framework-standard naming style for expo
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for expo.
@@ -0,0 +1,23 @@
1
+ # flutter Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for flutter
11
+ - styling approach: follow project-native styling conventions for flutter
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for flutter
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for flutter
18
+ - naming conventions: framework-standard naming style for flutter
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for flutter.
@@ -0,0 +1,23 @@
1
+ # ionic Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for ionic
11
+ - styling approach: follow project-native styling conventions for ionic
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for ionic
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for ionic
18
+ - naming conventions: framework-standard naming style for ionic
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for ionic.
@@ -0,0 +1,23 @@
1
+ # kotlin-multiplatform Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for kotlin-multiplatform
11
+ - styling approach: follow project-native styling conventions for kotlin-multiplatform
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for kotlin-multiplatform
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for kotlin-multiplatform
18
+ - naming conventions: framework-standard naming style for kotlin-multiplatform
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for kotlin-multiplatform.
@@ -0,0 +1,23 @@
1
+ # native-android Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for native-android
11
+ - styling approach: follow project-native styling conventions for native-android
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for native-android
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for native-android
18
+ - naming conventions: framework-standard naming style for native-android
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for native-android.
@@ -0,0 +1,23 @@
1
+ # native-ios Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for native-ios
11
+ - styling approach: follow project-native styling conventions for native-ios
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for native-ios
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for native-ios
18
+ - naming conventions: framework-standard naming style for native-ios
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for native-ios.
@@ -0,0 +1,23 @@
1
+ # next Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for next
11
+ - styling approach: follow project-native styling conventions for next
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for next
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for next
18
+ - naming conventions: framework-standard naming style for next
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for next.
@@ -0,0 +1,23 @@
1
+ # nuxt Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for nuxt
11
+ - styling approach: follow project-native styling conventions for nuxt
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for nuxt
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for nuxt
18
+ - naming conventions: framework-standard naming style for nuxt
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for nuxt.
@@ -0,0 +1,19 @@
1
+ # React Adapter Rules
2
+
3
+ Use this file as the React adapter entrypoint.
4
+
5
+ - Canonical rule source: ../../react-figma-guideline.md (Rules 1-8).
6
+ - Workflow contract source: ../../workflow.md.
7
+ - Backward compatibility requirement: React output keeps established file naming and command compatibility.
8
+
9
+ Adapter contract:
10
+ - component generation: React TSX functional components
11
+ - styling approach: Record<string, React.CSSProperties> in PageNameStyle.ts
12
+ - asset handling: local imports from src/assets/images and src/assets/svg
13
+ - navigation: react-router-dom patterns
14
+ - responsive layout: zoom-resilient Flexbox/Grid mapping from Figma auto-layout
15
+ - accessibility: enforce workflow Step 6.2 checks plus React guideline rules
16
+ - reusable component detection: component-map-first, then similarity reuse
17
+ - folder conventions: PageName/PageName.tsx, PageNameStyle.ts, PageNameTokens.ts
18
+ - naming conventions: PascalCase page/component names
19
+ - testing conventions: workflow Step 6.4 screenshot loop and workflow Step 6.5 QA checklist
@@ -0,0 +1,23 @@
1
+ # react-native Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for react-native
11
+ - styling approach: follow project-native styling conventions for react-native
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for react-native
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for react-native
18
+ - naming conventions: framework-standard naming style for react-native
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for react-native.
@@ -0,0 +1,23 @@
1
+ # svelte Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for svelte
11
+ - styling approach: follow project-native styling conventions for svelte
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for svelte
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for svelte
18
+ - naming conventions: framework-standard naming style for svelte
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for svelte.
@@ -0,0 +1,23 @@
1
+ # vue Adapter Rules
2
+
3
+ This adapter extends the existing figma-ui-mapper workflow without removing or skipping any phase, report, validation step, screenshot loop, coverage map, accessibility gate, or QA gate.
4
+
5
+ Mandatory sources:
6
+ - Workflow: ../../workflow.md
7
+ - Adapter selection: framework auto-detection from repository files
8
+
9
+ Adapter contract:
10
+ - component generation: framework-native component/widget/view generation for vue
11
+ - styling approach: follow project-native styling conventions for vue
12
+ - asset handling: local assets only; no temporary localhost/CDN URLs in final code
13
+ - navigation: framework-native routing/navigation for vue
14
+ - responsive layout: preserve Figma intent with adaptive layout rules
15
+ - accessibility: enforce framework-native a11y + workflow Step 6.5 requirements
16
+ - reusable component detection: component-map-first reuse matching existing project components
17
+ - folder conventions: follow detected project structure for vue
18
+ - naming conventions: framework-standard naming style for vue
19
+ - testing conventions: keep workflow Step 6.4 screenshot comparison loop and workflow Step 6.5 QA checks
20
+
21
+ Output and reporting:
22
+ - Preserve existing report structure and append framework metadata fields.
23
+ - Generate only with the active adapter loaded for vue.
@@ -0,0 +1,18 @@
1
+ # ionic Reference
2
+
3
+ Load this file only when detected framework is ionic.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,11 @@
1
+ # ios Reference
2
+
3
+ Compatibility alias only.
4
+
5
+ Use native-ios as canonical framework ID.
6
+ If a caller requests ios, map it to native-ios and load:
7
+ - references/native-ios.md
8
+ - references/frameworks/native-ios/rules.md
9
+
10
+ ## Validation
11
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # kotlin-multiplatform Reference
2
+
3
+ Load this file only when detected framework is kotlin-multiplatform.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # android Reference
2
+
3
+ Load this file only when detected framework is native-android.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # ios Reference
2
+
3
+ Load this file only when detected framework is native-ios.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # next Reference
2
+
3
+ Load this file only when detected framework is next.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # nuxt Reference
2
+
3
+ Load this file only when detected framework is nuxt.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,21 @@
1
+ # React Guideline
2
+
3
+ This file is the React-specific reference for figma-ui-mapper.
4
+
5
+ ## Scope
6
+ Use this file only when detected framework is react.
7
+
8
+ ## Rules
9
+ 1. Use semantic HTML for layout and interactive controls.
10
+ 2. Use token-driven styles for color, spacing, typography, radius, and shadow.
11
+ 3. Keep page-level styles in page style files.
12
+ 4. Reuse existing components only when design and behavior are equivalent.
13
+ 5. Keep assets local in source files; do not keep temporary localhost URLs.
14
+ 6. Enforce accessibility checks before completion.
15
+ 7. Enforce screenshot comparison loop before completion.
16
+ 8. Enforce final QA checklist before output delivery.
17
+
18
+ ## Output Expectations
19
+ - Component-first generation remains mandatory.
20
+ - Coverage map and validation gates remain mandatory.
21
+ - Report includes framework metadata, validation summary, and generation summary.
@@ -0,0 +1,18 @@
1
+ # react-native Reference
2
+
3
+ Load this file only when detected framework is react-native.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.
@@ -0,0 +1,18 @@
1
+ # react Reference
2
+
3
+ Load this file only when detected framework is react.
4
+
5
+ ## Adapter Responsibilities
6
+ - component generation
7
+ - styling approach
8
+ - asset handling
9
+ - navigation
10
+ - responsive layout
11
+ - accessibility checks
12
+ - reusable component detection
13
+ - folder conventions
14
+ - naming conventions
15
+ - testing conventions
16
+
17
+ ## Validation
18
+ All workflow validation gates remain mandatory.