Install
openclaw skills install @mrchop/veto-approvalPause your agent for human approval before high-risk actions.
openclaw skills install @mrchop/veto-approvalThis skill allows your agent to send a 1-click approval email to you before proceeding with sensitive tasks.
VETO_API_KEY to your environment.from veto_skill import ask_human_permission
approved = ask_human_permission(
action_title="Send invoice for $5,000 to Client X",
user_email="boss@company.com",
context="Monthly retainer — Q1 2026"
)
if approved:
send_invoice()
else:
print("Action blocked by human.")
ask_human_permission()user_emailTrue if approved, False if rejected