一键导入
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