Plan 5b: Pipelines & steps page#16
Merged
theaboutbox merged 7 commits intoadmin-overhaulfrom Apr 30, 2026
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
A step that exists only under custom/steps/ is additive — there's no built-in for it to shadow. The previous logic flagged every custom step as hasCustomOverride: true, making the "Additive" branch in the Pipelines & Steps page unreachable. Add a 7th unit test covering the additive case. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Plan 5b. Replaces the
pipelines(Configure-group) route stub with a read-only browser of pipeline YAML definitions and the step-module library.inspectPipelinesAndSteps()helper insrc/inspect-pipeline-graph.ts— walkspipelines/,custom/pipelines/,src/pipeline/steps/,custom/steps/. Parses YAML; captures errors per pipeline so a single bad file doesn't 500 the endpoint.GET /api/pipelines-stepsreturns{ pipelines, steps }.src/admin-ui/pages/pipelines-and-steps.ts—<details>per pipeline (browser-native expand), step-module table with Override / Additive / Built-in status badges.pipelinesAndStepsHtml/pipelinesAndStepsScript) to avoid colliding with the existing Pipelines/jobs page (pipelinesHtml/pipelinesScript). Sidebar route key ispipelines(Configure-group), distinct fromjobs(Work-group).Plan:
docs/superpowers/plans/2026-04-30-admin-pipelines-steps.md. PR base:admin-overhaul.Test plan
#pipelines(Configure group) showspipelines/autonomous.ymlexpanded; clicking the summary collapsessrc/pipeline/steps/ANDcustom/steps/custom/steps/(e.g.hello.ts)src/pipeline/steps/pipelines/shows an "Error" badge and red callout, doesn't break the rest of the page#jobs(Work group, the existing Pipelines/runs page) is untouched🤖 Generated with Claude Code