一键导入
abandon-issue
Abandon an active issue or release a stale issue claim so another agent can pick it up.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Abandon an active issue or release a stale issue claim so another agent can pick it up.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use in repositories that track work with the agent-issues local issue workflow.
Claim exactly one issue, fix it, and create a pull request starting from a clean branch.
Prepare and open a pull request for the current branch after validating the full diff and running checks.
Push the current branch, open or update its PR, and loop through CI failures and review feedback until the PR is clean.
Like solve-issue, but skips plan confirmation and goes straight to implementation.
| name | abandon-issue |
| description | Abandon an active issue or release a stale issue claim so another agent can pick it up. |
Release the current worktree's issue claim. Use this when you determine an active issue isn't worth fixing, it is blocked on something you can't resolve, you need to bail out, or a stale claim is preventing new work.
Releasing a stale claim is always authorized and does not require user approval. A claim is stale when the prior work is demonstrably finished or no longer active, such as after its resolving PR was merged, or when the worktree is clean at the default branch with no open PR after completing that work.
Run the abandon helper:
issue-abandon
For abandoned active work, clean up the branch — reset back to the default branch so the worktree is ready for the next issue:
git checkout $(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name)
Skip branch cleanup when merely releasing a stale claim and the worktree is already clean and ready. Stale-claim recovery is claim-store bookkeeping; do not reset or switch an already-ready branch.
If you pushed a remote branch or created a draft PR, consider cleaning those up too (ask the user first).
Optionally restart /solve-issue to pick a different issue.