malaysia-payment-gateway

作者 afu-it已验证

Agent skills for implementing Malaysia payment gateway integrations.

62
Stars
10
Forks
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/afu-it/malaysia-payment-gateway

快速入门

使用 malaysia-payment-gateway 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Malaysia Payment Gateway Skills

Made in Malaysia Agent Skills Payment Gateway

Agent skills for implementing Malaysian payment gateway integrations with server-side checkout, verified webhooks, and idempotent settlement.

Made from Malaysia for developers building FPX, DuitNow QR, card, e-wallet, and local payment flows.

Skills

SkillUse for
malaysia-payment-gatewayGateway-agnostic planning, review, and security checklist
setup-chipCHIP Collect checkout, purchases, callbacks, refunds, payment methods
setup-curlecCurlec/Razorpay Orders API, Checkout.js, callbacks, webhooks
setup-xenditXendit Payment Sessions, Payment Requests, webhooks, xenPlatform
setup-bayarcashBayarcash API v2/v3, payment intents, callbacks, checksums
setup-bclBCL Pay, Payment Link, QR Terminal, Forms, Bayarcash-linked setup
setup-toyyibpaytoyyibPay categories, bills, callbacks, DuitNow QR, transaction checks
setup-billplzBillplz collections, bills, X Signature callbacks, Payment Order payouts
setup-fiuuFiuu hosted payment, Seamless Integration, Inpage Checkout, XDK, callbacks
setup-senangpaysenangPay hosted/manual checkout, Direct API, callbacks, query status, refunds, plugins, recurring, payout, tokenisation, split settlement
setup-hitpayHitPay Payment Request API, hosted checkout, Drop-In UI, webhooks, refunds, plugins, recurring billing, payouts
setup-stripe-malaysiaStripe Malaysia Checkout, Payment Element, webhooks, Stripe CLI, MYR, cards, FPX

Install

Before installing:

  1. Check current installed version.
  2. Verify your agent supports Skills.
  3. Update npm if needed.

Install from this repository:

npx skills@latest add afu-it/malaysia-payment-gateway

The CLI can show available skills and let you select them interactively.

List available skills:

npx skills@latest add afu-it/malaysia-payment-gateway --list

Install all skills:

npx skills@latest add afu-it/malaysia-payment-gateway --all

Install one skill:

npx skills@latest add afu-it/malaysia-payment-gateway --skill setup-curlec

Install globally:

npx skills@latest add afu-it/malaysia-payment-gateway -g

Verify CLI version:

npx skills@latest --version

Recommended Setup

  1. Install the overview skill first:
npx skills@latest add afu-it/malaysia-payment-gateway --skill malaysia-payment-gateway
  1. Install the provider you need:
npx skills@latest add afu-it/malaysia-payment-gateway --skill setup-curlec
  1. Ask your agent to inspect your project before coding.

  2. Ask your agent to implement checkout, webhook verification, settlement, tests, and docs together.

How To Ask Your Agent

Use the skill name in your prompt:

Use $malaysia-payment-gateway to review my app payment flow and tell me what is missing before production.
Use $setup-curlec to implement Curlec checkout, callback verification, webhook settlement, and tests in this Next.js project.
Use $setup-chip to add CHIP Collect checkout and webhook handling. Do not unlock access from redirect alone.
Use $setup-xendit to implement hosted checkout with Xendit Payment Sessions and idempotent webhook settlement.
Use $setup-bayarcash to integrate Bayarcash payments with checksum/callback verification.
Use $setup-bcl to set up BCL Pay and explain which parts are BCL-owned versus Bayarcash-linked.
Use $setup-toyyibpay to integrate toyyibPay bills, callback hash verification, and idempotent settlement.
Use $setup-billplz to integrate Billplz bills, X Signature verification, and idempotent settlement.
Use $setup-fiuu to integrate Fiuu hosted checkout, Notify URL verification, Callback URL handling, and idempotent settlement.
Use $setup-senangpay to integrate senangPay hosted checkout, Callback URL verification, query status reconciliation, and idempotent settlement.
Use $setup-hitpay to integrate HitPay Payment Request checkout, webhook signature verification, status fallback, and idempotent settlement.
Use $setup-stripe-malaysia to integrate Stripe Malaysia checkout, webhook verification, and idempotent settlement.

Agent Rules

Ask the agent to:

  • Read existing code before adding new files.
  • Read provider references/account-setup.md before explaining registration, credentials, dashboard setup, or required API keys.
  • Use provider references/account-setup.md for framework setup notes, required env vars, and deployment secrets where documented.
  • When referral or invite guidance exists, present it as optional and transparent; never imply it is required unless provider registration actually requires an invite.
  • Keep gateway secrets server-side.
  • Create a local pending payment before provider checkout.
  • Verify webhook/callback signatures.
  • Re-fetch payment state from the provider when possible.
  • Match provider, gateway reference, amount, currency, and local payment status before marking paid.
  • Make settlement idempotent.
  • Add tests for invalid signatures, duplicate events, wrong amount/currency, and successful settlement.

Production Checklist

  • Required environment variables are documented.
  • Database migrations are included.
  • Webhook URLs are configured in sandbox and live dashboards.
  • Sandbox payment succeeds.
  • Duplicate webhook replay is harmless.
  • Fake success redirect cannot unlock paid access.
  • Live and sandbox keys are separated.

Contribute A New Gateway

Contributions are welcome. Use one folder per skill.

Step 1: Pick a skill name

Use action-style names:

setup-toyyibpay
setup-senangpay
setup-stripe-malaysia

Rules:

  • Lowercase only.
  • Use hyphens.
  • Keep it short.
  • Folder name must match name: in SKILL.md.

Step 2: Create the folder

mkdir -p setup-yourgateway/references setup-yourgateway/agents

Step 3: Add SKILL.md

Minimum shape:

---
name: setup-yourgateway
description: Set up, build, debug, review, and explain YourGateway payment integrations. Use when working with checkout, payment links, callbacks, webhooks, signatures, refunds, sandbox/live setup, and payment settlement for YourGateway.
---

# Setup YourGateway

Use this skill for YourGateway integration work.

## Source

Read `references/yourgateway.md` before giving factual API guidance or writing integration code.

## Core Workflow

1. Identify environment: sandbox or production.
2. Create local pending payment first.
3. Create checkout/session server-side.
4. Verify callback/webhook signature.
5. Re-fetch payment state from provider when possible.
6. Settle idempotently after amount, currency, provider, and reference match.

Step 4: Add agents/openai.yaml

interface:
  display_name: "Setup YourGateway"
  short_description: "Set up YourGateway payments"
  default_prompt: "Use $setup-yourgateway to integrate YourGateway payments."

Step 5: Add references

Create:

setup-yourgateway/references/yourgateway.md

Include:

  • Official docs URLs.
  • Environment base URLs.
  • Auth method.
  • Checkout/session endpoint.
  • Webhook/callback signature rules.
  • Amount unit rules.
  • Sandbox test notes.
  • Common failure fixes.

Do not include real API keys, tokens, merchant secrets, or private customer data.

Step 6: Validate

Run validator:

python3 /home/user/.codex/skills/.system/skill-creator/scripts/quick_validate.py setup-yourgateway

If you do not have that validator, install the latest Skills CLI and at minimum verify:

npx skills@latest --version

Step 7: Test install locally

From a separate test directory:

npx skills@latest add /path/to/malaysia-payment-gateway --skill setup-yourgateway

Step 8: Open pull request

git checkout -b add-setup-yourgateway
git add setup-yourgateway
git commit -m "Add setup-yourgateway skill"
git push origin add-setup-yourgateway

Then open a pull request with:

  • Gateway name.
  • What products/features are covered.
  • Official docs source links.
  • Validation result.
  • Any known gaps.

常见问题

What is malaysia-payment-gateway?

malaysia-payment-gateway is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by afu-it. Agent skills for implementing Malaysia payment gateway integrations. It has 62 GitHub stars.

Is malaysia-payment-gateway safe to use?

Yes. malaysia-payment-gateway passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install malaysia-payment-gateway?

Clone the repository with "git clone https://github.com/afu-it/malaysia-payment-gateway" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to malaysia-payment-gateway?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh malaysia-payment-gateway against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情