From a8a18128dd1f99ac83ca9f985b0f736f394a888a Mon Sep 17 00:00:00 2001 From: Bryan Deng Date: Sat, 16 May 2026 00:02:23 +0800 Subject: [PATCH] chore: migrate review-pr skill from graphite to git town --- .claude/skills/review-pr/SKILL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.claude/skills/review-pr/SKILL.md b/.claude/skills/review-pr/SKILL.md index ec397f5..417598f 100644 --- a/.claude/skills/review-pr/SKILL.md +++ b/.claude/skills/review-pr/SKILL.md @@ -29,8 +29,8 @@ gh api repos/$REPO/pulls/$PR/comments ## Step 2 — Navigate to the right branch ```bash -gt log # see the full stack with PR status -gt checkout # switch to the branch that needs fixing +git town branch # see the full stack with branch hierarchy +git town switch # interactively switch to the branch that needs fixing ``` ## Step 3 — Address the feedback @@ -39,18 +39,18 @@ Choose based on what the fix involves: - **Fix to existing code in this PR** → amend the commit (no new message needed): ```bash - gt modify -a + git add -A && git commit --amend --no-edit ``` - **New work that extends scope or belongs in a new PR** → create a new commit: ```bash - gt create -am "type: message" + git add -A && git commit -m "type: message" ``` ## Step 4 — Re-submit ```bash -gt submit --no-interactive # pushes the current branch and restacks dependents +git town sync # force-pushes current branch and rebases all branches above it ``` ## Step 5 — Update PR description if needed