From ai-sdlc
Show AI-SDLC pipeline status for the current branch or a specific issue
npx claudepluginhub ai-sdlc-framework/ai-sdlc --plugin ai-sdlcissue-numberShow 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.)
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
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: