From github-workflow
List open issues created by or assigned to the current user, deduplicated and prioritized.
npx claudepluginhub vm0-ai/team-skills --plugin github-workflowThis skill uses the workspace's default tool permissions.
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.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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'