taiwan-payment-skill 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/README.md +197 -0
  2. package/assets/taiwan-payment/CLAUDE.md +297 -0
  3. package/assets/taiwan-payment/EXAMPLES.md +1425 -0
  4. package/assets/taiwan-payment/README.md +306 -0
  5. package/assets/taiwan-payment/SKILL.md +857 -0
  6. package/assets/taiwan-payment/data/error-codes.csv +20 -0
  7. package/assets/taiwan-payment/data/field-mappings.csv +15 -0
  8. package/assets/taiwan-payment/data/operations.csv +8 -0
  9. package/assets/taiwan-payment/data/payment-methods.csv +24 -0
  10. package/assets/taiwan-payment/data/providers.csv +4 -0
  11. package/assets/taiwan-payment/data/reasoning.csv +32 -0
  12. package/assets/taiwan-payment/data/troubleshooting.csv +18 -0
  13. package/assets/taiwan-payment/references/ecpay-payment-api.md +880 -0
  14. package/assets/taiwan-payment/references/newebpay-payment-api.md +677 -0
  15. package/assets/taiwan-payment/references/payuni-payment-api.md +997 -0
  16. package/assets/taiwan-payment/scripts/core.py +288 -0
  17. package/assets/taiwan-payment/scripts/recommend.py +269 -0
  18. package/assets/taiwan-payment/scripts/search.py +185 -0
  19. package/assets/taiwan-payment/scripts/test_payment.py +358 -0
  20. package/assets/templates/base/quick-reference.md +370 -0
  21. package/assets/templates/base/skill-content.md +851 -0
  22. package/assets/templates/platforms/antigravity.json +25 -0
  23. package/assets/templates/platforms/claude.json +26 -0
  24. package/assets/templates/platforms/codebuddy.json +25 -0
  25. package/assets/templates/platforms/codex.json +25 -0
  26. package/assets/templates/platforms/continue.json +25 -0
  27. package/assets/templates/platforms/copilot.json +25 -0
  28. package/assets/templates/platforms/cursor.json +25 -0
  29. package/assets/templates/platforms/gemini.json +25 -0
  30. package/assets/templates/platforms/kiro.json +25 -0
  31. package/assets/templates/platforms/opencode.json +25 -0
  32. package/assets/templates/platforms/qoder.json +25 -0
  33. package/assets/templates/platforms/roocode.json +25 -0
  34. package/assets/templates/platforms/trae.json +25 -0
  35. package/assets/templates/platforms/windsurf.json +25 -0
  36. package/dist/index.js +17095 -0
  37. package/package.json +58 -0
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "antigravity",
3
+ "displayName": "Antigravity",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".agent",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.agent"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "platform": "claude",
3
+ "displayName": "Claude Code",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".claude",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.claude"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": true,
21
+ "data": true
22
+ },
23
+ "title": "Taiwan Payment Development Skill",
24
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
25
+ "skillOrWorkflow": "Skill"
26
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "codebuddy",
3
+ "displayName": "CodeBuddy",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".codebuddy",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.codebuddy"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "codex",
3
+ "displayName": "Codex",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".codex",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.codex"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "continue",
3
+ "displayName": "Continue",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".continue",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.continue"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "copilot",
3
+ "displayName": "GitHub Copilot",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".github",
7
+ "skillPath": "copilot/skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.github"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "cursor",
3
+ "displayName": "Cursor",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".cursor",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.cursor"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "gemini",
3
+ "displayName": "Gemini Code Assist",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".gemini",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.gemini"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "kiro",
3
+ "displayName": "Kiro",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".kiro",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.kiro"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "opencode",
3
+ "displayName": "OpenCode",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".opencode",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.opencode"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "qoder",
3
+ "displayName": "Qoder",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".qoder",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.qoder"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "roocode",
3
+ "displayName": "Roo Code",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".roo",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.roo"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "trae",
3
+ "displayName": "Trae",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".trae",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.trae"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "platform": "windsurf",
3
+ "displayName": "Windsurf",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".windsurf",
7
+ "skillPath": "skills/taiwan-payment",
8
+ "filename": "SKILL.md",
9
+ "globalRoot": "~/.windsurf"
10
+ },
11
+ "frontmatter": {
12
+ "name": "taiwan-payment",
13
+ "description": "Taiwan Payment API integration specialist for ECPay, NewebPay, and PAYUNi payment gateways. Use when developing payment systems, implementing credit card, ATM, CVS, or e-wallet payments, or working with Taiwan payment gateway APIs. Handles encryption (SHA256, AES-256-CBC, AES-256-GCM), API requests, and service provider differences.",
14
+ "user-invocable": "true"
15
+ },
16
+ "sections": {
17
+ "examples": true,
18
+ "references": true,
19
+ "scripts": true,
20
+ "quickReference": false
21
+ },
22
+ "title": "Taiwan Payment Development Skill",
23
+ "description": "Comprehensive guide for Taiwan Payment Gateway integration (ECPay, NewebPay, PAYUNi)",
24
+ "skillOrWorkflow": "Skill"
25
+ }