一键导入
push-issue-to-queue
Pushes one or more issue IDs onto the end of the auto-fix-all queue, to be processed later. Usage: /push-issue-to-queue <id1> <id2> ...
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Pushes one or more issue IDs onto the end of the auto-fix-all queue, to be processed later. Usage: /push-issue-to-queue <id1> <id2> ...
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Monitors a given PR for merge/close/approval/new owner comments, blocking until one of those occurs, then reports the outcome. Tracks each owner comment's open/addressed lifecycle with :eyes:/:+1: reactions on the comment itself, but leaves deciding how to address a comment to the caller. Usage: /auto-monitor-pr <pr_number>
Autonomously runs the full pipeline (new issue → plan → fix → monitor) for a queue of issue IDs, one at a time, forever — waiting for new IDs to be pushed onto the queue whenever it runs dry — with no user interaction except when a PR is closed without merging. Usage: /auto-fix-all <id1> <id2> ...
Autonomously implements a planned issue with no user interaction. Discovers the specialist agents involved in the plan, dispatches them in parallel, reviews and re-dispatches until correct, then opens or marks ready a pull request. Usage: /auto-fix-issue <id> or /auto-fix-issue #<id>
Discusses and refines an existing GitHub issue through an iterative dialogue, optionally spawning specialist agents to deepen understanding, then saves a structured markdown issue file and, on confirmation, kicks off planning on a committed branch. Usage: /discuss-issue #19
Resolves the PR for an issue's currently checked-out branch, then monitors it for merge/close/approval/new owner comments, blocking until one of those occurs. Used by auto-fix-all. Usage: /auto-monitor-issue-pr <id>
Configures CLAUDE.md and .github/copilot-instructions.md for a project, creating or updating them to point to a shared AGENTS.md file. Handles multiple scenarios depending on which files already exist. Usage: /init-claude
| name | push-issue-to-queue |
| description | Pushes one or more issue IDs onto the end of the auto-fix-all queue, to be processed later. Usage: /push-issue-to-queue <id1> <id2> ... |
You are acting as the architect. Your job is to append the given issue IDs to the end of the auto-fix-all queue — no questions to the user, no confirmation loop.
Parse the issue IDs from the raw skill arguments (space-separated, with or without a leading # on each). Run:
../auto-fix-all/scripts/queue.sh push <id1> <id2> ...
This appends the IDs to the end of .claude/state/auto-fix-all-queue.txt, guarded by the same lock auto-fix-all/scripts/queue.sh uses for pop, so a concurrent auto-fix-all run popping the current issue can't race with this push.
Report the script's output verbatim (e.g. Pushed: 30 31). No further action is needed — auto-fix-all will pick up the new IDs once it reaches the end of its current queue.