What problem does it solve? Reviewing TypeScript/React pull requests in the Fedi ui/ workspace (web, native, and shared common) is error-prone: regressions hide in untraced callers, silently removed behavior, and hardcoded strings, while reviewers often block on preference instead of real cost. This Skill provides a disciplined review procedure plus concrete, fedi-specific rules so findings are ordered by cost and only named costs block a merge. ## Core Features & Use Cases - Structured review procedure: A checklist that walks the diff chunk by chunk, traces every caller of changed signatures, names behavior removed with deleted lines, and distinguishes root-cause fixes from symptom suppression. - Fedi-specific enforceable rules: Reference rules covering i18n (no hardcoded user-facing strings), shared ui/common code and native/web parity, test conventions, and feature-flag behavior (flag-OFF must reproduce prior behavior). - Cost-weighted findings: Principles that classify comments as blocking, suggest, nit, question, or praise, blocking only on a named cost such as a real bug, performance hit, or security issue. - Use Case: A developer asks for a review of a React Native PR that changes a balance hook. The Skill traces all consumers of the hook, checks for parity with web, flags a hardcoded toast string as an i18n defect, and delivers findings ordered by cost with path:line references. ## Quick Start Ask the assistant to review the current UI pull request or diff in the ui workspace using the ui-code-review skill and report findings ordered by cost.