원클릭으로
pull-request-workflow
Automates the process of creating a pull request using the custom issue_manager script, replacing the need for gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automates the process of creating a pull request using the custom issue_manager script, replacing the need for gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when planning or operating a side project with GitHub issues and Notion only. Splits sources of truth, keeps active work small, and defines a low-overhead weekly and per-session routine.
Use when turning local work into a GitHub-backed change in this repository. Covers branch creation, issue linkage, push, and PR creation using local git plus scripts/issue_manager.py or direct GitHub API access.
Use when checking, creating, updating, syncing, or triaging GitHub issues in this repository via scripts/issue_manager.py and direct GitHub API reads.
Preserve existing links when editing Notion pages. Use for any request that updates Notion page content so edits are based on the current source and do not accidentally remove previously written links.
Use when creating or reorganizing `.specs` files in this repository. Keeps specs aligned with GitHub issue numbers, epic folders, and the current area-based directory layout.
| name | Pull Request Workflow |
| description | Automates the process of creating a pull request using the custom issue_manager script, replacing the need for gh CLI. |
This skill allows you to create GitHub Pull Requests using the local scripts/issue_manager.py script, which directly interacts with the GitHub API. This is useful when the gh CLI is not available.
httpx and python-dotenv must be installed.GITHUB_TOKEN must be set in .env.scripts/issue_manager.py must contain the create-pr command.To create a Pull Request from a source branch (e.g., develop) to a target branch (e.g., main):
python scripts/issue_manager.py create-pr \
--title "PR Title" \
--body "Detailed description of the changes" \
--head <source_branch> \
--base <target_branch>
python scripts/issue_manager.py create-pr \
--title "CHORE: Refactor Specs" \
--body "Consolidates specs and updates sync logic." \
--head develop \
--base main