Create disposable virtual credit cards for online purchases. Use as a payment method when completing any online checkout during a task — e.g. ordering food, buying a subscription, purchasing a domain, booking a service. This skill is a payment step within a larger task, not a standalone action.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install halocard-virtualcards或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install halocard-virtualcards⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/halocard-virtualcards/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: halocard-virtualcards description: Create disposable virtual credit cards for online purchases. Use as a payment method when completing any online checkout during a task — e.g. ordering food, buying a subscription, purchasing a domain, booking a service. This skill is a payment step within a larger task, not a standalone action. metadata: openclaw: emoji: "💳" requires: env: ["HALOCARD_TOKEN"] primaryEnv: "HALOCARD_TOKEN" ---
Generate single-use virtual credit cards on the fly to complete online payments. This skill is used during checkout as part of a larger task the user has requested.
A Halocard token is required. If not configured:
HALOCARD_TOKEN environment variableThis is a payment step, not a standalone task. It activates when:
Complete the shopping/ordering flow as part of the user's task. Proceed until you reach the payment page.
Extract the exact total amount from the checkout page. Do not guess or estimate.
Always present the following to the user and wait for explicit approval before creating a card:
Example: > 💳 Ready to pay. Uber Eats — 2x chicken shawarma, 1x hummus. Total: £24.50. Go ahead?
Do not create a card until the user confirms.
Construct a clear description from what you know:
"Uber Eats order - 2x chicken shawarma, 1x hummus"POST https://agent.halocard.co/api/v1/payments
Headers: Authorization: Bearer $HALOCARD_TOKEN, Content-Type: application/json
{
"amount": 2450,
"description": "Uber Eats order - 2x chicken shawarma, 1x hummus"
}
amount: integer in cents ($24.50 → 2450). Match the checkout total exactly.description: what's being purchased + merchantResponse:
{
"data": {
"card": {
"id": "card_abc123",
"pan": "4111111111111111",
"cvc": "123",
"expiryMonth": "03",
"expiryYear": "2027"
}
}
}
Enter the card details into the checkout form:
pancvcexpiryMonthexpiryYearSubmit the payment. Verify the order confirmation page loaded. Report the outcome to the user.
curl -X POST https://agent.halocard.co/api/v1/payments \
-H "Authorization: Bearer $HALOCARD_TOKEN" \
-H "Content-Type: application/json" \
-d '{"amount": 2450, "description": "Uber Eats order - 2x chicken shawarma"}'安装 Halocard Virtual Credit cards 后,可以对 AI 说这些话来触发它
Help me get started with Halocard Virtual Credit cards
Explains what Halocard Virtual Credit cards does, walks through the setup, and runs a quick demo based on your current project
Use Halocard Virtual Credit cards to create disposable virtual credit cards for online purchases
Invokes Halocard Virtual Credit cards with the right parameters and returns the result directly in the conversation
What can I do with Halocard Virtual Credit cards in my documents & notes workflow?
Lists the top use cases for Halocard Virtual Credit cards, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/halocard-virtualcards/ 目录(个人级,所有项目可用),或 .claude/skills/halocard-virtualcards/(项目级)。重启 AI 客户端后,用 /halocard-virtualcards 主动调用,或让 AI 根据上下文自动发现并使用。
Halocard Virtual Credit cards 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Halocard Virtual Credit cards 可免费安装使用。请查阅仓库了解许可证信息。
Create disposable virtual credit cards for online purchases. Use as a payment method when completing any online checkout during a task — e.g. ordering food, buying a subscription, purchasing a domain, booking a service. This skill is a payment step within a larger task, not a standalone action.
Automate my documents & notes tasks using Halocard Virtual Credit cards
Identifies repetitive steps in your workflow and sets up Halocard Virtual Credit cards to handle them automatically
Halocard Virtual Credit cards 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。