Files
claude-engineering-plugin/plugins/compound-engineering/skills/ce-resolve-pr-feedback/scripts/resolve-pr-thread
Trevin Chow 5c0ec9137a
Some checks failed
CI / pr-title (push) Has been cancelled
CI / test (push) Has been cancelled
Release PR / release-pr (push) Has been cancelled
Release PR / publish-cli (push) Has been cancelled
refactor(cli)!: rename all skills and agents to consistent ce- prefix (#503)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 15:44:22 -07:00

24 lines
406 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if [ $# -eq 0 ]; then
echo "Usage: resolve-pr-thread THREAD_ID"
echo "Example: resolve-pr-thread PRRT_kwDOABC123"
exit 1
fi
THREAD_ID=$1
gh api graphql -f threadId="$THREAD_ID" -f query='
mutation ResolveReviewThread($threadId: ID!) {
resolveReviewThread(input: {threadId: $threadId}) {
thread {
id
isResolved
path
line
}
}
}'