Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计提醒

sc-pr-fixsc 公关修复

Agent Skill

sc-pr-fix 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

699

周安装

28

GitHub Stars

17

下载量

226
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sc-pr-fix(sc 公关修复)
来源仓库:https://github.com/tony363/superclaude
仓库路径:skills/sc-pr-fix
安装命令:
npx skills add https://github.com/tony363/superclaude --skill sc-pr-fix
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/tony363/superclaude --skill sc-pr-fix

简介

sc-pr-fix 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或命令执行。
  • 可结合原始 README 进一步核验具体功能和使用方法。

SKILL.md

PR Fix Skill

Create pull requests and interactively fix CI check failures until all pass.

Quick Start

# Create PR from current changes
/sc:pr-fix "fix: resolve test failures" --branch fix/tests

# Dry run to preview
/sc:pr-fix "feat: new feature" --dry-run

# With custom PR details
/sc:pr-fix "chore: update deps" --title "Update dependencies" --body "Monthly update"

# Auto-fix low-risk issues
/sc:pr-fix "fix: lint errors" --auto-fix

Behavioral Flow

  1. Validate - Check git state, ensure changes exist
  2. Branch - Create and checkout new branch
  3. Commit - Stage all changes and commit with provided message
  4. Push - Push branch to origin
  5. PR Create - Create pull request via gh CLI
  6. Monitor - Poll CI status at configured interval
  7. Fix Loop - For each failing check:

- Parse failure logs - Propose fix (with PAL MCP assistance for complex issues) - Prompt user for confirmation (interactive mode) - Apply fix and push - Re-monitor checks

  1. Complete - All checks pass or max attempts reached

Flags

FlagTypeDefaultDescription
--branchstringautoNew branch name (auto: pr-fix/<timestamp>)
--basestringmainTarget branch for PR
--titlestringcommit msgPR title
--bodystringautoPR description body
--dry-runboolfalsePreview operations without executing
--auto-fixboolfalseAuto-apply low-risk fixes, prompt only for high-risk
--max-fix-attemptsint5Max CI fix iterations (hard cap: 5)
--poll-intervalint30Seconds between CI status checks
--no-pushboolfalseCreate branch and commit but do not push/PR

Interactive Mode

By default, the skill prompts before each fix:

================================================================================
CI Check Failed: build (lint)                                   Attempt 2 of 5
================================================================================

Error Summary:
  - src/component.ts:42:15 - Missing semicolon (semi)
  - src/utils.ts:18:1 - Unexpected console statement (no-console)

Proposed Fix:
  1. Add semicolon at src/component.ts:42
  2. Remove console.log at src/utils.ts:18

Risk Level: LOW (auto-fixable lint errors)

--------------------------------------------------------------------------------
[A]pply fix  [S]kip this check  [V]iew full log  [Q]uit
>

Use --auto-fix to skip prompts for low-risk fixes (lint, formatting). High-risk fixes (test changes, security, core logic) always prompt.

Risk Classification

LevelExamplesBehavior
LOWLint errors, formatting, whitespaceAuto-fix if --auto-fix
MEDIUMTest updates, documentationAlways prompt
HIGHCore logic, security, API changesAlways prompt + PAL review

Evidence Requirements

This skill requires evidence of successful operations:

  • Git operations must succeed (branch created, pushed)
  • PR creation must return valid PR URL
  • CI status must be retrievable via gh CLI
  • Fix attempts must show file diffs

Tool Coordination

  • Bash - Git and gh CLI execution
  • Read - Analyze failure logs and source code
  • Edit - Apply fixes to source files
  • AskUserQuestion - Interactive prompts for fix confirmation
  • PAL MCP debug - Diagnose complex CI failures
  • PAL MCP codereview - Validate fix quality before applying

MCP Integration

  • PAL MCP debug - Root cause analysis for CI failures
  • PAL MCP codereview - Review proposed fixes before applying

Safety Mechanisms

  1. Hard cap: Maximum 5 fix iterations (cannot be overridden)
  2. Stagnation detection: Same error 3 consecutive times = abort
  3. Oscillation detection: Fix-revert-fix pattern = abort
  4. Interactive confirmation: All structural changes require approval
  5. Never skip checks: Must fix or explicitly abort - no skipping
  6. Backup branch: Creates backup/<branch>-<timestamp> before starting

CI Status Polling

The skill polls GitHub Actions check status using:

gh pr checks <pr_number> --json name,state,conclusion,url

Poll behavior:

  • Initial wait: 10 seconds after push (allow CI to start)
  • Poll interval: --poll-interval seconds (default: 30)
  • Timeout: 10 minutes for checks to complete
  • Handles pending, queued, in_progress, and completed states

Failure Log Parsing

Supported CI output formats:

  • ESLint/TSLint JSON format
  • pytest output with tracebacks
  • ruff/flake8 format
  • Jest/Vitest output format
  • Generic error patterns (error:, ERROR, failed)
  • GitHub Actions annotations

Examples

Basic PR Creation with Fix Loop

/sc:pr-fix "fix: resolve ESLint errors"

Output:

Creating branch: pr-fix/20240115-143022
Committing: fix: resolve ESLint errors
Pushing to origin...
Creating PR #42: fix: resolve ESLint errors

Monitoring CI checks...
  - lint: pending
  - test: pending

[30s later]
  - lint: failed
  - test: passed

Parsing lint failures...
Found 2 errors in 1 file.

================================================================================
CI Check Failed: lint                                           Attempt 1 of 5
================================================================================
...
[A]pply fix  [S]kip  [V]iew log  [Q]uit
> a

Applying fix...
Pushing fix commit...
Monitoring CI checks...
  - lint: passed
  - test: passed

All checks passed! PR #42 is ready for review.
PR URL: https://github.com/owner/repo/pull/42

Feature PR with Details

/sc:pr-fix "feat: add user dashboard" \
  --branch feat/user-dashboard \
  --title "Add User Dashboard Component" \
  --body "Implements user dashboard as per spec #42"

Preview Mode

/sc:pr-fix "refactor: cleanup utils" --dry-run

Output:

[DRY RUN] Would execute:
  1. git checkout -b pr-fix/20240115-143022
  2. git add -A
  3. git commit -m "refactor: cleanup utils"
  4. git push -u origin pr-fix/20240115-143022
  5. gh pr create --base main --title "refactor: cleanup utils"
  6. Monitor CI and fix failures interactively

No changes made.

Auto-Fix Low-Risk Issues

/sc:pr-fix "fix: formatting" --auto-fix

With --auto-fix, LOW risk fixes (lint, formatting) are applied automatically. MEDIUM and HIGH risk fixes still prompt for confirmation.

Termination Conditions

The fix loop terminates when:

ConditionExit StatusMessage
All checks passSUCCESS"All checks passed! PR ready for review."
Max attempts (5)FAILED"Max fix attempts reached. Manual intervention required."
Stagnation (3x same error)FAILED"Same error persists after 3 attempts. Aborting."
User quitsABORTED"Fix loop aborted by user."
CI timeoutTIMEOUT"CI checks did not complete within timeout."

Commit Message Format

Fix commits follow Conventional Commits:

fix(ci): resolve <check_name> failures

- <description of fix 1>
- <description of fix 2>

Automated fix by sc-pr-fix skill

Scripts

This skill uses Python helper scripts in scripts/:

  • check_pr_status.py - Poll PR check status via gh pr checks
  • parse_check_failures.py - Parse CI failure logs to extract errors
  • fix_orchestrator.py - Coordinate fix loop with safety mechanisms

Error Handling

ScenarioBehavior
No git repoExit with error message
Dirty working treePrompt: stash, commit, or abort
Branch already existsPrompt for different name
Push failsCheck permissions, offer retry
PR creation failsShow gh CLI error, suggest manual
CI timeoutReport status, offer to continue monitoring
Parse failureFall back to raw log display
Fix application failsIncrement attempt counter, continue loop
User abortsClean exit with status summary

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

29.44%
按下载量换算67

Claude Code

21.54%
按下载量换算49

windsurf

19.01%
按下载量换算43

trae

11.91%
按下载量换算27

OpenCode

8.03%
按下载量换算18

Cursor

3.18%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills