Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.39 KB

File metadata and controls

41 lines (31 loc) · 1.39 KB

CHIP Send — Skill

AI agent skill for integrating the CHIP Send payouts API (docs). A SKILL.md prompt/instruction file that a coding agent reads when the merchant installs the skill into their project.

Install

# Latest from the default branch
npx -y github:CHIPAsia/skill-send

# Pinned to a specific tag (recommended for production)
npx -y github:CHIPAsia/skill-send#v0.1.0

# Pinned to a specific commit
npx -y github:CHIPAsia/skill-send#<commit-sha>

This runs bin/install.cjs and copies SKILL.md into a local chip-skill-send/ folder in the merchant's project.

Layout

SKILL.md             ← authoritative content. Edit this file.
chip-skill-send/SKILL.md  ← mirror produced by `bin/install.cjs`. Gitignored;
                            regenerated locally by the installer or by
                            `npx github:CHIPAsia/skill-send`.
bin/install.cjs      ← the installer (CommonJS, no deps).
package.json         ← version + bin entry + repository URL. No production deps.
README.md            ← this file.
LICENSE              ← MIT.

Related