بنقرة واحدة
conflict-resolve
最新のベースブランチ取り込みで発生したGit競合を、ours/theirs双方の修正意図を分析して共存解決し、コミット/プッシュまで完了する。競合解消が必要なときに使用する。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
最新のベースブランチ取り込みで発生したGit競合を、ours/theirs双方の修正意図を分析して共存解決し、コミット/プッシュまで完了する。競合解消が必要なときに使用する。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Triage incoming requirements against existing specs, then create or update layered SDD artifacts (_policies + spec-*) in one workflow.
Implement automated acceptance tests (E2E/API/Integration) aligned with US/TC/CON-API obligations from specs and contracts.
Analyze the repository and tune qfai.config.yaml (testFileGlobs, exclude globs, optional specSections).
Run structured discussion that defines exploration conditions, evaluation rubric, and anti-goals for downstream prototyping.
Unified implementation skill that orchestrates the full TDD micro-cycle (Red/Green/Refactor) one test at a time using test-list.md as the execution ledger.
Iterate one prototype through up to 10 cycles of generate-capture-review against a frozen DESIGN.md, focusing on information architecture, navigation flow, usability, and functionality.
| name | conflict-resolve |
| description | 最新のベースブランチ取り込みで発生したGit競合を、ours/theirs双方の修正意図を分析して共存解決し、コミット/プッシュまで完了する。競合解消が必要なときに使用する。 |
| argument-hint | ベースブランチ(省略時 origin/main の最新HEAD) |
latest base branch 取り込みで発生した競合を、両ブランチの修正意図を壊さず共存解決する。
git diff --name-only --diff-filter=U が 0 件git fetch origin
origin/main)。git status --short
git diff --name-only --diff-filter=U
競合なし を報告する。git diff --name-only --diff-filter=U
git show :1:<file>(base)git show :2:<file>(ours)git show :3:<file>(theirs)git log --oneline --decorate -- <file>git diff -- <file>ours/theirs の丸ごと採用は原則禁止。例外時は根拠を作業報告に記録。rg -n "<<<<<<<|=======|>>>>>>>"
git add <resolved-files>
コミットメッセージ規約は reference.md に従う。
git commit -m "merge: resolve conflicts with <base-branch>"
git push
skip / todo / 削除での回避@ts-ignore、@ts-expect-error、any、lint-disable 等)停止時は reference.md の作業報告テンプレートで、状況・試行内容・判断が必要な点を報告する。