Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
GitHub-Repository

pipeline-skills

pipeline-skills enthält 14 gesammelte Skills von johnrtipton, mit Repository-Berufsabdeckung und Skill-Detailseiten auf SkillsMP.

gesammelte Skills
14
Stars
4
aktualisiert
2026-06-04
Forks
0
Berufsabdeckung
4 Berufskategorien · 100% klassifiziert
Repository-Explorer

Skills in diesem Repository

pipeline-run
Softwareentwickler

Execute pipeline stages by reading the state file and spawning agents. Reads .pipeline-state/<branch>.json, finds the next pending stage, spawns an agent to execute it, updates the state file, and repeats. Run /pipeline-next first to create the state file.

2026-06-04
pipeline-shared
Softwareentwickler

Shared pipeline stage procedures used by pipeline-feature, pipeline-bugfix, and pipeline-refactor skills. Not invoked directly — referenced by pipeline-specific skills as reusable building blocks for environment setup, testing, security scanning, documentation, commit/PR, code review, merge, and retrospective stages.

2026-06-04
pipeline-drain
Softwareentwickler

Drain open GitHub issues into the current milestone and process them all. Checks for open issues, adds them to the ROADMAP milestone, then runs pipeline-run --milestone --all to process everything.

2026-06-04
pipeline-next
Softwareentwickler

Pick the next task (or group of related tasks) from ROADMAP.md and set up a pipeline state file. Reads the roadmap, filters by milestone/priority, groups related small features into batches, checks what's already done, and creates .pipeline-state/<branch>.json from the template. Run /pipeline-run after this to execute the stages.

2026-06-04
pipeline-ship
Softwareentwickler

Ship existing changes through quality gates to a merged PR. Starts from uncommitted/committed changes in your working tree and runs test → review → security → docs → commit → PR → code review → merge → retrospective. Use when you've been coding interactively and want to formalize and ship.

2026-06-04
pipeline-dev
Softwareentwickler

Fast iteration loop for initial-development work: branch → implement → build → push → live-verify → merge. No subagent reviews, no CHANGELOG, no roadmap coupling. Optimized for rapid PR cycles where the USER is the reviewer (manual verification via browser/CLI) and browser-extension reload/reconnect is an explicit handoff step. Use this INSTEAD OF /pipeline-ship when there's no CI, no formal review, and the goal is shipping many small PRs per day.

2026-06-04
pipeline-init
Softwareentwickler

Initialize any repository so the entire pipeline-* family (next, run, dev, drain, retro, ship, strategy, roadmap-audit) works. Detects the repo's default branch, test/lint/build commands, ROADMAP format, and version scheme, then creates .pipeline-state/, .pipeline-templates/ (COPIED from the canonical pipeline-skill templates with the detected branch + commands substituted), gitignore entries, CHANGELOG/RETRO scaffolding, and a repo-root CLAUDE.md pipeline-config block — migrating a foreign-format ROADMAP to the canonical priority-matrix + milestone format the pipeline.py parser actually reads. Catches the failure where pipeline-next/run abort because no state template or conforming ROADMAP exists. Run once per repo before any other pipeline-* skill, or to repair a partially-set-up repo.

2026-06-04
pipeline-retro
Softwareentwickler

Run milestone retrospectives, maintain the action tracker, and reconcile deferred findings across RETRO.md, PR retros, and GitHub issues. Use after completing a milestone or when the user asks to review retros.

2026-06-04
pipeline-roadmap-audit
Softwarequalitätssicherungsanalysten und -tester

Verify every "not started" / "Not started" / non-✅ / non-~~strikethrough~~ ROADMAP.md entry against the actual codebase. Catches stale entries where a feature has shipped but the ROADMAP still lists it as pending. Run before cutting a release candidate, before starting a milestone, or after any large-scale consolidation.

2026-05-18
pipeline-strategy
Projektmanagementspezialisten

Run a strategy session — the planning equivalent of /pipeline-run. Surveys the project state, brainstorms candidate features from pluggable sources, triages them, clusters into possible milestones, presents >= 2 distinct paths forward, recommends one, captures the chosen path back into ROADMAP and (if directional) a new ADR. State-file-as-program pattern: each stage is gated by a mandatory checklist on disk, same as /pipeline-run.

2026-05-03
pipeline-auto
Netzwerk- und Computersystemadministratoren

Automatically pull tasks from a ROADMAP.md file and process them through pipeline skills into a development branch. Parses milestone features, selects work by priority/milestone, and runs pipeline-feature or pipeline-bugfix for each task. Invoke with /pipeline-auto followed by optional filters.

2026-03-18
pipeline-bugfix
Softwarequalitätssicherungsanalysten und -tester

Execute a Bug Fix pipeline: environment check, diagnosis, fix, test, regression check, documentation, commit & PR, code review, test verification, review verdict, merge, and retrospective. Invoke with /pipeline-bugfix followed by the bug report.

2026-03-18
pipeline-feature
Softwareentwickler

Execute a full Feature Implementation pipeline: environment check, planning, TDD implementation, test, self-review, security scan, documentation, commit & PR, code review, test verification, review verdict, merge, and retrospective. Invoke with /pipeline-feature followed by the task description.

2026-03-18
pipeline-refactor
Softwareentwickler

Execute a Refactor pipeline: environment check, analysis, refactor execution, test, review, documentation, commit & PR, code review, test verification, review verdict, merge, and retrospective. Invoke with /pipeline-refactor followed by the refactor description.

2026-03-18