بنقرة واحدة
set-milestone
Add, update, or remove milestones on GitHub issues using gh issue edit
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Add, update, or remove milestones on GitHub issues using gh issue edit
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Auth engine rules for QAuth. Use when working with CredentialProvider implementations, token claim generation, the provider registry, or the federation layer. Enforces the pluggable provider pattern and correct token claim behaviour.
OAuth 2.1 / OIDC rules for QAuth. Use when working with authorization endpoints, token flows, PKCE, JWKS, OIDC discovery, or spec compliance (RFC 9700, OIDC Core 1.0). Covers endpoint behaviour, email claim rules, and token security.
Database schema rules for QAuth. Use when working with the identity model, Drizzle ORM, migrations, repositories, or claim resolution. Reflects the CURRENT shipped schema — the identifier-abstraction model (ADR-002, IMPLEMENTED via Epic
Link GitHub issues in parent-child (sub-issue) relationships using GraphQL
Add a GitHub issue to a project board using gh project item-add
Create a new GitHub issue following QAuth project conventions using gh issue create
| name | set-milestone |
| description | Add, update, or remove milestones on GitHub issues using gh issue edit |
| disable-model-invocation | true |
Add or update the milestone on a GitHub issue.
Manage milestones on issues.
gh api repos/{owner}/{repo}/milestones --jq '.[] | "\(.number): \(.title) (\(.state))"'
# Using gh issue edit (recommended)
gh issue edit {issue_number} --milestone "MVP"
gh issue edit {issue_number} --remove-milestone
gh api repos/{owner}/{repo}/milestones \
-f title="v1.0" \
-f description="First release milestone" \
-f due_on="2026-06-01T00:00:00Z" \
-f state="open"
# Get milestone number first
gh api repos/{owner}/{repo}/milestones --jq '.[] | select(.title=="MVP") | .number'
# Update milestone
gh api repos/{owner}/{repo}/milestones/{milestone_number} \
-X PATCH \
-f description="Updated description" \
-f state="open"
gh api repos/{owner}/{repo}/milestones/{milestone_number} \
-X PATCH \
-f state="closed"
# Set milestone on multiple issues
gh issue edit 1 2 3 4 5 --milestone "MVP"
Current milestone is MVP; see github-conventions for the phase list.
gh issue edit to set the milestone