원클릭으로
workon-pr-update
Update sections of an existing pull request. Use when the user wants to improve or fix the PR description.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Update sections of an existing pull request. Use when the user wants to improve or fix the PR description.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze flaky CI tests using CircleCI Insights. Use when investigating test flakiness, triaging CI failures, or deciding which flaky tests to fix next.
Check CircleCI status for a branch and help fix CI failures.
Add a comment to the current ClickUp ticket. Use when the user says "workon comment" or wants to add a comment to the ticket.
Merge a pull request and post a merge comment. Only use when explicitly requested.
Create a pull request using the workon CLI. Use when the user says "workon pr", "create a PR", "open a PR", or indicates code is ready for review.
Check the status of a pull request including CI checks and approvals.
| name | workon-pr-update |
| description | Update sections of an existing pull request. Use when the user wants to improve or fix the PR description. |
| argument-hint | ["--summary \"...\" --description \"...\" --testing \"...\""] |
| allowed-tools | Bash(workon:*), Bash(gh:*) |
Update specific sections of an existing PR.
Check current PR body:
gh pr view --json body
Update relevant sections:
workon pr-update --summary "..." --description "..." --testing "..."
Only include the flags for sections you're updating.
--summary "..." - Update the summary section--description "..." - Update the description section--testing "..." - Update the testing instructions--ticket <id> - Update the ticket referenceFor longer content, pipe it to a specific section:
echo "content" | workon pr-update --description -