用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-payment-method命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Validate Lenovo serial and create asset in RepairShopr
正在显示 SKILL.md
基于 SOC 职业分类
| name | repairshopr-payment-method |
| description | List available payment methods in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"accountants, receptionists, administrators","api":"GET /payment_methods"} |
I list all configured payment methods in your RepairShopr account. Payment methods are options like "Cash", "Check", "Credit Card", etc., that appear when recording payments or configuring payment processing.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermission: All Users except Single Customer Users may use this action.
List Payment Methods (GET /payment_methods) No parameters required.
Example call:
const result = await skill({ name: "repairshopr-payment-method" })
Response includes:
{
"payment_methods": [
{ "id": 1, "name": "Credit Card", "uses_card_processing": false },
{ "id": 2, "name": "Cash", "uses_card_processing": false },
{ "id": 3, "name": "Check", "uses_card_processing": false },
{ "id": 4, "name": "Offline CC", "uses_card_processing":
uses_card_processing indicates if the method triggers card processing (may be false by default unless integrated)name is the display name and can be customized by the shopid can be used to identify the method internallyrepairshopr-payment - Creating payments using these methodsrepairshopr-payment-profile - For stored credit card profiles