Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

wompi-node

wompi-node 收录了来自 pulgueta 的 7 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
7
Stars
8
更新
2026-06-02
Forks
0
职业覆盖
1 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

impeccable
软件开发工程师

Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks.

2026-06-02
wompi-client-setup
软件开发工程师

Initialize WompiClient from @pulgueta/wompi. Covers publicKey, privateKey, sandbox flag, the error-first Result<T> tuple [error, data] that every SDK method returns, WompiError subclass narrowing (.type on NOT_FOUND_ERROR / INPUT_VALIDATION_ERROR, .statusCode on request errors), and subpath exports (/server, /schemas). Load when setting up the SDK, configuring API keys, or writing error-handling code.

2026-06-02
wompi-go-to-production
软件开发工程师

Go-live checklist for @pulgueta/wompi integrations. Verifies environment variables for publicKey, privateKey, and integrityKey; sandbox vs production URL switching; unique transaction references per charge; amount_in_cents integer precision (never floats, already in cents); and complete error-tuple handling before responding to clients. Includes a full end-to-end card transaction example from client form data through server response. Load before deploying a Wompi integration or reviewing production readiness.

2026-06-02
wompi-payment-links
软件开发工程师

Create, retrieve, and manage Wompi hosted payment links using @pulgueta/wompi. Covers createPaymentLink (name, description, single_use, collect_shipping, amount_in_cents, currency, taxes, customer_data, redirect_url), getPaymentLink (no auth required), updatePaymentLink to activate/deactivate, Tax union (TaxByAmount with amount_in_cents, TaxByPercentage with percentage 1–50), and CustomerReference constraints (max 2, label max 24 chars). Load when building hosted checkout pages or no-code payment collection.

2026-06-02
wompi-payment-sources
软件开发工程师

Create and retrieve reusable Wompi payment sources using @pulgueta/wompi. Covers createPaymentSource (CARD or NEQUI, requires acceptance_token and privateKey), getPaymentSource, PaymentSourceStatus (AVAILABLE/PENDING), and charging a customer via payment_source_id in createTransaction. Load when building recurring billing, saved payment methods, or subscription flows.

2026-06-02
wompi-server-integration
软件开发工程师

Wire @pulgueta/wompi into a Hono or Elysia backend. Covers importing Zod schemas from @pulgueta/wompi/schemas for route-level request validation, processing a Wompi transaction inside a server handler, persisting transaction results (id, status, reference, amount_in_cents) to a database before responding, and mapping WompiError subclasses to HTTP error responses. Load when integrating the SDK into a server framework or adding payment endpoints to an existing backend.

2026-06-02
wompi-transactions
软件开发工程师

Full Wompi transaction lifecycle using @pulgueta/wompi. Covers getMerchant for acceptance_token, tokenizeCard and tokenizeNequi, getSignatureKey for SHA-256 integrity signature (amountInCents as-is, never multiplied), createTransaction with payment_method or payment_source_id, getTransaction, listTransactions with from_date/until_date/status filters, voidTransaction with nested data.transaction result, and pse.getFinancialInstitutions. Load when processing payments, tokenizing cards, computing signatures, or querying transaction history.

2026-06-02