원클릭으로
submit-pull-request
Create a PR using the project's pull request template. Always use when opening a new PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a PR using the project's pull request template. Always use when opening a new PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Query and inspect logs and traces from the local OpenObserve instance for debugging. Use when investigating errors, tracing request flows, inspecting spans, checking log output, or diagnosing issues in the running application.
Compile a digest of merged pull requests and commits up to a given point in time. Use when summarizing recent project activity, preparing release notes, or reviewing what changed over a period.
MUST be used whenever the agent needs to query, inspect, or debug values from the local PostgreSQL database. This includes checking user data, draft states, lab assignments, student rankings, faculty choices, or any other database-stored information.
| name | submit-pull-request |
| description | Create a PR using the project's pull request template. Always use when opening a new PR. |
| compatibility | Requires Git (`git`) and the GitHub CLI (`gh`). |
| user-invocable | true |
| disable-model-invocation | false |
Summarize the latest changes in this branch to create a pull request on GitHub.
main to see what changes need to be described in the pull request. Make sure to only focus on the finalized implementation details. Since pull requests tend to have work-in-progress commits at the beginning, you should be extra mindful on whether these are still relevant in the finalized snapshot.scratchpad/PR.md. Fill in the placeholder sections and text.gh pr create --base main --head "$(git rev-parse --abbrev-ref HEAD)" --title 'category(scope): concise title' --body-file scratchpad/PR.md
scratchpad/PR.md once successfully submitted.category specifiers like feat, fix, docs, chore, deps, etc. (consistent with the Conventional Commits message style)scope of the changes based on the most affected part of the codebase
db: database changesui: component library changesdev: developer-only changesmeta: workflow-related changesapi: endpoint changesadmin, faculty, student, etc. for role-scoped changes in the appapp: final catch-all scope for general improvements in the app