From ai-sdlc
Shows AI-SDLC pipeline status for current branch or specified issue number, including issue/PR details, CI checks, reviews, coverage, and next actions.
How this command is triggered — by the user, by Claude, or both
Slash command
/ai-sdlc:status issue-numberThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Show the current AI-SDLC pipeline status. ## If an issue number is provided ($ARGUMENTS) ## If no issue number (check current branch) ## Report Present a clear status summary: - **Issue**: title, state, labels (which pipeline stage) - **PR**: number, state, CI checks (pass/fail/pending) - **Reviews**: approved/changes-requested/pending - **Coverage**: codecov status if available - **Next action**: what needs to happen next (fix CI, address reviews, ready to merge, etc.)
Show the current AI-SDLC pipeline status.
# Get issue details and labels
gh issue view $ARGUMENTS --repo ai-sdlc-framework/ai-sdlc --json title,state,labels,assignees
# Find linked PRs
gh pr list --repo ai-sdlc-framework/ai-sdlc --search "Closes #$ARGUMENTS OR Fixes #$ARGUMENTS" --json number,title,state,headRefName,statusCheckRollup
# Get current branch
git branch --show-current
# Check for open PRs on this branch
gh pr list --repo ai-sdlc-framework/ai-sdlc --head $(git branch --show-current) --json number,title,state,statusCheckRollup,reviews
# Show recent CI status
gh pr checks $(gh pr list --repo ai-sdlc-framework/ai-sdlc --head $(git branch --show-current) --json number --jq '.[0].number') --repo ai-sdlc-framework/ai-sdlc 2>/dev/null || echo "No open PR on this branch"
Present a clear status summary:
npx claudepluginhub ai-sdlc-framework/ai-sdlc --plugin ai-sdlc/gstRuns gstatus.py to display GitHub PR status including branch/PR info, CI/CD checks, file changes summary, and merge conflicts.
/check-github-ciChecks GitHub Actions CI status for the current PR using gh pr checks, reporting successful, failing, pending checks with names, elapsed times, and URLs until completion.
/check-github-ciMonitors GitHub Actions CI status for pull requests with `gh pr checks`, tracks until completion, and displays results including check names, statuses, elapsed times, and URLs.
/check-github-ciMonitors GitHub Actions CI status for the current pull request until completion, listing checks with status, duration, and URLs.
/statusDisplays a read-only snapshot of the ForgeDock pipeline: open issues grouped by workflow label, active PRs with age, stale items, and milestone progress. Accepts --repo and --stale-days flags.