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.
- package/.github/skills/boiler-project-generator/SKILL.md +103 -0
- package/.github/skills/boiler-project-generator/assets/templates/android/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/angular/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/flutter/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/ios/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/react/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/README.md +3 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/api-setup.ts +76 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/component-primary-button.tsx +29 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/env-config.env +4 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-auth-screen.tsx +45 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-dashboard-screen.tsx +45 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/feature-profile-screen.tsx +45 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/hook-use-app-boot.ts +11 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/navigation-setup.tsx +25 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/project-structure.md +24 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-hooks.ts +5 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-session-slice.ts +29 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/redux-store.ts +15 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/theme-index.ts +23 -0
- package/.github/skills/boiler-project-generator/assets/templates/react-native/utils-helpers.ts +7 -0
- package/.github/skills/boiler-project-generator/metadata.yaml +29 -0
- package/.github/skills/boiler-project-generator/references/android.md +19 -0
- package/.github/skills/boiler-project-generator/references/angular.md +14 -0
- package/.github/skills/boiler-project-generator/references/flutter.md +17 -0
- package/.github/skills/boiler-project-generator/references/ios.md +17 -0
- package/.github/skills/boiler-project-generator/references/react-native.md +103 -0
- package/.github/skills/boiler-project-generator/references/react.md +17 -0
- package/.github/skills/boiler-project-generator/scripts/angular.js +43 -0
- package/.github/skills/boiler-project-generator/scripts/generate-project.mjs +107 -0
- package/.github/skills/boiler-project-generator/scripts/init.js +105 -0
- package/.github/skills/boiler-project-generator/scripts/react-native.js +1041 -0
- package/.github/skills/boiler-project-generator/scripts/react.js +32 -0
- package/.github/skills/clean-architecture-generator/SKILL.md +235 -0
- package/.github/skills/clean-architecture-generator/references/architecture-core.md +126 -0
- package/.github/skills/clean-architecture-generator/references/platform-angular.md +374 -0
- package/.github/skills/clean-architecture-generator/references/platform-flutter.md +366 -0
- package/.github/skills/clean-architecture-generator/references/platform-react-native.md +590 -0
- package/.github/skills/clean-architecture-generator/references/platform-react.md +261 -0
- package/.github/skills/code-test-coverage-analyzer/SKILL.md +1358 -0
- package/.github/skills/code-test-coverage-analyzer/assets/config-questionnaire.md +118 -0
- package/.github/skills/code-test-coverage-analyzer/assets/conflict-resolution-protocol.md +99 -0
- package/.github/skills/code-test-coverage-analyzer/assets/coverage-calculation-rules.md +294 -0
- package/.github/skills/code-test-coverage-analyzer/assets/multi-strategy-search.md +145 -0
- package/.github/skills/code-test-coverage-analyzer/assets/output-file-contracts.md +651 -0
- package/.github/skills/code-test-coverage-analyzer/assets/status-definitions.md +273 -0
- package/.github/skills/code-test-coverage-analyzer/examples/example-invocation.md +208 -0
- package/.github/skills/code-test-coverage-analyzer/references/android-patterns.md +229 -0
- package/.github/skills/code-test-coverage-analyzer/references/angular-patterns.md +177 -0
- package/.github/skills/code-test-coverage-analyzer/references/backend-patterns.md +383 -0
- package/.github/skills/code-test-coverage-analyzer/references/flutter-patterns.md +254 -0
- package/.github/skills/code-test-coverage-analyzer/references/ios-patterns.md +228 -0
- package/.github/skills/code-test-coverage-analyzer/references/react-native-patterns.md +431 -0
- package/.github/skills/code-test-coverage-analyzer/references/react-patterns.md +206 -0
- package/.github/skills/code-test-coverage-analyzer/scripts/detect-platform.ps1 +261 -0
- package/.github/skills/code-test-coverage-analyzer/scripts/scan-repository.ps1 +242 -0
- package/.github/skills/code-test-coverage-analyzer/templates/brd-compliance-row.md +107 -0
- package/.github/skills/code-test-coverage-analyzer/templates/test-case-row.md +130 -0
- package/.github/skills/code-test-coverage-analyzer/templates/user-story-compliance-row.md +170 -0
- package/.github/skills/custom-font-integrator/SKILL.md +373 -0
- package/.github/skills/custom-font-integrator/assets/FontTestScreen.js +150 -0
- package/.github/skills/custom-font-integrator/references/example-info-plist.xml +21 -0
- package/.github/skills/custom-font-integrator/scripts/setup-fonts.sh +99 -0
- package/.github/skills/encryption-decryption-utility/Instructions.md +282 -0
- package/.github/skills/encryption-decryption-utility/README.md +222 -0
- package/.github/skills/encryption-decryption-utility/SKILL.md +645 -0
- package/.github/skills/encryption-decryption-utility/assets/encryption-config-template.json +13 -0
- package/.github/skills/encryption-decryption-utility/assets/platform-matrix.json +180 -0
- package/.github/skills/encryption-decryption-utility/metadata.yaml +51 -0
- package/.github/skills/encryption-decryption-utility/references/android-crypto.md +157 -0
- package/.github/skills/encryption-decryption-utility/references/angular-crypto.md +130 -0
- package/.github/skills/encryption-decryption-utility/references/approach-1-webcrypto.md +95 -0
- package/.github/skills/encryption-decryption-utility/references/approach-2-rsa-aes-cbc.md +111 -0
- package/.github/skills/encryption-decryption-utility/references/approach-3-aes-sharedkey.md +114 -0
- package/.github/skills/encryption-decryption-utility/references/architecture.md +233 -0
- package/.github/skills/encryption-decryption-utility/references/backend-alignment.md +506 -0
- package/.github/skills/encryption-decryption-utility/references/dependency-guidance.md +234 -0
- package/.github/skills/encryption-decryption-utility/references/ec-implementation.md +832 -0
- package/.github/skills/encryption-decryption-utility/references/error-handling-playbook.md +234 -0
- package/.github/skills/encryption-decryption-utility/references/flutter-crypto.md +105 -0
- package/.github/skills/encryption-decryption-utility/references/ios-crypto.md +338 -0
- package/.github/skills/encryption-decryption-utility/references/native-rsa-implementation.md +373 -0
- package/.github/skills/encryption-decryption-utility/references/node-crypto.md +86 -0
- package/.github/skills/encryption-decryption-utility/references/react-crypto.md +105 -0
- package/.github/skills/encryption-decryption-utility/references/react-native-crypto.md +1001 -0
- package/.github/skills/encryption-decryption-utility/references/react-web-crypto.md +668 -0
- package/.github/skills/encryption-decryption-utility/references/security-checklist.md +176 -0
- package/.github/skills/encryption-decryption-utility/references/web-crypto.md +74 -0
- package/.github/skills/encryption-decryption-utility/scripts/detect.js +128 -0
- package/.github/skills/encryption-decryption-utility/scripts/install.js +1713 -0
- package/.github/skills/encryption-decryption-utility/scripts/setup.js +800 -0
- package/.github/skills/encryption-decryption-utility/template.md +241 -0
- package/.github/skills/encryption-decryption-utility/templates/config-questionnaire.md +467 -0
- package/.github/skills/encryption-decryption-utility/templates/delivery-checklist.md +206 -0
- package/.github/skills/encryption-decryption-utility/templates/implementation-plan.md +304 -0
- package/.github/skills/feature-generator/SKILL.MD +2741 -0
- package/.github/skills/feature-generator/assets/fingerprint-schema.json +385 -0
- package/.github/skills/feature-generator/assets/spec-template.md +172 -0
- package/.github/skills/feature-generator/assets/transform-rules.json +82 -0
- package/.github/skills/feature-generator/references/api-envelope-patterns.md +327 -0
- package/.github/skills/feature-generator/references/screen-logic-patterns.md +399 -0
- package/.github/skills/feature-generator/references/state-library-patterns.md +464 -0
- package/.github/skills/figma-ui-mapper/README.md +34 -0
- package/.github/skills/figma-ui-mapper/SKILL.md +101 -0
- package/.github/skills/figma-ui-mapper/assets/templates/component-map-template.md +30 -0
- package/.github/skills/figma-ui-mapper/assets/templates/generation-report-template.md +49 -0
- package/.github/skills/figma-ui-mapper/metadata.yaml +22 -0
- package/.github/skills/figma-ui-mapper/references/android.md +11 -0
- package/.github/skills/figma-ui-mapper/references/angular.md +18 -0
- package/.github/skills/figma-ui-mapper/references/capacitor.md +18 -0
- package/.github/skills/figma-ui-mapper/references/common.md +23 -0
- package/.github/skills/figma-ui-mapper/references/expo.md +18 -0
- package/.github/skills/figma-ui-mapper/references/flutter.md +18 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/angular/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/capacitor/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/expo/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/flutter/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/ionic/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/kotlin-multiplatform/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/native-android/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/native-ios/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/next/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/nuxt/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/react/rules.md +19 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/react-native/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/svelte/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/frameworks/vue/rules.md +23 -0
- package/.github/skills/figma-ui-mapper/references/ionic.md +18 -0
- package/.github/skills/figma-ui-mapper/references/ios.md +11 -0
- package/.github/skills/figma-ui-mapper/references/kotlin-multiplatform.md +18 -0
- package/.github/skills/figma-ui-mapper/references/native-android.md +18 -0
- package/.github/skills/figma-ui-mapper/references/native-ios.md +18 -0
- package/.github/skills/figma-ui-mapper/references/next.md +18 -0
- package/.github/skills/figma-ui-mapper/references/nuxt.md +18 -0
- package/.github/skills/figma-ui-mapper/references/react-figma-guideline.md +21 -0
- package/.github/skills/figma-ui-mapper/references/react-native.md +18 -0
- package/.github/skills/figma-ui-mapper/references/react.md +18 -0
- package/.github/skills/figma-ui-mapper/references/script-usage.md +46 -0
- package/.github/skills/figma-ui-mapper/references/svelte.md +18 -0
- package/.github/skills/figma-ui-mapper/references/vue.md +18 -0
- package/.github/skills/figma-ui-mapper/references/workflow.md +74 -0
- package/.github/skills/figma-ui-mapper/scripts/generate-page-through-figma.js +635 -0
- package/.github/skills/figma-ui-mapper/scripts/generate-react-page-through-figma.js +4 -0
- package/.github/skills/frontend-task-breakdown/SKILL.md +734 -0
- package/.github/skills/md-file-converter/SKILL.md +291 -0
- package/.github/skills/md-file-converter/config/formats.json +114 -0
- package/.github/skills/md-file-converter/extractors/extract-docx.sh +120 -0
- package/.github/skills/md-file-converter/extractors/extract-eml.py +108 -0
- package/.github/skills/md-file-converter/extractors/extract-pdf.sh +97 -0
- package/.github/skills/md-file-converter/extractors/extract-pptx.py +143 -0
- package/.github/skills/md-file-converter/extractors/extract-xlsx.py +175 -0
- package/.github/skills/md-file-converter/scripts/check-tools.sh +47 -0
- package/.github/skills/md-file-converter/scripts/extract-archive.sh +83 -0
- package/.github/skills/md-file-converter/scripts/extract-ocr.sh +77 -0
- package/.github/skills/md-file-converter/scripts/get-metadata.sh +57 -0
- package/.github/skills/md-file-converter/templates/output.md +73 -0
- package/.github/skills/md-file-converter/templates/unsupported-object.md +6 -0
- package/.github/skills/mockAPI-contract-generator/SKILL.md +607 -0
- package/.github/skills/test-case-validator/CHANGELOG.md +155 -0
- package/.github/skills/test-case-validator/CONFIGURATION.md +130 -0
- package/.github/skills/test-case-validator/EXAMPLES.md +50 -0
- package/.github/skills/test-case-validator/QUALITY_SCORING.md +98 -0
- package/.github/skills/test-case-validator/README.md +111 -0
- package/.github/skills/test-case-validator/REPORT_TEMPLATE.md +116 -0
- package/.github/skills/test-case-validator/SKILL.md +209 -0
- package/.github/skills/test-case-validator/SYSTEM_PROMPT.md +127 -0
- package/.github/skills/test-case-validator/TRACEABILITY_ENGINE.md +152 -0
- package/.github/skills/test-case-validator/VALIDATION_RULES.md +411 -0
- package/.github/skills/test-case-validator/config/default.config.yaml +62 -0
- package/.github/skills/test-case-validator/docs/ARCHITECTURE.md +66 -0
- package/.github/skills/test-case-validator/docs/EXTENDING.md +85 -0
- package/.github/skills/test-case-validator/docs/FAQ.md +88 -0
- package/.github/skills/test-case-validator/docs/VERSIONING.md +55 -0
- package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-brd.md +43 -0
- package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-test-cases.csv +9 -0
- package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/input-user-story.md +29 -0
- package/.github/skills/test-case-validator/examples/example-1-manual-qa-ecommerce/output-report.md +303 -0
- package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/input-spec.md +43 -0
- package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/input-test-files-index.md +56 -0
- package/.github/skills/test-case-validator/examples/example-2-automated-frontend-suite/output-report.md +274 -0
- package/.github/skills/test-case-validator/prompts/00-applicability-resolution.md +61 -0
- package/.github/skills/test-case-validator/prompts/01-extraction-user-story.md +58 -0
- package/.github/skills/test-case-validator/prompts/02-extraction-brd.md +64 -0
- package/.github/skills/test-case-validator/prompts/03-extraction-test-cases.md +92 -0
- package/.github/skills/test-case-validator/prompts/04-traceability-matrix.md +41 -0
- package/.github/skills/test-case-validator/prompts/05-coverage-analysis.md +46 -0
- package/.github/skills/test-case-validator/prompts/06-missing-scenario-detection.md +32 -0
- package/.github/skills/test-case-validator/prompts/07-duplicate-detection.md +36 -0
- package/.github/skills/test-case-validator/prompts/08-risk-analysis.md +39 -0
- package/.github/skills/test-case-validator/prompts/09-gated-wiring-validation.md +53 -0
- package/.github/skills/test-case-validator/prompts/10-observation-report.md +56 -0
- package/.github/skills/test-case-validator/prompts/11-final-report-assembly.md +57 -0
- package/.github/skills/test-case-validator/templates/coverage-table.md +25 -0
- package/.github/skills/test-case-validator/templates/executive-summary.md +38 -0
- package/.github/skills/test-case-validator/templates/final-summary-block.md +87 -0
- package/.github/skills/test-case-validator/templates/observation-entry.md +41 -0
- package/.github/skills/test-case-validator/templates/rtm-row.md +25 -0
- package/.github/skills/validation-engine-builder/README.md +50 -0
- package/.github/skills/validation-engine-builder/SKILL.md +241 -0
- package/.github/skills/validation-engine-builder/references/core.md +158 -0
- package/.github/skills/validation-engine-builder/references/platform-angular.md +166 -0
- package/.github/skills/validation-engine-builder/references/platform-flutter.md +118 -0
- package/.github/skills/validation-engine-builder/references/platform-react-native.md +170 -0
- package/.github/skills/validation-engine-builder/references/platform-react.md +94 -0
- package/.github/skills/validation-engine-builder/scripts/apply-to-project.js +80 -0
- package/.github/skills/validation-engine-builder/scripts/generate-angular.js +271 -0
- package/.github/skills/validation-engine-builder/scripts/generate-flutter.js +298 -0
- package/.github/skills/validation-engine-builder/scripts/generate-react-native.js +217 -0
- package/.github/skills/validation-engine-builder/scripts/generate-react.js +163 -0
- package/.github/skills/validation-engine-builder/scripts/install-deps.js +53 -0
- package/.github/skills/validation-engine-builder/scripts/shared/detect-platform.js +68 -0
- package/.github/skills/validation-engine-builder/scripts/shared/npm-deps.js +103 -0
- package/.github/skills/validation-engine-builder/scripts/shared/rhf-hook.js +43 -0
- package/.github/skills/validation-engine-builder/scripts/shared/ts-messages-regex.js +62 -0
- package/.github/skills/validation-engine-builder/scripts/shared/util.js +44 -0
- package/.github/skills/validation-engine-builder/scripts/shared/yup-schemas.js +80 -0
- package/.github/skills/validation-engine-builder/template.md +73 -0
- package/.github/skills/validation-engine-builder/templates/messages.json +22 -0
- package/.github/skills/validation-engine-builder/templates/regex.json +16 -0
- package/.github/skills/validation-engine-builder/templates/schemas.json +48 -0
- package/bin/index.js +145 -0
- package/package.json +22 -0
- 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.
|