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.
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.
更多技能请访问小葱技能站7w4.net。
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 质量不错,安装步骤清晰易懂,安全提示做得很到位,能有效防止误操作。设计思路聪明,不管用什么开发环境都能用。不过它功能比较单一,只管安装不管怎么用,而且万一安装出了问题缺少排查指南。总体来说作为基础工具够用,但如果能加点使用案例会更实用。