一键导入
fix-bug
Use when investigating a bug, test failure, or unexpected behavior in KimPay - enforces root-cause analysis and a regression test before any fix.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when investigating a bug, test failure, or unexpected behavior in KimPay - enforces root-cause analysis and a regression test before any fix.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when reviewing a KimPay change or PR - applies a payment-gateway-specific checklist covering correctness, security, concurrency, and module hygiene.
Use when building, packaging, or deploying KimPay - covers the build, container image, required environment/secrets, migrations, and health verification.
Use when adding a new feature or endpoint to KimPay - guides spec-driven, TDD implementation that respects module boundaries and payment security rules.
Use when restructuring KimPay code without changing behavior - enforces green-tests-before-and-after and respect for module boundaries.
Use when adding or improving test coverage for KimPay - guides choosing the right test level and writing meaningful payment/concurrency/security tests.
| name | fix-bug |
| description | Use when investigating a bug, test failure, or unexpected behavior in KimPay - enforces root-cause analysis and a regression test before any fix. |
Systematic debugging for the payment gateway. No fix without a root cause and a regression test.
target/surefire-reports/). Trace the failure to its origin. Do not patch symptoms.
@ConditionalOnMissingBean on a scanned @Component (unreliable — use a @Configuration @Bean fallback); missing bean when an infra profile is disabled; H2-vs-Postgres SQL differences; lock not released in finally; BigDecimal scale/equality mistakes../mvnw test suite stays green.fix: and a message naming the root cause.