一键导入
my-issues
List open issues created by or assigned to the current user, deduplicated and prioritized.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List open issues created by or assigned to the current user, deduplicated and prioritized.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Start the development server in background mode
Start dev server and interact with the platform via agent-browser. Use when user asks to browse, test, or demo the platform UI, connect services, or perform any browser-based interaction with the local dev environment.
Reset turbo environment (clean node_modules, reinstall, sync DB)
Check if a PR, commit, or tag has been deployed to production
Query, investigate, and manage Sentry issues for debugging and incident response
Create or update a PR and hand it off to a coding agent worker via load balancing. Removes pending label if present, then assigns a worker.
| name | my-issues |
| description | List open issues created by or assigned to the current user, deduplicated and prioritized. |
| context | fork |
List all open GitHub issues that are assigned to me or created by me (with assignee empty or myself), deduplicate, and present them sorted by priority.
Your args are: $ARGUMENTS
No arguments required.
ME=$(gh api user --jq '.login')
Run two queries in parallel:
# Issues assigned to me
gh issue list --assignee "$ME" --state open \
--json number,title,labels,assignees,author,createdAt,updatedAt \
--limit 50
# Issues authored by me
gh issue list --author "$ME" --state open \
--json number,title,labels,assignees,author,createdAt,updatedAt \
--limit 50
Categorize each issue by reading its title, labels, and body (fetch body for each issue). Apply the following priority rules:
| Priority | Criteria |
|---|---|
| P0 | Bugs or missing features that block core user flows (e.g., broken interactions, missing UI components, data loss) |
| P1 | Important UX issues, newly assigned tasks, features affecting daily user experience |
| P2 | Minor UI polish, experience optimizations, larger features that need scoping |
| P3 | Long-term / operational tasks, nice-to-haves |
Use the following format:
## My Open Issues (N total)
### P0 — Blocking Core Functionality
| # | Title | Type | Source | Created |
|---|-------|------|--------|---------|
| #1234 | Short description | Bug | @author → me | 03-19 |
### P1 — Important
...same table format...
### P2 — UX Improvements
...same table format...
### P3 — Long-term / Ops
...same table format...
Column definitions:
@author → me if assigned by others, self-created if self-created and self-assigned, self-created (unassigned) if self-created with no assigneeAfter the table, add a brief Suggested Order section with a numbered list explaining the recommended order and any dependency relationships between issues.
gh CLI for all GitHub queriesgh api user --jq '.login'