From 219af065d83c3d3f230d759e3217100d4173f6ca Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Tue, 24 Feb 2026 12:44:20 +0100 Subject: [PATCH] chore(skills): remove temp file pattern from pr-push skill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pass PR description inline instead of writing to /tmp/pr-body.md and cat-ing it back — matches the tea-comment wrapper approach. Co-Authored-By: Claude Opus 4.6 --- .claude/skills/pr-push/SKILL.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.claude/skills/pr-push/SKILL.md b/.claude/skills/pr-push/SKILL.md index c1e241140..82a996b23 100644 --- a/.claude/skills/pr-push/SKILL.md +++ b/.claude/skills/pr-push/SKILL.md @@ -100,15 +100,11 @@ git diff --stat main... Draft title (`(): `, max 70 chars) and description. ```bash -cat > /tmp/pr-body.md << 'EOF' -## Summary -... -EOF tea pr create \ --repo jpmschweitzer/settled-reach \ --login schweitz \ --title "" \ - --description "$(cat /tmp/pr-body.md)" \ + --description "## Summary ..." \ --base main \ --head <branch> ```