harmonyos-review
Installation
SKILL.md
HarmonyOS Code Review
Audit HarmonyOS ArkTS projects against official Huawei guidelines. Generate prioritized fix reports.
Review Process
1. Quick Scan
Run in parallel to identify critical issues:
# Hardcoded credentials
grep -r "password\|secret\|key\|token" --include="*.json5" --include="*.ets"
# console instead of hilog
grep -r "console\." --include="*.ets" | grep -v "hilog"
# async forEach anti-pattern
grep -r "forEach.*await" --include="*.ets"
Related skills