Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Moksa1123/taiwan-ecommerce-toolkit --skill taiwan-paymentgit clone --depth 1 https://github.com/Moksa1123/taiwan-ecommerce-toolkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/moksa1123/taiwan-ecommerce-toolkit/taiwan-payment)<a href="https://agentmods.dev/skills/moksa1123/taiwan-ecommerce-toolkit/taiwan-payment"><img src="https://agentmods.dev/badge/skills/moksa1123/taiwan-ecommerce-toolkit/taiwan-payment/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/moksa1123/taiwan-ecommerce-toolkit/taiwan-payment"><img src="https://agentmods.dev/badge/skills/moksa1123/taiwan-ecommerce-toolkit/taiwan-payment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00138 | $0.10127 |
| Opus 5 | $0.00069 | $0.05063 |
| Sonnet 5 | $0.00028 | $0.02025 |
| Haiku 4.5 | $0.00014 | $0.01013 |
Grade A, and why
taiwan-payment scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
fetch(paymentUrl, { method: 'POST', body: formData }) // 會被 CORS 阻擋 How it starts
The opening of the file, as written. The whole thing — 934 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Taiwan Payment Development Skill
此技能涵蓋台灣金流 API 整合開發,包含綠界 (ECPay)、藍新 (NewebPay)、統一 (PAYUNi)、速買配 (SmilePay)、拍錢包 (PChomePay)、ezPay 簡單付、立吉富 (PayNow)、SHOPLINE Payments、LINE Pay v4、TapPay 共十家服務商。
快速導覽
相關文件
使用此技能時,請參考專案中的 API 規格文件:
references/ecpay-payment-api.md- 綠界金流 API 規格references/newebpay-payment-api.md- 藍新金流 API 規格references/payuni-payment-api.md- 統一金流 API 規格references/smilepay-payment-api.md- 速買配 API 規格(PHP plugin 反推)references/pchomepay-payment-api.md- 拍錢包 API 規格(含 Basic Auth → Token 兩階段認證)references/ezpay-payment-api.md- ezPay 簡單付 API 規格(與藍新 Newebpay 同集團、同加密)references/paynow-payment-api.md- 立吉富 API 規格(傳統版 cashflow + 現代版 PaymentIntent 雙 API)references/shopline-payment-api.md- Shopline Payments API 規格(Redirect + Embedded SDK 雙模式)references/linepay-payment-api.md- LINE Pay v4 API 規格(HMAC-SHA256 + Preapproved Pay)references/tappay-payment-api.md- TapPay API 規格(Prime 兩段式 / PCI 隔離 / pay-by-token 重複扣款)- EXAMPLES.md - 程式碼範例集
智能工具
scripts/search.py- BM25 搜索引擎(查詢 API、錯誤碼、欄位映射、付款方式)scripts/recommend.py- 金流服務商推薦系統scripts/test_payment.py- 付款測試工具data/- CSV 數據檔(providers, operations, error-codes, field-mappings, payment-methods, troubleshooting, reasoning)
何時使用此技能
- 開發線上金流付款功能
- 整合台灣金流服務商 API
- 實作信用卡、ATM、超商、電子錢包等付款方式
- 處理訂單查詢、退款、定期定額扣款
- 處理加密簽章(SHA256、AES-256-CBC、AES-256-GCM)
- 解決金流 API 整合問題
智能搜索與推薦
搜索引擎 (search.py)
使用 BM25 算法在資料庫中搜索相關資訊:
# 搜索服務商
python scripts/search.py "ecpay" --domain provider
# 搜索錯誤碼
python scripts/search.py "10100058" --domain error
# 搜索欄位映射
python scripts/search.py "MerchantTradeNo" --domain field
# 搜索付款方式
python scripts/search.py "信用卡" --domain payment_method
# 搜索疑難排解
python scripts/search.py "CheckMacValue 錯誤" --domain troubleshoot
# 全域搜索
python scripts/search.py "金額計算" --domain all
# JSON 輸出
python scripts/search.py "ATM" --format json
搜索域:
| 域 | 說明 | CSV 檔案 |
|---|---|---|
provider |
服務商比較 | providers.csv |
operation |
API 操作端點 | operations.csv |
error |
錯誤碼查詢 | error-codes.csv |
field |
欄位映射 | field-mappings.csv |
payment_method |
付款方式 | payment-methods.csv |
troubleshoot |
疑難排解 | troubleshooting.csv |
reasoning |
推薦決策規則 | reasoning.csv |
What ships with it
42 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- CLAUDE.md 11 KB
- data/error-codes.csv 22 KB
- data/field-mappings.csv 5.6 KB
- data/operations.csv 5.6 KB
- data/payment-methods.csv 6.3 KB
- data/providers.csv 6.8 KB
- data/reasoning.csv 7.2 KB
- data/troubleshooting.csv 9.4 KB
- EXAMPLES.md 51 KB
- examples/ecpay-payment-example.py 13 KB runs code
- examples/ezpay-payment-example.py 25 KB runs code
- examples/jkopay-payment-example.py 12 KB runs code
- examples/linepay-payment-example.py 12 KB runs code
- examples/newebpay-payment-example.py 14 KB runs code
- examples/paynow-payment-example.py 28 KB runs code
- examples/payuni-payment-example.py 14 KB runs code
- examples/pchomepay-payment-example.py 19 KB runs code
- examples/shopline-payment-example.py 10 KB runs code
- examples/smilepay-payment-example.py 23 KB runs code
- examples/sunpay-payment-example.py 11 KB runs code
- examples/tappay-payment-example.py 11 KB runs code
- README.md 5.4 KB
- references/ecpay-payment-api.md 26 KB
- references/ezpay-payment-api.md 22 KB
- references/gomypay-payment-api.md 2.7 KB
- references/jkopay-payment-api.md 37 KB
- references/linepay-payment-api.md 27 KB
- references/newebpay-payment-api.md 18 KB
- references/opay-payment-api.md 14 KB
- references/paynow-payment-api.md 56 KB
- references/payuni-payment-api.md 25 KB
- references/pchomepay-payment-api.md 42 KB
- references/shopline-payment-api.md 43 KB
- references/smilepay-payment-api.md 27 KB
- references/sunpay-payment-api.md 19 KB
- references/tappay-payment-api.md 39 KB
- references/twqr-ewallet-landscape.md 10 KB
- scripts/core.py 11 KB runs code
- scripts/recommend.py 10 KB runs code
- scripts/search.py 5.9 KB runs code
- scripts/test_payment.py 12 KB runs code
- scripts/test_recommend.py 3.7 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 934 lines · 138 tokens per session scan A 082eba8eabbf
taiwan-payment is a skill published in the GitHub repository Moksa1123/taiwan-ecommerce-toolkit (47 stars, last pushed 24d ago), licensed MIT. It adds 138 tokens to every session and 10,127 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
asc-ppp-pricing
Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.
stripe
Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments. Use this skill when users want to process payments, manage billing, or handle subscriptions with Stripe. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).…
etsy-pricing-strategy
Etsy pricing — cost calculation, competitor pricing, perceived value, shipping cost integration, sales and coupons.
amazon-wholesale-sourcing
Wholesale product sourcing — supplier discovery, negotiation, MOQ optimization, margin analysis.
ai-slop
Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…
payment-processor
Skill "payment-processor" from Signal-Execution-Labs/forex-trading-ai-agent, covering payment processor skill, supported services, capabilities, view balances and get all balances.