Check Pull Request on current branch, and obtain unresolved review comments. `gh` command is required. Use this when user instructed with `PR review comment` `PR レビューコメント` etc.
/plugin marketplace add Kurogoma4D/cc-tools/plugin install kurogoma4d-pr-review-check@Kurogoma4D/cc-toolsThis skill is limited to using the following tools:
# Save query to a temp file
cat > /tmp/query.graphql << 'EOF'
query($owner: String!, $repo: String!, $number: Int!) {
repository(owner: $owner, name: $repo) {
pullRequest(number: $number) {
reviewThreads(first: 100) {
nodes {
isResolved
comments(first: 10) {
nodes {
body
author { login }
path
line
}
}
}
}
}
}
}
EOF
# Execute
gh api graphql \
-f query="$(cat /tmp/query.graphql)" \
-f owner="$(gh repo view --json owner --jq '.owner.login')" \
-f repo="$(gh repo view --json name --jq '.name')" \
-F number="$(gh pr view --json number --jq '.number')" \
| jq '.data.repository.pullRequest.reviewThreads.nodes | map(select(.isResolved == false))'
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.