@ohos-cpf/3rdloop 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +425 -0
- package/bin/3rdloop.mjs +48 -0
- package/lib/cli.js +741 -0
- package/lib/config.js +318 -0
- package/lib/doctor.js +114 -0
- package/lib/exit-codes.js +31 -0
- package/lib/opencode.js +156 -0
- package/lib/orch.js +427 -0
- package/lib/queries.js +264 -0
- package/lib/runner.js +979 -0
- package/lib/step.js +326 -0
- package/lib/ui.js +223 -0
- package/lib/workflow.js +291 -0
- package/lib/workflows.js +132 -0
- package/package.json +50 -0
- package/vendor/Server/Agent/SkillSelector/README.md +344 -0
- package/vendor/Server/Agent/SkillSelector/core/Agent.js +207 -0
- package/vendor/Server/Agent/SkillSelector/index.js +14 -0
- package/vendor/Server/Agent/SkillSelector/llm/llmClient.js +313 -0
- package/vendor/Server/Agent/SkillSelector/llm/prompts.js +161 -0
- package/vendor/Server/Agent/SkillSelector/llm/reactSteps.js +144 -0
- package/vendor/Server/Agent/SkillSelector/matcher/fuzzyMatcher.js +433 -0
- package/vendor/Server/Agent/SkillSelector/scanner/skillScanner.js +382 -0
- package/vendor/Server/Agent/SkillSelector/types.js +63 -0
- package/vendor/Server/Agent/SkillSelector/utils/actionWords.js +60 -0
- package/vendor/Server/Brain/AnalysisStrategies.js +422 -0
- package/vendor/Server/Brain/Brain.js +686 -0
- package/vendor/Server/Brain/DecompositionStrategies.js +621 -0
- package/vendor/Server/Brain/PlanPersistence.js +196 -0
- package/vendor/Server/Brain/SkillExecutor.js +251 -0
- package/vendor/Server/Brain/index.js +11 -0
- package/vendor/Server/CLI/cli.js +243 -0
- package/vendor/Server/CLI/opencode/index.js +804 -0
- package/vendor/Server/CLI/opencode.js +5 -0
- package/vendor/Server/DbUse/MessageArchive.js +61 -0
- package/vendor/Server/DbUse/StorageManager.js +107 -0
- package/vendor/Server/DbUse/adapters/BaseAdapter.js +94 -0
- package/vendor/Server/DbUse/adapters/FileAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonlAdapter.js +114 -0
- package/vendor/Server/DbUse/adapters/SqliteAdapter.js +157 -0
- package/vendor/Server/DbUse/index.js +160 -0
- package/vendor/Server/DbUse/stores/SessionStore.js +279 -0
- package/vendor/Server/DbUse/stores/TaskExecutionStore.js +133 -0
- package/vendor/Server/DbUse/stores/TaskRegistryStore.js +262 -0
- package/vendor/Server/DbUse/stores/TaskStepStore.js +279 -0
- package/vendor/Server/FlexRunner/FlexRunner.js +1759 -0
- package/vendor/Server/FlexRunner/index.js +12 -0
- package/vendor/Server/Knowledge/KnowledgeImporter.js +523 -0
- package/vendor/Server/Knowledge/KnowledgeManager.js +341 -0
- package/vendor/Server/Knowledge/index.js +33 -0
- package/vendor/Server/LoopEngine/LoopEngine.js +1133 -0
- package/vendor/Server/LoopEngine/index.js +11 -0
- package/vendor/Server/Orchestrator/Orchestrator.js +1425 -0
- package/vendor/Server/Orchestrator/StepNode.js +312 -0
- package/vendor/Server/Orchestrator/index.js +13 -0
- package/vendor/Server/Routes/controllers/BrainController.js +241 -0
- package/vendor/Server/Routes/controllers/FlexRunnerController.js +1125 -0
- package/vendor/Server/Routes/controllers/HealthController.js +44 -0
- package/vendor/Server/Routes/controllers/KnowledgeImportController.js +355 -0
- package/vendor/Server/Routes/controllers/LoopEngineController.js +788 -0
- package/vendor/Server/Routes/controllers/OrchestratorController.js +911 -0
- package/vendor/Server/Routes/controllers/StatsController.js +57 -0
- package/vendor/Server/Routes/controllers/StreamController.js +67 -0
- package/vendor/Server/Routes/library/logger.js +179 -0
- package/vendor/Server/Routes/library/zipArchive.js +172 -0
- package/vendor/Server/Routes/router/Router.js +204 -0
- package/vendor/Server/Routes/routes/brain.js +47 -0
- package/vendor/Server/Routes/routes/flexrunner.js +72 -0
- package/vendor/Server/Routes/routes/health.js +28 -0
- package/vendor/Server/Routes/routes/index.js +57 -0
- package/vendor/Server/Routes/routes/knowledge.js +55 -0
- package/vendor/Server/Routes/routes/loopengine.js +58 -0
- package/vendor/Server/Routes/routes/orchestrator.js +61 -0
- package/vendor/Server/Routes/routes/registry.js +98 -0
- package/vendor/Server/Routes/routes/stats.js +23 -0
- package/vendor/Server/Routes/routes/stream.js +30 -0
- package/vendor/Server/Routes/server.js +202 -0
- package/vendor/Server/Routes/sse/SseHub.js +308 -0
- package/vendor/Server/Skills/acceptance-check/SKILL.md +174 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE1_ARTIFACT_COLLECTION.md +52 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_CRITERIA_EVALUATION.md +77 -0
- package/vendor/Server/Skills/arkts-code-check/SKILL.md +314 -0
- package/vendor/Server/Skills/arkts-code-check/references/CODE_CHECK_GUIDE.md +160 -0
- package/vendor/Server/Skills/arkts-code-check/references/FILE_TYPE_GUIDE.md +29 -0
- package/vendor/Server/Skills/arkts-code-check/references/PHASE1_INFO_COLLECTION.md +222 -0
- package/vendor/Server/Skills/arkts-code-check/references/REPORT_TEMPLATE.md +220 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/SKILL.md +329 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-code/SKILL.md +291 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/API_SIGNATURE_CHECKS.md +68 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/BUILD_VALIDATION.md +184 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/CODE_STANDARDS.md +337 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/EXAMPLES.md +400 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/SYSTEM_API_LOOKUP.md +99 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/TEMPLATE.md +544 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-coverage/SKILL.md +174 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/SKILL.md +321 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/EXAMPLES.md +100 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/TEMPLATE.md +185 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/SKILL.md +234 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +103 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/CHECK_DIMENSIONS.md +89 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/COMPLIANCE_CHECKLIST.md +62 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/KB_QUERY_GUIDE.md +108 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/MCP_TOOL_DISCOVERY.md +124 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/REPORT_TEMPLATE.md +90 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/SCORING_FORMULA.md +57 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/arkts-library-interface-spec/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-memory-leak-check/SKILL.md +392 -0
- package/vendor/Server/Skills/arkts-library-source-clone/SKILL.md +113 -0
- package/vendor/Server/Skills/arkts-library-stability-check/SKILL.md +313 -0
- package/vendor/Server/Skills/arkts-library-stability-check/assets/REPORT_TEMPLATE.md +154 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CHECKLIST.md +166 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CODE_EXAMPLES.md +309 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/SCORING_RULES.md +90 -0
- package/vendor/Server/Skills/arkts-library-stability-check/scripts/validate-skill.cjs +282 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/SKILL.md +361 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/assets/REPORT_TEMPLATE.md +146 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/CHECKLIST.md +253 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/MCP_TOOL_USAGE.md +115 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/scripts/validate-skill.cjs +263 -0
- package/vendor/Server/Skills/arkts-library-xts-code/SKILL.md +455 -0
- package/vendor/Server/Skills/arkts-library-xts-code/assets/report-template.md +60 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/ACCESS_MODIFIER_PRECHECK.md +76 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/BUILD_VERIFICATION.md +200 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/CODE_STANDARDS.md +519 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SUBAGENT_PROMPT_TEMPLATE.md +276 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SYSTEM_API_LOOKUP.md +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/XTS_TEMPLATE.md +767 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/precheck-access-modifiers.cjs +221 -0
- package/vendor/Server/Skills/arkts-library-xts-code-fix/SKILL.md +229 -0
- package/vendor/Server/Skills/arkts-library-xts-coverage/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/SKILL.md +194 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/EXAMPLES.md +576 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TEMPLATE.md +575 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TESTABILITY_GUIDE.md +182 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/SKILL.md +491 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/references/error-fixing-examples.md +217 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/flutter-code-check/SKILL.md +299 -0
- package/vendor/Server/Skills/flutter-code-check/assets/OUTPUT_TEMPLATE.md +312 -0
- package/vendor/Server/Skills/flutter-code-check/references/CHECKLIST.md +190 -0
- package/vendor/Server/Skills/flutter-code-check/references/PLATFORMS.md +134 -0
- package/vendor/Server/Skills/flutter-code-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/flutter-interface/README.md +75 -0
- package/vendor/Server/Skills/flutter-interface/SKILL.md +291 -0
- package/vendor/Server/Skills/flutter-interface/references/EXAMPLES.md +336 -0
- package/vendor/Server/Skills/flutter-interface/references/GIT_CLONE_GUIDE.md +190 -0
- package/vendor/Server/Skills/flutter-interface/references/SCRIPT_REFERENCE.md +258 -0
- package/vendor/Server/Skills/flutter-interface/references/TEMPLATE.md +254 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/SKILL.md +518 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/CHECKLIST.md +382 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +342 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/PLATFORM_LIMITATION_GUIDE.md +71 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/SKILL.md +519 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/references/CHECKLIST.md +407 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/SKILL.md +653 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/references/CHECKLIST.md +397 -0
- package/vendor/Server/Skills/flutter-library-stability-check/SKILL.md +745 -0
- package/vendor/Server/Skills/flutter-library-stability-check/references/CHECKLIST.md +721 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/SKILL.md +414 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/assets/REPORT_TEMPLATE.md +150 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/CHECKLIST.md +304 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCORING_RULES.md +265 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCRIPT_USAGE.md +286 -0
- package/vendor/Server/Skills/knowledge-import/SKILL.md +383 -0
- package/vendor/Server/Skills/knowledge-import/references/MCP_TOOL_USAGE.md +165 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_LOCATOR_GUIDE.md +91 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_OPTIMIZATION_GUIDE.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/SKILL.md +301 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_ISSUE_TEMPLATE.md +105 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/references/GITCODE_API.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/scripts/gitcode-api.cjs +208 -0
- package/vendor/Server/Skills/rn-code-check/SKILL.md +321 -0
- package/vendor/Server/Skills/rn-code-check/references/API-GUIDE.md +235 -0
- package/vendor/Server/Skills/rn-code-check/references/CHECKLIST.md +189 -0
- package/vendor/Server/Skills/rn-code-check/references/REPORT-TEMPLATE.md +247 -0
- package/vendor/Server/Skills/rn-lib-add-example/SKILL.md +198 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/APP_RENAME_GUIDE.md +40 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/SHELL_ADAPTATION_CHECKLIST.md +78 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/TEMPLATE_REPO_GUIDE.md +70 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/VERIFICATION_GUIDE.md +47 -0
- package/vendor/Server/Skills/rn-lib-add-example/scripts/create-example.cjs +252 -0
- package/vendor/Server/Skills/rn-lib-update-doc/SKILL.md +176 -0
- package/vendor/Server/Skills/rn-lib-update-doc/config.json +5 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/changelog-template.md +35 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/format-diff.md +137 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/link-registry.json +33 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2-overview.md +40 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2.md +429 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/detect-readme-format.cjs +105 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/find-usage-doc.cjs +90 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/link-verify.cjs +213 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-changelog.cjs +73 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-package-meta.cjs +258 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-readme-links.cjs +341 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/resolve-usage-docs.cjs +67 -0
- package/vendor/Server/Skills/rn-library-consistency-check/SKILL.md +299 -0
- package/vendor/Server/Skills/rn-library-consistency-check/assets/REPORT_TEMPLATE.md +293 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_COMPONENT_CHECK_GUIDE.md +857 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_TURBOMODULE_CHECK_GUIDE.md +856 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CHECKLIST.md +157 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_COMPONENT_CHECK_GUIDE.md +801 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_TURBOMODULE_CHECK_GUIDE.md +684 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +233 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/NATIVE_COMPONENT_IDENTIFICATION.md +1373 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/SCORING_STANDARD.md +220 -0
- package/vendor/Server/Skills/rn-library-consistency-check/scripts/validate-skill.py +245 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL.md +414 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL_en.md +413 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +311 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CHECK_CHECKLIST.md +355 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CROSS_VALIDATION_GUIDE.md +115 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/DOC_COLLECTION_GUIDE.md +139 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/EXAMPLES.md +586 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/GOTCHAS.md +57 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/scripts/validate-skill.py +259 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/SKILL.md +301 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/assets/REPORT_TEMPLATE.md +148 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/DOC_ANNOTATION_GUIDE.md +118 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/SCRIPT_USAGE_GUIDE.md +168 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/URL_PARSING_RULES.md +176 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/SKILL.md +274 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/case-template.md +45 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/rule-template.md +25 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/PR_FETCH_GUIDE.md +61 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/RULE_TEMPLATE_GUIDE.md +165 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/scripts/fetch-pr-info.py +239 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/assets/REPORT_TEMPLATE.md +96 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/COMPLIANCE_CHECKLIST.md +58 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/INSPECTION_GUIDE.md +99 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/PRESCREEN_GUIDE.md +64 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/SOURCE_PREP_GUIDE.md +75 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/scripts/validate-known-issue-report.py +164 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/SKILL.md +339 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/assets/REPORT_TEMPLATE.md +83 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/CHECKLIST.md +859 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/HARMONY_CODE_PATTERNS.md +122 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/scripts/scan_harmony_code.py +279 -0
- package/vendor/Server/Skills/rn-library-stability-check/SKILL.md +273 -0
- package/vendor/Server/Skills/rn-library-stability-check/assets/REPORT_TEMPLATE.md +129 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/CHECKLIST.md +581 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/SCORING_RULES.md +138 -0
- package/vendor/Server/Skills/rn-library-stability-check/scripts/scan-harmony-code.py +168 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/SKILL.md +506 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/CHECKLIST.md +280 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/DEMO_LOCATION.md +221 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/REPORT_TEMPLATE.md +209 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/SCRIPT_USAGE.md +325 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/SKILL.md +279 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/assets/TEST_FILE_TEMPLATES.md +404 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_TROUBLESHOOTING.md +185 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_WORKFLOW.md +265 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COMMON_CONFIG.md +189 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/CONFIG_GUIDE.md +203 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COVERAGE_ANALYZER.md +147 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/DESIGN_DOC_GUIDE.md +148 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_FLOW.md +165 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_STRATEGY.md +195 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/HARMONY_SCANNER.md +249 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/JEST_FRAMEWORK.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/PLATFORM_COMPAT.md +161 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/RN_TEST_PATTERNS.md +413 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/SOURCE_PARSER.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TEST_CONVENTIONS.md +245 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TROUBLESHOOTING.md +282 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/USAGE_GUIDE.md +251 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/SKILL.md +469 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/CPTF_TEST_TEMPLATE.md +310 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/DEMO_PAGE_TEMPLATE.md +303 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/CPTF_TEST_GENERATION_GUIDE.md +421 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/DEMO_GENERATION_GUIDE.md +358 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/QUALITY_CHECKLIST.md +114 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/SPEC_PARSING_GUIDE.md +274 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/scripts/validate-rnoh-cptf-api-test.sh +185 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/SKILL.md +191 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/assets/TEST_TEMPLATE.md +216 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/CPTF_SETUP.md +107 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/DEMO_ANALYSIS.md +120 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/scripts/validate-rnoh-cptf-test.sh +108 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/SKILL.md +237 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/references/DEBUG_PLAYBOOK.md +261 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/scripts/validate-run-env.sh +112 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/SKILL.md +498 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/adapt-checklist.md +270 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/api-migration-checklist.md +164 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/common-compile-errors.md +556 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/deveco-cli-tools.md +459 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/edge-cases.md +65 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/har-tgz-build.md +512 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/version-compat-matrix.md +132 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/scripts/auto-integrate.sh +424 -0
- package/vendor/Server/Skills/rnoh-lib-demo-coverage/SKILL.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/SKILL.md +306 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/DEMO_PAGE_TEMPLATE.md +485 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/INDEX_TEMPLATE.md +172 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/DEMO_CODE_RULES.md +422 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/QUALITY_CHECKLIST.md +95 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/SOURCE_EXPLORATION.md +169 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/SKILL.md +554 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/assets/DEMO_DOC_TEMPLATE.md +106 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/COVERAGE_INCREMENTAL.md +216 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/DEMO_DESIGN_RULES.md +413 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/OUTPUT_FORMAT.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/QUALITY_CHECKLIST.md +98 -0
- package/vendor/Server/Skills/rnoh-lib-func-test/SKILL.md +337 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/SKILL.md +722 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/assets/PORT_REPORT_TEMPLATE.md +219 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/DEMO_PORTING_GUIDE.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/PORT_VERIFICATION.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/RNT_PROJECT_STRUCTURE.md +173 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/analyze-demo-deps.cjs +267 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/detect-rnoh-version.cjs +174 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/find-rnt-demo.sh +111 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/port-demo.sh +186 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/read-lib-meta.cjs +150 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/SKILL.md +296 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/jest-troubleshooting.md +371 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/port-test-demo-guide.md +212 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/runtime-troubleshooting.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/unit-test-template.md +223 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/scripts/port-test-demo.sh +1053 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/SKILL.md +255 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_ADAPTATION.md +77 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_API_LOOKUP.md +224 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/script-reference.md +174 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/detect-upstream-version.js +967 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/generate-diff.js +1798 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/package.json +5 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/templates/report-template.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-xts-coverage/SKILL.md +145 -0
- package/vendor/Server/Skills/skill-generator/SKILL.md +365 -0
- package/vendor/Server/Skills/skill-generator/assets/SKILL_TEMPLATE.md +183 -0
- package/vendor/Server/Skills/skill-generator/references/COMPLIANCE_CHECKLIST.md +82 -0
- package/vendor/Server/Skills/skill-generator/references/KB_QUERY_GUIDE.md +110 -0
- package/vendor/Server/Skills/skill-generator/references/MCP_TOOL_DISCOVERY.md +122 -0
- package/vendor/Server/Skills/skill-generator/references/SKILL_SPEC.md +121 -0
- package/vendor/Server/Skills/skill-generator/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/task-analysis/SKILL.md +234 -0
- package/vendor/Server/Skills/task-analysis/assets/OUTPUT_EXAMPLES.md +160 -0
- package/vendor/Server/Skills/task-analysis/references/ACCEPTANCE_CRITERIA_GUIDE.md +190 -0
- package/vendor/Server/Skills/task-analysis/references/ANALYSIS_SCHEMA.md +224 -0
- package/vendor/Server/Skills/task-analysis/references/INTEGRATION_CONTEXT.md +162 -0
- package/vendor/Server/Skills/task-analysis/references/LESSONS_LEARNED.md +55 -0
- package/vendor/Server/Skills/task-analysis/references/REPLAN_CONTEXT_GUIDE.md +126 -0
- package/vendor/Server/Skills/task-analysis/scripts/validate-analysis-output.sh +256 -0
- package/vendor/Server/Skills/task-decomposition/SKILL.md +529 -0
- package/vendor/Server/Skills/task-decomposition/assets/OUTPUT_EXAMPLES.md +451 -0
- package/vendor/Server/Skills/task-decomposition/references/ACCEPTANCE_CRITERIA_GUIDE.md +179 -0
- package/vendor/Server/Skills/task-decomposition/references/DEPENDENCY_GRAPH_GUIDE.md +152 -0
- package/vendor/Server/Skills/task-decomposition/references/INTEGRATION_CONTEXT.md +175 -0
- package/vendor/Server/Skills/task-decomposition/references/REPLAN_CONTEXT_GUIDE.md +195 -0
- package/vendor/Server/Skills/task-decomposition/references/TASK_DECOMPOSITION_TEMPLATES.md +226 -0
- package/vendor/Server/Skills/task-decomposition/scripts/list-available-skills.cjs +263 -0
- package/vendor/Server/Skills/task-decomposition/scripts/skill-blacklist.json +29 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-decomposition-output.cjs +376 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-param-consistency.cjs +259 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-specified-skills.cjs +216 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-step-graph.cjs +425 -0
- package/vendor/Server/Skills/tpc-cpp-check/SKILL.md +427 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/CHECKLIST.md +214 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/HPKBUILD_GUIDE.md +235 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/REPORT_TEMPLATE.md +250 -0
- package/vendor/Server/TestCheck/TestCheck.js +775 -0
- package/vendor/Server/TestCheck/index.js +11 -0
- package/vendor/Server/library/McpToolGuide.js +280 -0
- package/vendor/Server/library/StatsService.js +127 -0
- package/vendor/Server/library/cstTime.js +16 -0
- package/vendor/Server/package.json +17 -0
- package/vendor/VERSION +3 -0
- package/workflows/pr-check.mjs +106 -0
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
# Demo 代码规则
|
|
2
|
+
|
|
3
|
+
> Demo 代码生成必须遵循以下规范,确保在 HarmonyOS 平台正确运行。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. 目录结构
|
|
8
|
+
|
|
9
|
+
在 Phase 1.2 探查到的 `exampleDir` 下创建 Demo 目录:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
{exampleDir}/{libName}/
|
|
13
|
+
├── index.tsx # 主入口(Tester 框架 + 元数据导出)
|
|
14
|
+
└── demo/
|
|
15
|
+
├── 001_{描述1}Page.tsx # 每个 Demo 一个文件
|
|
16
|
+
├── 002_{描述2}Page.tsx
|
|
17
|
+
└── ...
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
`{exampleDir}` 由探查确定,不硬编码。常见值:`rn-tester/examples/`、`example/src/`、`demo/src/` 等。
|
|
21
|
+
|
|
22
|
+
### 命名规范
|
|
23
|
+
|
|
24
|
+
| 类型 | 格式 | 示例 |
|
|
25
|
+
|------|------|------|
|
|
26
|
+
| 目录 | `{序号}_{kebab-case描述}` | `001_basic-gradient` |
|
|
27
|
+
| 文件 | `{描述}Page.tsx` | `BasicGradientPage.tsx` |
|
|
28
|
+
| 类名 | `{PascalCase}Page` | `BasicGradientPage` |
|
|
29
|
+
| TAG 常量 | `库_页面名` | `LinearGradient_BasicGradientPage` |
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 2. 导入顺序
|
|
34
|
+
|
|
35
|
+
```typescript
|
|
36
|
+
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
37
|
+
import { View, Text, ScrollView, TouchableOpacity, StyleSheet } from 'react-native';
|
|
38
|
+
import { ComponentName } from '@react-native-ohos/{libName}';
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### 2.1 type 导入规范
|
|
42
|
+
|
|
43
|
+
对于仅有类型定义的导出(如 `EdgeInsets`、`Metrics`),使用 TypeScript inline type 语法,与运行时导出混写在同一条 import 语句中:
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
import {
|
|
47
|
+
SafeAreaProvider,
|
|
48
|
+
useSafeAreaInsets,
|
|
49
|
+
initialWindowSafeAreaInsets,
|
|
50
|
+
type EdgeInsets,
|
|
51
|
+
} from 'react-native-safe-area-context';
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
> ✅ 使用 `import { type EdgeInsets }` inline type 语法
|
|
55
|
+
> ❌ 不使用 `import type { EdgeInsets } from '...'`(无法与运行时导出混写)
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 3. 组件结构规范
|
|
60
|
+
|
|
61
|
+
### 3.1 根组件
|
|
62
|
+
|
|
63
|
+
- ❌ **不要使用** `SafeAreaView` 和 `StatusBar`
|
|
64
|
+
- ❌ **不要使用** `ScrollView` 作为 Demo 页面的根容器
|
|
65
|
+
- ✅ **使用** `View` 作为 Demo 页面的根容器
|
|
66
|
+
|
|
67
|
+
```typescript
|
|
68
|
+
return (
|
|
69
|
+
<View style={styles.container}>
|
|
70
|
+
{/* Demo 内容 */}
|
|
71
|
+
</View>
|
|
72
|
+
);
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### 3.2 ScrollView 嵌套问题
|
|
76
|
+
|
|
77
|
+
- Tester 框架的 `TestCase` 组件内部已包含 `ScrollView`
|
|
78
|
+
- Demo 页面再用 `ScrollView` 作为根容器 → 嵌套 ScrollView → HarmonyOS 上内层高度塌陷为 0 → Demo 完全不可见
|
|
79
|
+
- **主入口文件 index.tsx 的最外层可以使用 ScrollView**(不在 TestCase 内部)
|
|
80
|
+
- **Demo 页面文件(00X_xxxPage.tsx)的根组件必须用 View**
|
|
81
|
+
|
|
82
|
+
### 3.3 Hook 调用位置约束
|
|
83
|
+
|
|
84
|
+
Hook 必须在组件顶层调用,不可在事件回调、条件分支、循环中调用。对于依赖 Context 值的 Hook(如 `useSafeAreaInsets()`、`useSafeArea()`),必须放在对应 Provider 的子组件中:
|
|
85
|
+
|
|
86
|
+
```typescript
|
|
87
|
+
// ✅ 正确:拆分 InnerComponent,Hook 在 Provider 子组件中调用
|
|
88
|
+
const InnerComponent = () => {
|
|
89
|
+
const insets = useSafeArea(); // Hook 在组件顶层,且在 SafeAreaProvider 子组件中
|
|
90
|
+
return <Text>{JSON.stringify(insets)}</Text>;
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
const DemoPage = () => {
|
|
94
|
+
return (
|
|
95
|
+
<View style={styles.container}>
|
|
96
|
+
<SafeAreaProvider>
|
|
97
|
+
<InnerComponent />
|
|
98
|
+
</SafeAreaProvider>
|
|
99
|
+
</View>
|
|
100
|
+
);
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
// ❌ 错误:Hook 在 Provider 外部调用,Context 无值会抛出异常
|
|
104
|
+
const DemoPage = () => {
|
|
105
|
+
const insets = useSafeArea(); // 抛出 NO_INSETS_ERROR
|
|
106
|
+
return <SafeAreaProvider><Text>{JSON.stringify(insets)}</Text></SafeAreaProvider>;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
// ❌ 错误:Hook 在事件回调中调用
|
|
110
|
+
const handlePress = () => {
|
|
111
|
+
const insets = useSafeArea(); // 违反 Hook 规则
|
|
112
|
+
};
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### 3.4 Provider 子组件拆分
|
|
116
|
+
|
|
117
|
+
当 Demo 需要验证依赖 Context 的接口时,须将使用该接口的组件拆分为独立子组件,放在 Provider 内部渲染:
|
|
118
|
+
|
|
119
|
+
| 场景 | 拆分方式 | 示例 |
|
|
120
|
+
|------|----------|------|
|
|
121
|
+
| Hook 依赖 Context | 拆分 InnerComponent,Hook 在其中调用 | `useSafeArea()` 在 `SafeAreaProvider` 子组件中 |
|
|
122
|
+
| Consumer 组件 | 直接在 Provider 内部渲染 | `<SafeAreaConsumer>{(insets) => ...}</SafeAreaConsumer>` |
|
|
123
|
+
| Provider 注入初始值 | Provider 包裹子组件,子组件读取注入值 | `<SafeAreaProvider initialSafeAreaInsets={...}><Inner /></SafeAreaProvider>` |
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## 4. 状态管理
|
|
128
|
+
|
|
129
|
+
```typescript
|
|
130
|
+
const TAG = '{libName}_{DemoName}';
|
|
131
|
+
|
|
132
|
+
React.useEffect(() => {
|
|
133
|
+
console.log(`[${TAG}] Component mounted`);
|
|
134
|
+
return () => {
|
|
135
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
136
|
+
};
|
|
137
|
+
}, []);
|
|
138
|
+
|
|
139
|
+
const handleAction = useCallback(() => {
|
|
140
|
+
console.log(`[${TAG}] Action triggered`);
|
|
141
|
+
}, []);
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## 5. 禁止使用的组件和 API
|
|
147
|
+
|
|
148
|
+
| 禁止项 | 原因 | 替代方案 |
|
|
149
|
+
|--------|------|----------|
|
|
150
|
+
| `Slider` | HarmonyOS 不支持 | 按钮组控制数值 |
|
|
151
|
+
| `SafeAreaView` | Tester 框架不需要 | `View` |
|
|
152
|
+
| `StatusBar` | Tester 框架不需要 | 移除 |
|
|
153
|
+
| `console.error()` | 触发系统弹窗 | `console.warn()` |
|
|
154
|
+
| `fetch` API 文件操作 | HarmonyOS 不支持 | 库自身 API 或原生文件 API |
|
|
155
|
+
|
|
156
|
+
### Slider 替代方案
|
|
157
|
+
|
|
158
|
+
```typescript
|
|
159
|
+
<View style={styles.buttonRow}>
|
|
160
|
+
<TouchableOpacity onPress={() => handleValueChange(-0.1)}>
|
|
161
|
+
<Text>-0.1</Text>
|
|
162
|
+
</TouchableOpacity>
|
|
163
|
+
<TouchableOpacity onPress={() => handleValueChange(0.01)}>
|
|
164
|
+
<Text>+0.01</Text>
|
|
165
|
+
</TouchableOpacity>
|
|
166
|
+
</View>
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## 6. 平台兼容性
|
|
172
|
+
|
|
173
|
+
基于源码探查的 `Platform.OS === 'harmony'` 分支结果:
|
|
174
|
+
|
|
175
|
+
- **只使用** harmony 分支中定义的属性、常量和 API
|
|
176
|
+
- **禁止使用**仅在 iOS/Android 分支中存在的属性(HarmonyOS 下为 `undefined`,导致运行时报错)
|
|
177
|
+
|
|
178
|
+
### 常见陷阱
|
|
179
|
+
|
|
180
|
+
| 陷阱 | iOS/Android | HarmonyOS |
|
|
181
|
+
|------|-------------|-----------|
|
|
182
|
+
| 路径常量 | `DocumentDirectoryPath` | `FilesDirectoryPath` |
|
|
183
|
+
| 路径常量 | `CachesDirectoryPath` | `CacheDirectoryPath` |
|
|
184
|
+
| 路径常量 | `MainBundlePath`(iOS) | 不存在 |
|
|
185
|
+
|
|
186
|
+
### 事件监听
|
|
187
|
+
|
|
188
|
+
使用源码探查到的事件名称,不要猜测。区分 Promise 方法(需要 `async/await`)和同步方法。
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## 6.1 废弃接口验证技巧
|
|
193
|
+
|
|
194
|
+
当 Demo 需要验证 `@deprecated` 废弃接口的兼容性时,使用以下技巧:
|
|
195
|
+
|
|
196
|
+
### 引用相等性比较
|
|
197
|
+
|
|
198
|
+
废弃别名接口通常是直接赋值(`export const SafeAreaContext = SafeAreaInsetsContext`),使用 `===` 比较引用是最可靠的验证方式:
|
|
199
|
+
|
|
200
|
+
```typescript
|
|
201
|
+
const [isSameContext, setIsSameContext] = useState(false);
|
|
202
|
+
|
|
203
|
+
const handleVerify = useCallback(() => {
|
|
204
|
+
setIsSameContext(SafeAreaContext === SafeAreaInsetsContext);
|
|
205
|
+
}, []);
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
> ✅ 引用相等性比较(`===`)比功能对比更可靠
|
|
209
|
+
> ❌ 不要用 `JSON.stringify()` 比较后转回对象比较
|
|
210
|
+
|
|
211
|
+
### 废弃 Hook 验证
|
|
212
|
+
|
|
213
|
+
废弃 Hook(如 `useSafeArea()`)内部通常调用非废弃 Hook(如 `useSafeAreaInsets()`),验证时展示返回值一致即可:
|
|
214
|
+
|
|
215
|
+
```typescript
|
|
216
|
+
const insets = useSafeArea();
|
|
217
|
+
// 直接展示返回值,验证其为有效的 EdgeInsets 对象
|
|
218
|
+
<Text>useSafeArea 返回: {JSON.stringify(insets)}</Text>
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### 废弃常量验证
|
|
222
|
+
|
|
223
|
+
废弃常量(如 `initialWindowSafeAreaInsets`)通常派生自非废弃常量(如 `initialWindowMetrics?.insets`),在 `useEffect` 中读取并展示:
|
|
224
|
+
|
|
225
|
+
```typescript
|
|
226
|
+
useEffect(() => {
|
|
227
|
+
setWindowInsetsText(initialWindowSafeAreaInsets ? JSON.stringify(initialWindowSafeAreaInsets) : 'null');
|
|
228
|
+
}, []);
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
### 废弃 Props 验证
|
|
232
|
+
|
|
233
|
+
废弃 Props(如 `initialSafeAreaInsets`)作为 Provider 的 fallback 值,通过子组件读取注入的初始值来验证:
|
|
234
|
+
|
|
235
|
+
```typescript
|
|
236
|
+
const customInitialInsets: EdgeInsets = { top: 50, right: 0, bottom: 50, left: 0 };
|
|
237
|
+
|
|
238
|
+
<SafeAreaProvider initialSafeAreaInsets={customInitialInsets}>
|
|
239
|
+
<InnerComponent onInsets={handleInsets} />
|
|
240
|
+
</SafeAreaProvider>
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## 7. 权限请求
|
|
246
|
+
|
|
247
|
+
涉及敏感权限的操作(麦克风、相机、定位、存储等),**必须在操作前主动请求权限**:
|
|
248
|
+
|
|
249
|
+
```typescript
|
|
250
|
+
const handleStartRecording = useCallback(async () => {
|
|
251
|
+
try {
|
|
252
|
+
const authorized = await AudioRecorder.requestAuthorization();
|
|
253
|
+
if (!authorized) {
|
|
254
|
+
setResultInfo('权限被拒绝,请在设置中开启');
|
|
255
|
+
return;
|
|
256
|
+
}
|
|
257
|
+
// 继续执行操作...
|
|
258
|
+
} catch (error: any) {
|
|
259
|
+
setResultInfo(`失败: ${error?.message || error}`);
|
|
260
|
+
}
|
|
261
|
+
}, []);
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
**规则**:
|
|
265
|
+
- 涉及麦克风:录音前必须调用 `requestAuthorization()`
|
|
266
|
+
- 涉及相机:拍照/录像前必须请求相机权限
|
|
267
|
+
- 涉及定位:获取位置前必须请求位置权限
|
|
268
|
+
- 涉及存储:读写文件前可能需要请求存储权限
|
|
269
|
+
- **不要假设权限已授予**,即使 manifest 中已声明权限
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## 8. 原生事件兜底方案
|
|
274
|
+
|
|
275
|
+
HarmonyOS 端的 `emitDeviceEvent` 事件传递可能不稳定。对于需要实时更新的数据,**使用 JS 端计时器兜底**:
|
|
276
|
+
|
|
277
|
+
```typescript
|
|
278
|
+
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null);
|
|
279
|
+
const startTimeRef = useRef<number>(0);
|
|
280
|
+
|
|
281
|
+
const startTimer = useCallback(() => {
|
|
282
|
+
startTimeRef.current = Date.now();
|
|
283
|
+
timerRef.current = setInterval(() => {
|
|
284
|
+
const elapsed = (Date.now() - startTimeRef.current) / 1000;
|
|
285
|
+
setRecordingTime(elapsed);
|
|
286
|
+
}, 100);
|
|
287
|
+
}, []);
|
|
288
|
+
|
|
289
|
+
const clearTimer = useCallback(() => {
|
|
290
|
+
if (timerRef.current !== null) {
|
|
291
|
+
clearInterval(timerRef.current);
|
|
292
|
+
timerRef.current = null;
|
|
293
|
+
}
|
|
294
|
+
}, []);
|
|
295
|
+
|
|
296
|
+
// 开始录音时启动计时器
|
|
297
|
+
startTimer();
|
|
298
|
+
|
|
299
|
+
// 停止录音时只清除计时器,不重置时长(保留最终值)
|
|
300
|
+
clearTimer();
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
**规则**:
|
|
304
|
+
- 可同时保留原生事件回调(`onProgress`)和 JS 计时器,以原生事件为主、JS 计时器为兜底
|
|
305
|
+
- 停止操作时**只清除计时器,不要重置时长**(用户需要看到最终时长)
|
|
306
|
+
- 涉及暂停/恢复功能时,计时器需支持暂停(停止 interval)和恢复(重新启动 interval,累计已过时长)
|
|
307
|
+
- 组件卸载时必须清除计时器,防止内存泄漏
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
## 9. 日志输出规范
|
|
312
|
+
|
|
313
|
+
| 方法 | 行为 | 使用场景 |
|
|
314
|
+
|------|------|----------|
|
|
315
|
+
| `console.error()` | ❌ 触发系统弹窗,阻断用户操作 | **禁止使用** |
|
|
316
|
+
| `console.warn()` | ✅ 仅输出黄色警告日志,不弹窗 | 错误信息输出 |
|
|
317
|
+
| `console.log()` | ✅ 正常日志输出 | 调试日志 |
|
|
318
|
+
|
|
319
|
+
```typescript
|
|
320
|
+
// ❌ 错误:会弹窗
|
|
321
|
+
console.error(`[${TAG}] Failed: ${error}`);
|
|
322
|
+
|
|
323
|
+
// ✅ 正确:只输出警告
|
|
324
|
+
console.warn(`[${TAG}] Failed: ${error?.message || error}`);
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
## 10. 异步处理
|
|
330
|
+
|
|
331
|
+
使用 `async/await` + `try/catch`,不用 `.then()/.catch()` 链式调用:
|
|
332
|
+
|
|
333
|
+
```typescript
|
|
334
|
+
// ✅ 正确
|
|
335
|
+
const handleAction = useCallback(async () => {
|
|
336
|
+
try {
|
|
337
|
+
const result = await someAsyncAPI();
|
|
338
|
+
setResult(result);
|
|
339
|
+
} catch (error: any) {
|
|
340
|
+
console.warn(`[${TAG}] Failed: ${error?.message || error}`);
|
|
341
|
+
}
|
|
342
|
+
}, []);
|
|
343
|
+
|
|
344
|
+
// ❌ 禁止
|
|
345
|
+
someAsyncAPI()
|
|
346
|
+
.then(result => setResult(result))
|
|
347
|
+
.catch(error => console.error(error));
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## 11. 样式定义
|
|
353
|
+
|
|
354
|
+
使用 `StyleSheet.create` 定义所有样式,包含完整的 UI 元素样式:
|
|
355
|
+
|
|
356
|
+
```typescript
|
|
357
|
+
const styles = StyleSheet.create({
|
|
358
|
+
container: { flex: 1, padding: 16, backgroundColor: '#fff' },
|
|
359
|
+
card: { padding: 16, borderRadius: 8, backgroundColor: '#f5f5f5', marginBottom: 12 },
|
|
360
|
+
button: { padding: 12, borderRadius: 6, backgroundColor: '#007AFF', alignItems: 'center' },
|
|
361
|
+
buttonText: { color: '#fff', fontSize: 14 },
|
|
362
|
+
buttonRow: { flexDirection: 'row', gap: 8, marginVertical: 8 },
|
|
363
|
+
text: { fontSize: 14, color: '#333' },
|
|
364
|
+
});
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## 12. 组件定义风格
|
|
370
|
+
|
|
371
|
+
```typescript
|
|
372
|
+
const ComponentName = () => {
|
|
373
|
+
// hooks
|
|
374
|
+
// handlers
|
|
375
|
+
return (
|
|
376
|
+
<View style={styles.container}>
|
|
377
|
+
{/* 内容 */}
|
|
378
|
+
</View>
|
|
379
|
+
);
|
|
380
|
+
};
|
|
381
|
+
|
|
382
|
+
export default ComponentName;
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
---
|
|
386
|
+
|
|
387
|
+
## 13. 禁止事项汇总
|
|
388
|
+
|
|
389
|
+
❌ **不要**:
|
|
390
|
+
- 添加任何注释(代码中不使用 `//` 或 `/* */`)
|
|
391
|
+
- 创建不必要的文件(如 README.md,除非明确要求)
|
|
392
|
+
- 生成 TODO/FIXME 占位符
|
|
393
|
+
- 使用不存在的组件或 API
|
|
394
|
+
- 使用 iOS/Android 的 API 属性,必须检查 `Platform.OS === 'harmony'` 分支
|
|
395
|
+
- 照搬官方文档或 npm 上的示例代码,未验证 HarmonyOS 平台兼容性
|
|
396
|
+
- 使用 `ScrollView` 作为 Demo 页面的根组件
|
|
397
|
+
- 使用 `console.error()` 输出错误日志
|
|
398
|
+
- 使用 `fetch` API 进行文件系统读写操作
|
|
399
|
+
- 在涉及敏感权限的操作前不请求权限
|
|
400
|
+
- 停止操作时重置计时/计数值为 0(应保留最终值)
|
|
401
|
+
- 使用 `Slider` 组件
|
|
402
|
+
- 在事件回调/条件分支/循环中调用 Hook
|
|
403
|
+
- 在 Provider 外部调用依赖 Context 的 Hook
|
|
404
|
+
- 使用 `import type { ... }` 单独导入类型(应使用 inline `type` 语法混写)
|
|
405
|
+
- 用 `JSON.stringify()` 比较废弃别名(应使用 `===` 引用比较)
|
|
406
|
+
|
|
407
|
+
✅ **应该**:
|
|
408
|
+
- 所有状态更新通过 setState() 进行
|
|
409
|
+
- 使用 React 最佳实践(hooks, memoization)
|
|
410
|
+
- 保持代码简洁和可读
|
|
411
|
+
- 遵循现有项目的代码风格
|
|
412
|
+
- 先探查 JS 层接口与平台兼容性再生成 Demo 代码
|
|
413
|
+
- 使用 `View` 作为 Demo 页面的根组件
|
|
414
|
+
- 使用 `console.warn()` 替代 `console.error()`
|
|
415
|
+
- 在涉及敏感权限的操作前主动调用权限请求 API
|
|
416
|
+
- 对需要实时更新的数据使用 JS 端计时器兜底
|
|
417
|
+
- 停止操作时保留最终计时/计数值
|
|
418
|
+
- 使用 `async/await` + `try/catch`
|
|
419
|
+
- Hook 在组件顶层调用,依赖 Context 的 Hook 放在 Provider 子组件中
|
|
420
|
+
- 使用 `import { type EdgeInsets }` inline type 语法
|
|
421
|
+
- 废弃别名验证使用 `===` 引用相等性比较
|
|
422
|
+
- 依赖 Context 的组件拆分为 Provider 子组件
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# 质量检查清单
|
|
2
|
+
|
|
3
|
+
> Demo 代码生成完成后,逐项校验以下清单。所有必须项(✅)通过后才能交付。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. 接口探查完整性
|
|
8
|
+
|
|
9
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
10
|
+
|---|--------|------|----------|
|
|
11
|
+
| 1.1 | JS 层导出接口已探查 | ✅ 必须 | 函数/类/组件/Hooks/常量已列出 |
|
|
12
|
+
| 1.2 | 平台兼容性 API 已探查 | ✅ 必须 | harmony 分支可用/不可用属性已列出;无平台分支库标记为全部可用 |
|
|
13
|
+
| 1.3 | TurboModule Spec 已探查 | ✅ 必须 | 方法签名、Promise/同步、事件名已确认 |
|
|
14
|
+
| 1.4 | 类型定义已探查 | ⚠️ 推荐 | 参数类型、Props 接口已确认 |
|
|
15
|
+
| 1.5 | 事件名称已确认 | ✅ 必须 | DeviceEventEmitter 事件名来自源码,非猜测 |
|
|
16
|
+
| 1.6 | 废弃接口已探查 | ✅ 必须 | 废弃接口名、别名关系、替代接口已记录(如涉及) |
|
|
17
|
+
| 1.7 | upstream-cache 源码已追溯 | ⚠️ 推荐 | 鸿蒙化库 re-export 上游源码时已追溯实际实现 |
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. 代码规范
|
|
22
|
+
|
|
23
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
24
|
+
|---|--------|------|----------|
|
|
25
|
+
| 2.1 | Demo 页面根组件用 View | ✅ 必须 | 无 ScrollView 作为根组件 |
|
|
26
|
+
| 2.2 | 未使用 SafeAreaView/StatusBar | ✅ 必须 | Tester 框架不需要 |
|
|
27
|
+
| 2.3 | 未使用 Slider | ✅ 必须 | 已用按钮组替代 |
|
|
28
|
+
| 2.4 | 未使用 console.error() | ✅ 必须 | 已替换为 console.warn() |
|
|
29
|
+
| 2.5 | 未使用 fetch API 文件操作 | ✅ 必须 | 使用库自身 API |
|
|
30
|
+
| 2.6 | 代码中无注释 | ✅ 必须 | 无 `//` 或 `/* */` |
|
|
31
|
+
| 2.7 | 使用 async/await + try/catch | ✅ 必须 | 无 .then()/.catch() 链 |
|
|
32
|
+
| 2.8 | 样式用 StyleSheet.create | ✅ 必须 | 完整 UI 元素样式 |
|
|
33
|
+
| 2.9 | TAG 常量命名规范 | ⚠️ 推荐 | `库名_页面名` 格式 |
|
|
34
|
+
| 2.10 | Hook 在组件顶层调用 | ✅ 必须 | 不在事件回调/条件分支/循环中调用 Hook |
|
|
35
|
+
| 2.11 | 依赖 Context 的 Hook 在 Provider 子组件中 | ✅ 必须 | 拆分 InnerComponent,Hook 在 Provider 内部调用 |
|
|
36
|
+
| 2.12 | type 导入使用 inline 语法 | ⚠️ 推荐 | `import { type EdgeInsets }` 而非 `import type { EdgeInsets }` |
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## 3. 平台兼容性
|
|
41
|
+
|
|
42
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
43
|
+
|---|--------|------|----------|
|
|
44
|
+
| 3.1 | 未使用 iOS/Android 专属属性 | ✅ 必须 | 基于 harmony 分支探查结果;无平台分支库全部可用 |
|
|
45
|
+
| 3.2 | 路径常量使用 HarmonyOS 版本 | ✅ 必须 | FilesDirectoryPath 而非 DocumentDirectoryPath |
|
|
46
|
+
| 3.3 | 事件名称与源码一致 | ✅ 必须 | 来自探查结果,非猜测 |
|
|
47
|
+
| 3.4 | 方法调用方式正确 | ✅ 必须 | Promise 方法用 await,同步方法直接调用 |
|
|
48
|
+
| 3.5 | 废弃接口验证使用引用比较 | ⚠️ 推荐 | 使用 `===` 验证别名关系(如涉及废弃接口) |
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 4. 权限与兜底
|
|
53
|
+
|
|
54
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
55
|
+
|---|--------|------|----------|
|
|
56
|
+
| 4.1 | 敏感权限操作前请求权限 | ✅ 必须 | 麦克风/相机/定位/存储操作前有 requestAuthorization |
|
|
57
|
+
| 4.2 | 实时数据有 JS 计时器兜底 | ✅ 必须 | 原生事件不可靠时 setInterval 兜底 |
|
|
58
|
+
| 4.3 | 停止操作时保留最终值 | ✅ 必须 | 只 clearInterval,不重置状态值 |
|
|
59
|
+
| 4.4 | 组件卸载时清除计时器 | ✅ 必须 | useEffect return 中 clearInterval |
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## 5. Tester 集成
|
|
64
|
+
|
|
65
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
66
|
+
|---|--------|------|----------|
|
|
67
|
+
| 5.1 | index.tsx 包含 Tester 框架集成 | ✅ 必须 | Tester + TestSuite + TestCase |
|
|
68
|
+
| 5.2 | index.tsx 包含元数据导出 | ✅ 必须 | displayName/framework/category/title/description/examples |
|
|
69
|
+
| 5.3 | 注册入口已更新 | ✅ 必须 | registerFile 已追加新 Demo 注册,路径正确 |
|
|
70
|
+
| 5.4 | 注册路径为相对路径 | ✅ 必须 | 从 registerFile 到 indexFile 的相对路径,不硬编码 |
|
|
71
|
+
| 5.5 | 文件命名规范 | ⚠️ 推荐 | 00X_kebab-case描述Page.tsx |
|
|
72
|
+
| 5.6 | 注册模式与现有模式一致 | ✅ 必须 | 模式 A/B/C 与 registerFile 现有注册模式匹配,未破坏已有结构 |
|
|
73
|
+
| 5.7 | 注册模式已识别记录 | ✅ 必须 | 已读取 registerFile 内容,识别并记录注册模式(A/B/C) |
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## 6. 工程结构探查
|
|
78
|
+
|
|
79
|
+
| # | 检查项 | 类型 | 通过标准 |
|
|
80
|
+
|---|--------|------|----------|
|
|
81
|
+
| 6.1 | example/demo 目录已探查 | ✅ 必须 | exampleDir 已确定 |
|
|
82
|
+
| 6.2 | 注册入口文件已探查 | ✅ 必须 | registerFile 已确定 |
|
|
83
|
+
| 6.3 | 依赖已存在于 package.json | ✅ 必须 | 生成前已验证 |
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 7. 自动化校验
|
|
88
|
+
|
|
89
|
+
运行校验脚本进行 SKILL 规范检查:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
bash {skillDir}/scripts/validate-skill.sh {skillDir}
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
脚本输出 `ALL CHECKS PASSED` 表示 SKILL 结构合规。
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# 源码探查指南
|
|
2
|
+
|
|
3
|
+
> 生成 Demo 代码前必须完成 JS 层接口与平台兼容性探查,确保 Demo 只使用 HarmonyOS 平台实际支持的 API。本探查仅关注 RN 工程的 JS 层,不涉及鸿蒙原生侧配置。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. 探查 JS 层导出接口
|
|
8
|
+
|
|
9
|
+
**搜索路径(优先级从高到低):**
|
|
10
|
+
|
|
11
|
+
1. `node_modules/{harmonyPkgName}/index.js` 或 `index.ts`(推荐)
|
|
12
|
+
2. `node_modules/{harmonyPkgName}/src/index.js` 或 `index.tsx`(备选)
|
|
13
|
+
3. `{projectRoot}/.upstream-cache/{upstreamPkgName}@{version}/package/src/index.tsx`(上游源码缓存,用于鸿蒙化库)
|
|
14
|
+
4. `{projectRoot}/src/index.tsx`(鸿蒙化库源码入口)
|
|
15
|
+
|
|
16
|
+
> ⚠️ 鸿蒙化三方库的入口文件(如 `src/index.tsx`)可能 re-export 上游源码(`export * from 'react-native-safe-area-context/src/SafeAreaContext'`),需追溯 `.upstream-cache/` 下的实际上游源码文件才能看到完整实现。
|
|
17
|
+
|
|
18
|
+
**提取信息**:
|
|
19
|
+
- 导出的函数列表:函数名、参数、返回值
|
|
20
|
+
- 导出的类/对象:类名(如 `NativeModules.XxxModule`)、方法列表
|
|
21
|
+
- React 组件:组件名、Props 类型、事件回调 Props(onXxx)
|
|
22
|
+
- Hooks:Hook 函数名、参数、返回值
|
|
23
|
+
- 常量/枚举:常量名及值
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 2. 探查平台兼容性 API
|
|
28
|
+
|
|
29
|
+
> ⚠️ **关键步骤**:确保 Demo 代码只使用 HarmonyOS 平台实际支持的 API、属性和常量。
|
|
30
|
+
|
|
31
|
+
### 2.1 平台条件分支(Platform.OS)
|
|
32
|
+
|
|
33
|
+
读取库的入口文件,查找 `Platform.OS === 'harmony'`、`Platform.OS === 'ios'`、`Platform.OS === 'android'` 等条件分支。不同平台分支下暴露的 API、属性、常量可能不同。
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
示例(react-native-audio):
|
|
37
|
+
if (Platform.OS === 'ios') {
|
|
38
|
+
AudioUtils = { MainBundlePath, DocumentDirectoryPath, ... }
|
|
39
|
+
} else if (Platform.OS === 'harmony') {
|
|
40
|
+
AudioUtils = { FilesDirectoryPath, CacheDirectoryPath, TempsDirectoryPath }
|
|
41
|
+
}
|
|
42
|
+
→ HarmonyOS 下 AudioUtils 没有 DocumentDirectoryPath
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### 2.2 导出的常量和工具对象
|
|
46
|
+
|
|
47
|
+
检查库导出的常量对象(如 `AudioUtils`、`AudioSource`),确认 HarmonyOS 分支下实际包含哪些属性。如果某个属性只在 iOS/Android 分支中定义,在 HarmonyOS 下使用会得到 `undefined`。
|
|
48
|
+
|
|
49
|
+
### 2.3 提取信息
|
|
50
|
+
|
|
51
|
+
| 信息 | 说明 | 示例 |
|
|
52
|
+
|------|------|------|
|
|
53
|
+
| HarmonyOS 可用常量 | 只使用 harmony 分支中定义的属性 | `FilesDirectoryPath`(非 `DocumentDirectoryPath`) |
|
|
54
|
+
| HarmonyOS 不可用 API | 标记为禁止使用 | `DocumentDirectoryPath`、`MainBundlePath` |
|
|
55
|
+
| 方法调用方式 | Promise vs 同步 | `startRecording()` 返回 Promise |
|
|
56
|
+
| 事件名称 | DeviceEventEmitter 监听的事件名 | `recordingProgress`、`recordingFinished` |
|
|
57
|
+
|
|
58
|
+
### 2.4 核心规则
|
|
59
|
+
|
|
60
|
+
- **只使用 `Platform.OS === 'harmony'` 分支中定义的属性和 API**
|
|
61
|
+
- 如果某个属性只在 iOS/Android 分支中存在,**绝对不能在 Demo 中使用**
|
|
62
|
+
- 如果库没有 `Platform.OS === 'harmony'` 分支,说明可能未适配 HarmonyOS,需要额外确认
|
|
63
|
+
|
|
64
|
+
### 2.4.1 无平台分支库的探查策略
|
|
65
|
+
|
|
66
|
+
部分库(如 `react-native-safe-area-context`)没有 `Platform.OS === 'harmony'` 分支,而是通过 TurboModule 原生适配。此类库的特征:
|
|
67
|
+
|
|
68
|
+
| 特征 | 说明 | 示例 |
|
|
69
|
+
|------|------|------|
|
|
70
|
+
| 无 Platform.OS 分支 | 入口文件和所有源码中无 `Platform.OS === 'harmony'` 等条件判断 | `react-native-safe-area-context` |
|
|
71
|
+
| TurboModule 原生适配 | 鸿蒙侧通过 `src/specs/Native*.ts` 定义 TurboModule Spec | `NativeSafeAreaContext.ts` |
|
|
72
|
+
| 全部导出可用 | JS 层所有导出在 HarmonyOS 上全部可用,无需过滤 | `useSafeAreaInsets`、`SafeAreaProvider` 等 |
|
|
73
|
+
| `.native.ts` 后缀 | 部分常量通过 `InitialWindow.native.ts` 获取原生值 | `initialWindowSafeAreaInsets` |
|
|
74
|
+
|
|
75
|
+
> 探查时若发现库无 `Platform.OS` 分支,应检查是否存在 TurboModule Spec(`src/specs/Native*.ts`),若存在则标记为"全部导出可用",跳过 iOS/Android 属性过滤步骤。
|
|
76
|
+
|
|
77
|
+
### 2.4.2 废弃接口探查
|
|
78
|
+
|
|
79
|
+
库源码中可能包含 `@deprecated` 标注的废弃接口,需额外提取:
|
|
80
|
+
|
|
81
|
+
| 探查项 | 提取信息 | 示例 |
|
|
82
|
+
|--------|----------|------|
|
|
83
|
+
| 废弃接口列表 | 接口名、废弃原因、替代接口 | `useSafeArea()` → 替代 `useSafeAreaInsets()` |
|
|
84
|
+
| 别名关系 | 废弃接口与非废弃接口的别名关系 | `SafeAreaContext = SafeAreaInsetsContext`(引用赋值) |
|
|
85
|
+
| 废弃常量 | 废弃的常量及其数据来源 | `initialWindowSafeAreaInsets` → `initialWindowMetrics?.insets` |
|
|
86
|
+
| 废弃 Props | 废弃的组件属性及其 fallback 行为 | `initialSafeAreaInsets` → SafeAreaProvider 初始 fallback |
|
|
87
|
+
|
|
88
|
+
> 废弃接口在 HarmonyOS 平台仍正常可用,需生成 Demo 验证其兼容性。探查时需记录废弃接口与非废弃接口的别名关系(直接赋值 `=` 还是函数调用),用于 Demo 中引用相等性比较。
|
|
89
|
+
|
|
90
|
+
### 2.5 常见陷阱
|
|
91
|
+
|
|
92
|
+
| 陷阱 | iOS/Android | HarmonyOS |
|
|
93
|
+
|------|-------------|-----------|
|
|
94
|
+
| 路径常量 | `DocumentDirectoryPath` | `FilesDirectoryPath` |
|
|
95
|
+
| 路径常量 | `CachesDirectoryPath` | `CacheDirectoryPath` |
|
|
96
|
+
| 路径常量 | `MainBundlePath`(iOS) | 不存在 |
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## 3. 探查 TurboModule Spec
|
|
101
|
+
|
|
102
|
+
**搜索路径**:`node_modules/{harmonyPkgName}/src/**/Native*.ts` 或 `generated/ts/` 目录
|
|
103
|
+
|
|
104
|
+
**提取信息**:
|
|
105
|
+
- 方法签名:方法名、参数类型、返回值类型
|
|
106
|
+
- 调用方式:Promise 返回(需 `await`)还是同步调用
|
|
107
|
+
- 事件定义:`addListener` 方法监听的事件名称
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## 4. 探查类型定义
|
|
112
|
+
|
|
113
|
+
**搜索路径**:`node_modules/{harmonyPkgName}/**/*.d.ts`
|
|
114
|
+
|
|
115
|
+
**提取信息**:
|
|
116
|
+
- 参数详细类型(可选参数、联合类型)
|
|
117
|
+
- 返回值类型
|
|
118
|
+
- Props 接口定义(组件属性)
|
|
119
|
+
- 枚举/类型别名定义
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## 5. 探查结果汇总
|
|
124
|
+
|
|
125
|
+
完成探查后,汇总为接口能力清单用于 Demo 代码生成:
|
|
126
|
+
|
|
127
|
+
| 信息 | 说明 | 示例 (audio) |
|
|
128
|
+
|------|------|-------------|
|
|
129
|
+
| JS 导出函数 | 库入口导出的函数 | `AudioRecorder.startRecording()` |
|
|
130
|
+
| JS 导出组件 | 库入口导出的 React 组件 | 无(纯 API 库) |
|
|
131
|
+
| JS 导出常量 | 库入口导出的常量对象 | `AudioUtils` |
|
|
132
|
+
| HarmonyOS 可用属性 | harmony 分支中定义的属性 | `FilesDirectoryPath`, `CacheDirectoryPath`, `TempsDirectoryPath` |
|
|
133
|
+
| HarmonyOS 不可用属性 | 仅 iOS/Android 分支存在的属性 | `DocumentDirectoryPath`, `MainBundlePath` |
|
|
134
|
+
| 方法调用方式 | Promise vs 同步 | `startRecording()` 返回 Promise |
|
|
135
|
+
| 事件名称 | DeviceEventEmitter 事件名 | `recordingProgress`, `recordingFinished` |
|
|
136
|
+
| 平台分支模式 | 有分支 / 无分支(TurboModule 全适配) | 有分支(audio)/ 无分支(safe-area-context) |
|
|
137
|
+
| 废弃接口清单 | 废弃接口名、别名关系、替代接口 | `useSafeArea()` → `useSafeAreaInsets()` |
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## 6. MCP 工具辅助
|
|
142
|
+
|
|
143
|
+
### 6.1 提取接口规格
|
|
144
|
+
|
|
145
|
+
调用 `script_rn_extract_interfaces` 提取接口规格 JSON,用于交叉验证描述文档中的接口签名:
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
调用 script_rn_extract_interfaces:
|
|
149
|
+
- libroot: {{库源码根目录}}
|
|
150
|
+
- output: {{libroot}}/interface-spec.json
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
### 6.2 查询鸿蒙知识
|
|
154
|
+
|
|
155
|
+
调用 `kb_search` 查询鸿蒙平台特定约束:
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
调用 kb_search:
|
|
159
|
+
- query: "HarmonyOS 权限请求" / "ArkTS 限制" / "RNOH 事件机制"
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## 7. 处理策略
|
|
165
|
+
|
|
166
|
+
1. **JS 层探查优先** - 从 `node_modules/` 读取库的 JS 入口文件
|
|
167
|
+
2. **平台兼容性验证** - 读取 `Platform.OS === 'harmony'` 分支,确认可用 API
|
|
168
|
+
3. **禁止使用 iOS/Android 专属属性** - 不照搬官方文档或 npm 示例代码
|
|
169
|
+
4. **参考描述文档** - Demo 描述文档中的接口签名需与源码交叉验证
|