From ci
Stages reverts for high-confidence payload candidates (confidence >= 85) — creates JIRA bugs, opens revert PRs, and triggers payload validation jobs.
How this command is triggered — by the user, by Claude, or both
Slash command
/ci:payload-revert <payload-tag>The summary Claude sees in its command listing — used to decide when to auto-load this command
## Name ci:payload-revert ## Synopsis ## Description The `ci:payload-revert` command reads the payload results YAML produced by `/ci:payload-analysis` and stages reverts for all high-confidence candidates (confidence score >= 85) that have not already been reverted. For each qualifying candidate, it creates a TRT JIRA bug, opens a revert PR, and triggers payload validation jobs using the `stage-payload-reverts` skill. This command is one of three composable stages in the payload triage pipeline: 1. `/ci:payload-analysis` — produces the payload results YAML 2. `/ci:payload-revert` — ...
ci:payload-revert
/ci:payload-revert <payload-tag>
The ci:payload-revert command reads the payload results YAML produced by /ci:payload-analysis and stages reverts for all high-confidence candidates (confidence score >= 85) that have not already been reverted.
For each qualifying candidate, it creates a TRT JIRA bug, opens a revert PR, and triggers payload validation jobs using the stage-payload-reverts skill.
This command is one of three composable stages in the payload triage pipeline:
/ci:payload-analysis — produces the payload results YAML/ci:payload-revert — stages reverts for HIGH confidence candidates (this command)/ci:payload-experiment — opens draft revert PRs for MEDIUM confidence candidatesWhen the number of failing jobs across all candidates exceeds these limits, prioritize jobs from higher-confidence candidates first.
Parse the payload tag from the argument. Extract version, stream, and architecture from the tag (see payload-analysis Step 1 for parsing rules).
Read the payload results YAML using the payload-results-yaml skill: Look for payload-results-{tag}.yaml in the current working directory. If not found, print an error and exit:
Error: Payload results YAML not found for {payload_tag}.
Run `/ci:payload-analysis {payload_tag}` first to generate it.
Filter candidates: Select candidates with confidence_score >= 85. Exclude any that already have an action with status of "open" or "merged" (pre-existing revert).
Dispatch to stage-payload-reverts skill: Pass all qualifying candidates with their context (results YAML path, payload tag, version, stream, architecture, release controller URL, and failing jobs). The skill updates the results YAML and HTML report in place. The trigger-payload-job skill validates that aggregated jobs have underlying_job_name set and skips them with an error if not.
Report results: Print a summary of actions taken (JIRA tickets created, revert PRs opened, payload jobs triggered).
/ci:payload-analysis 4.22.0-0.nightly-2026-02-25-152806
/ci:payload-revert 4.22.0-0.nightly-2026-02-25-152806
4.22.0-0.nightly-2026-02-25-152806). Must match the tag used with /ci:payload-analysis. (required)payload-results-yaml: Reads and updates the payload results YAMLstage-payload-reverts: Creates TRT JIRA bugs, opens revert PRs, triggers payload jobstrigger-payload-job: Triggers payload jobs and collects URLsrevert-pr: Git revert workflow for creating revert PRsnpx claudepluginhub muraee/ai-helpers --plugin ci/payload-revertStages reverts for high-confidence payload candidates (confidence >= 85) — creates JIRA bugs, opens revert PRs, and triggers payload validation jobs.
/rollbackCreates a GitHub revert PR to roll back a shipped feature or fix that caused a production incident. Supports PR number, issue number, or "last" for the most recent merge.
/rollbackProposes a full-context revert PR for a shipped PR that fails post-merge evaluation or crosses a signal threshold. Propose-only — never auto-merges.
/revertReverts Conductor-tracked work (tracks, phases, or tasks) by finding and undoing associated Git commits. Supports optional identifier and handles rebased or merged histories.
/approveManages Jira approval workflows: request PR/deploy/release/issue, approve/reject with comments, status/list pending/history, configure.
/undoSafely reverts phase or plan commits in a learnship project, preserving git history and checking dependencies. Supports reverting by last N commits, phase number, or plan range.