What problem does it solve? Non-engineers such as product managers often need to change small things like screen text, settings, or feature flags, but cannot tell which files are safe to touch or how to undo a mistake. This Skill identifies which files a non-developer can own, grades each by whether an automatic check exists, and performs single-value edits with the undo command shown before any change. ## Core Features & Use Cases - MAP mode: Scans the project for files a non-engineer can own (translations, content, validated settings, feature flags, docs) and grades each green, amber, or red based on whether a check catches mistakes, writing the result to orc-handoff/surfaces.md. - DO mode: Changes exactly one existing value through orc handoff set, showing the file, current value, check command, and undo command in a single confirmation message before editing. - Safety guarantees: Never edits red-graded files, never stages or commits, never creates new keys, and never reports an amber (manually checked) change as verified. - Use Case: A PM wants to change the empty-cart message. The Skill finds web/locales/en.json, shows the current value, the npm run i18n:check command, and the git checkout undo command, then edits, runs the check, and logs the change. ## Quick Start Ask the assistant to use the orc-handoff skill to change the empty cart text to "Nothing in here yet" and show the undo command first.