One-click install
npx skills add https://github.com/rjskene/pipeline --skill run-rjskene
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run
Source: https://github.com/rjskene/pipeline/tree/main/skills/run
Command: npx skills add https://github.com/rjskene/pipeline --skill run-rjskene

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gh, jq, git, bash, and includes references (resource) components.

What problem does it solve?

This Skill helps you manage an issue-driven CI workflow on GitHub by showing exactly what is ready, then advancing only the next correct stage after you confirm.

Core Features & Use Cases

  • Status-first coordination loop: gathers issues, renders the canonical pipeline status table, and proposes one next action based on lifecycle priority.
  • Human-in-the-loop gating: waits for your confirmation before dispatching any classify/plan/evaluate/execute/merge actions.
  • Smart delegation: delegates --analyze to the dedicated hygiene skill, and delegates “full send” back-compat to the autonomous end-to-end runner.
  • Worktree + PR safety rules: enforces the “worktree-first” workflow and routes evaluation/execution by path tiers (docs-only vs multi-task vs quick-fix).
  • Autonomous merge for green subset: runs a merge gate for eligible PRs and skips/flags those blocked by CI, mergeability, or merge-state.

Quick Start

Start a prioritized session by running /pipeline:run.

Frequently Asked Questions about run

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate GitHub issue pipeline stages from creation to PR merge?

GitHub issue pipeline progression requires fetching issue state, rendering a canonical status table, and proposing a single next dispatch action based on lifecycle priority. This Skill manages the create, classify, plan, evaluate, execute, evaluate-pr, and merge sequence.

How does human-in-the-loop gating work for CI orchestration workflows?

Human-in-the-loop gating for CI orchestration enforces strict confirmation before dispatching any classify, plan, evaluate, execute, or merge actions. The Skill defers classification and plan execution to a user-committed slate, ensuring you retain manual control over automated pipeline progression.

How do I enforce worktree workflow conventions and safe PR merge conditions?

To enforce worktree workflow conventions and safe PR merge conditions, this Skill requires worktree-first branch routing and runs an autonomous merge gate for eligible PRs. It skips or flags PRs blocked by CI, mergeability, or merge-state checks.

Do I need gh and jq installed to manage GitHub issue stages with this Skill?

Yes, you need gh, jq, git, and bash installed to manage GitHub issue stages. These dependencies are required for fetching issue states, querying JSON data, executing worktree workflows, and running the shell environment needed for pipeline orchestration.

How do I route GitHub issues by path tiers for evaluation and execution?

Routing GitHub issues by path tiers evaluates execution readiness based on file changes, separating docs-only, multi-task, and quick-fix paths. The Skill applies dependency-aware readiness and label-driven stage routing to determine the correct next action.

When should I delegate GitHub issue analysis instead of running the full pipeline?

You should delegate GitHub issue analysis to a dedicated hygiene skill when running `--analyze`, and delegate full-send autonomous end-to-end flows to a dedicated runner. This Skill coordinates interactive workflow management and requires strict confirmation gating for direct actions.