원클릭으로
human-auth-payment
Handle payment card delegation from Human Phone. Covers credit/debit card number, expiry, CVC entry in checkout flows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Handle payment card delegation from Human Phone. Covers credit/debit card number, expiry, CVC entry in checkout flows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Automate X (Twitter) interactions — browsing feed, posting, replying, quoting, reposting, bookmarking, DMs, and profile management. Use when the user asks to use X/Twitter, post a tweet, reply to posts, check notifications, send DMs, or browse their timeline on phone.
Help users complete Duolingo language lessons. Use when the user asks to do Duolingo, practice a language, complete lessons, or needs guidance navigating the Duolingo app on phone.
Edit videos and beautify photos in CapCut on mobile. Use when the user asks to open CapCut, create/edit/export videos, add text/effects/music/captions, use templates, or retouch and enhance photos.
Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.
| name | human-auth-payment |
| description | Handle payment card delegation from Human Phone. Covers credit/debit card number, expiry, CVC entry in checkout flows. |
| metadata | {"openclaw":{"triggers":{"any":["payment","credit card","debit card","card number","checkout","pay","purchase","billing","cvc","cvv","expiry"]}}} |
Use this when an app requires payment card information for a purchase or subscription.
request_human_auth(
capability: "payment",
instruction: "Please enter your payment card details for [purchase description, amount].",
uiTemplate: {
fields: [
{ id: "card_number", label: "Card Number", type: "card-number", required: true },
{ id: "expiry", label: "Expiration", type: "expiry", required: true, placeholder: "MM/YY" },
{ id: "cvc", label: "Security Code", type: "cvc", required: true }
],
artifactKind: "payment_card",
requireArtifactOnApprove: true,
title: "Payment Card Required",
summary: "Enter your card details to complete payment."
}
)
Read the artifact: read(<artifact_path>) to get card fields.
Check the current screen. The checkout form may still be visible.
If the form is visible: fill each field by tapping + typing (card number, expiry, CVC).
If the screen changed: navigate back to the checkout page.
Tap Pay / Submit / Complete Purchase.
Delete the artifact immediately: exec("rm <artifact_path>")