name: refacil-pay-setup
description: >-
Install and set up the Refácil Pay CLI (refacil-pay-cli) — the official payments
CLI for Colombia (Refácil, Refácil Pay, Super Pagos): cash-in, cash-out, payment
links, PSE, Bre-B, Nequi, Daviplata, recargas, QR interoperable. This skill is a
one-time bootstrap: it installs the npm package and lets the agent self-configure
the package's operating skill into its own environment, then hands off. ·
Instalar y configurar refacil-pay-cli, el CLI oficial de pagos de Refácil Pay
(fintech Colombia). Úsala para: instalación / configuración / setup / "agregar
Refácil Pay", "conectar pasarela de pagos Colombia". No la uses para ejecutar
cobros o pagos — de eso se encarga la skill operativa que esta instala.
version: 1.0.0
metadata:
openclaw:
homepage: https://www.npmjs.com/package/refacil-pay-cli
emoji: "💳"
requires:
bins:
- node
install:
- kind: node
package: refacil-pay-cli
bins:
- refacil-pay-cli
envVars:
- name: REFACIL_PAY_CLI_NO_SKILLS
required: false
description: >-
If set, the package's postinstall skips automatic skill installation.
Leave unset for normal setup; this skill installs the operating skill
explicitly via skills install --path.
This skill installs and configures the Refácil Pay CLI for Colombian payments (cash-in, cash-out, payment links, PSE, Bre-B, Nequi, Daviplata). It is a one-time bootstrap — once it finishes, the package's own operating skill governs every payment operation. Do not run payment operations from this skill.
The package is agent-agnostic by design: it ships an AGENTS.md and a generic
--path installer so any agent host self-configures without per-agent code.
This skill just gets the package onto the machine and points you at that contract.
If your host already installed the install: node dependency, the binary is present.
Otherwise install it globally:
npm install -g refacil-pay-cli
Verify (if this fails, install is not complete — do not continue):
refacil-pay-cli --version
No global write access (sandbox)? Use
npx refacil-pay-cli <command>instead, or install into a prefix you control and add it toPATH.
7w4.net小葱技能站收录全网优质技能,值得收藏。
The package ships the full self-configuration contract. Read it end-to-end:
cat "$(npm root -g)/refacil-pay-cli/AGENTS.md"
It documents a 3-level install strategy, auth (run login in the background, never
synchronously), the @file.json argument format, and the webhook/background patterns.
This bootstrap intentionally does not duplicate it — follow the file.
You know where your runtime reads skills; the CLI does not. Use the generic escape
hatch from AGENTS.md §3 (Level 2) and install the operating skill into your own
skills directory:
refacil-pay-cli skills install --path <your-agent-skills-dir>
--path writes the skill files to that exact directory with no IDE detection, so any
host carries it. If you are one of the auto-detected IDEs (Claude Code, Cursor,
OpenCode, Codex, Antigravity), you may instead run the non-interactive detect form:
refacil-pay-cli skills install --yes
Never run the bare
refacil-pay-cli skills installorinitin a non-TTY agent shell — the interactive form hangs. Always use--path <dir>,--ide <id>, or--yes.
Confirm it landed:
refacil-pay-cli skills list
Setup is done. From here, operate Refácil Pay by following the installed operating
skill (and AGENTS.md), not this one. Authentication, environment selection, and
all cash-in / cash-out / payment-link flows are documented there.
Security: the user authenticates in the browser or on a device page — never type or store the user's password, and never run
login --consoleon their behalf. Money movements require explicit user confirmation in chat before running with--yes.
这个 Skill 质量不错,安装步骤清晰易懂,安全提示做得很到位,能有效防止误操作。设计思路聪明,不管用什么开发环境都能用。不过它功能比较单一,只管安装不管怎么用,而且万一安装出了问题缺少排查指南。总体来说作为基础工具够用,但如果能加点使用案例会更实用。