From gitlab-skills
Use this skill when the user asks to see CI pipeline status, list recent pipelines, check build history, or view pipeline results. Triggers on phrases like "pipeline list", "CI status", "recent builds", "pipeline history", "show pipelines", "what pipelines ran".
npx claudepluginhub yjhjstz/cc-skills --plugin gitlab-skillsThis skill is limited to using the following tools:
View GitLab CI/CD pipeline list for the current repository.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
View GitLab CI/CD pipeline list for the current repository.
Extract from the user's message: an optional branch name or status filter (failed, success, running, pending, canceled). If not clearly provided, proceed without a filter.
Use glab CLI. Must run from a git directory with GitLab remote.
Run glab ci list -P 10 with optional filters:
failed, success, running, pending, canceled, skipped, created, manual), add -s <status>-r <branch>Present results in a clean table showing: IID, Status, Ref, Created time, Duration.
Suggest follow-up actions:
/gitlab-ci-log <iid> for failed pipelines/gitlab-ci-run to trigger a new runIMPORTANT: Do NOT use interactive/TUI commands (glab ci view, glab ci trace).