Skip to content

Commit a88fdbe

Browse files
nkoji21claude
andcommitted
chore: resolve merge conflicts with main
- fix-ci: keep English description and Skill tool invocation - pr-flow-ja: keep thin-wrapper version over pr-flow - pr-flow: drop context injection block (not needed), use cd && gh pr view Co-Authored-By: Claude <noreply@anthropic.com>
2 parents cf79da6 + 040bcc9 commit a88fdbe

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

.agents/skills/pr-flow/SKILL.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,11 @@ allowed-tools: Bash, Skill, Agent
77

88
Orchestrate the full pull request workflow from staged changes to squash-merged PR.
99

10-
**Current branch:** `!`git branch --show-current``
11-
12-
**Working tree status:**
13-
```
14-
!`git status --short`
15-
```
16-
1710
## Phase 1: Worktree
1811

1912
Use the Skill tool to invoke the `git-worktree` skill.
2013

14+
2115
It will return a worktree path (e.g. `/tmp/feat-foo`) and a branch name. Store both:
2216
- `WORKTREE_PATH` — absolute path to the worktree
2317
- `BRANCH_NAME` — the branch created inside the worktree
@@ -48,7 +42,7 @@ Use the Skill tool to invoke the `git-pr` skill with args `--path $WORKTREE_PATH
4842

4943
After the skill completes, capture the PR URL:
5044
```
51-
gh -C $WORKTREE_PATH pr view --json url --jq '.url'
45+
cd $WORKTREE_PATH && gh pr view --json url --jq '.url'
5246
```
5347

5448
If `gh pr create` failed because a PR already exists, retrieve the existing PR URL with the same command.

.cursor/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,8 @@
7979
],
8080
"terminal.integrated.gpuAcceleration": "off",
8181
"window.systemColorTheme": "dark",
82-
"window.autoDetectColorScheme": false
82+
"window.autoDetectColorScheme": false,
83+
"accessibility.signals.terminalBell": {
84+
"sound": "on"
85+
}
8386
}

.zshrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ man() {
130130

131131
# ===== オプション =====
132132

133-
# ビープ音を無効化
134-
setopt no_beep
135133

136134
# ===== プラグイン =====
137135

0 commit comments

Comments
 (0)