用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill billplz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
基于 SOC 职业分类
正在显示 SKILL.md
| name | billplz |
| version | 1.0.0 |
| description | Create bills and check payments via Billplz — Malaysia's payment gateway. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["billplz","payments","malaysia","sea","fintech"] |
| env_needed | [{"name":"BILLPLZ_API_KEY","description":"API key from billplz.com/enterprise/setting","required":true},{"name":"BILLPLZ_COLLECTION_ID","description":"Default collection ID for creating bills","required":false},{"name":"BILLPLZ_SANDBOX","description":"Set to 'true' for sandbox mode (uses staging URL)","required":false}] |
| metadata | {"zeptoclaw":{"emoji":"💳","requires":{"anyBins":["curl","jq"]}}} |
Create payment bills, check payment status, and manage collections using Billplz — Malaysia's leading payment gateway.
export BILLPLZ_API_KEY="your_api_key"
export BILLPLZ_COLLECTION_ID="your_collection_id"
# For sandbox/testing:
# export BILLPLZ_SANDBOX="true"
# Helper: set base URL
BILLPLZ_URL="${BILLPLZ_SANDBOX:+https://www.billplz-sandbox.com/api/v3}"
BILLPLZ_URL="${BILLPLZ_URL:-https://www.billplz.com/api/v3}"
curl -s -X POST "$BILLPLZ_URL/bills" \
-u "$BILLPLZ_API_KEY:" \
-d "collection_id=$BILLPLZ_COLLECTION_ID" \
-d "email=customer@example.com" \
-d "name=Ahmad" \
-d "amount=4990" \
-d "description=Order #1234" \
-d "callback_url=https://yourapp.com/webhook/billplz" \
-d "redirect_url=https://yourapp.com/payment/complete" \
| jq '{id, url, amount, state}'
BILL_ID="bill-id-from-create"
curl -s "$BILLPLZ_URL/bills/$BILL_ID" \
-u "$BILLPLZ_API_KEY:" \
| jq '{id, state, paid, amount, paid_amount, url}'
curl -s \
-u \
| jq
curl -s -X POST "$BILLPLZ_URL/collections" \
-u "$BILLPLZ_API_KEY:" \
-d "title=My Store Payments" \
| jq '{id, title}'
4990due (unpaid), paid, deleted-u "key:")billplz-sandbox.com — use for testingx_signature for verificationqhkm/zeptoclaw-sea repo