Install
openclaw skills install missing-error-handlingCode handles only the happy path — external calls, I/O, and parsing have no failure handling and crash on anything unexpected.
openclaw skills install missing-error-handlingEvery external interaction is a source of failure: network, disk, subprocess, parsing, third-party API. If the code assumes they always succeed, a production run will hit the first unexpected condition and crash unhelpfully.
JSON.parse / yaml.load with no handling of malformed input.except: / catch (e) {} that swallows everything without logging.