The feedback step downloads and immediately executes an unpinned npm package
Source references: 1The command combines `npx --yes` with `@latest`, fetching and executing the current `submit-expo-feedback` release without an installation confirmation. That package's source is not included in the supplied material, so its behavior cannot be verified from this Skill.
If the package or its publisher account were compromised, the process would run with the user's permissions and could access files or credentials available in its environment. The entered feedback text is also handed to that program.
The feedback command explicitly uses `npx --yes` with `submit-expo-feedback@latest`: `@latest` leaves the code version unfixed, `--yes` bypasses the installation prompt, and the package source is absent from the supplied material. It runs only when submitting specific feedback, but the then-current package executes with the user's permissions and receives the feedback text. Users can restrict automatic execution and request a pinned, reviewed version.
## Submitting FeedbackIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:```bashnpx --yes submit-expo-feedback@latest --category skills --subject "expo-dev-client" "<actionable feedback>"```Only submit when you have something specific and actionable to report. Include as much relevant context as possible.If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.