Content
83%Weight 40%Scale 1-5Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
A lean, highly actionable Expo reference with concrete commands and config throughout. Its main weakness is workflow clarity: destructive and batch operations (prebuild --clean, OTA rollback, signing) lack explicit validation checkpoints and error-recovery feedback loops.
Suggestions
Add a numbered prebuild workflow with a validation checkpoint, e.g. after `npx expo prebuild`, verify the build runs locally before committing, since `--clean` discards native state destructively.
Make the OTA rollback sequence explicit with a feedback loop: list prior groups with `eas update:list`, republish, then confirm the active branch with `eas update:configure` or a runtime check.
Add a brief 'verify the build' step for EAS Build (e.g. check `eas build:view <id>` status before promoting) to give the build/deploy flow an explicit checkpoint.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | Dense bullet points packed with executable commands and concrete config values (e.g. 'runtimeVersion: { policy: "fingerprint" }', 'eas update:republish --group <previous-group-id>') with no padding or restating of concepts Claude already knows, matching the score-5 'lean and efficient' anchor. | 5 / 5 |
Actionability | Provides copy-paste-ready commands and exact config snippets covering the common cases (prebuild, eas.json profiles, EAS Update, rollback, secrets, Router conventions), matching the score-5 anchor for fully executable guidance. | 5 / 5 |
Workflow Clarity | Sequences are implicit across bullets rather than numbered, and several operations are destructive or batch (prebuild --clean wiping native dirs, OTA rollback, autoIncrement) without explicit validation checkpoints or feedback loops, hitting the score-3 cap for destructive/batch operations lacking validation. | 3 / 5 |
Progressive Disclosure | Well under 50 lines with no need for external references, organized into three clear sections (CNG, EAS Build/Update, Expo Router) plus a docs link; per the simple-skill exception this scores 5 without bundle files. | 5 / 5 |
Total | 18 / 20 Passed |