用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/desplega-ai/agent-swarm --skill implement-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | implement-issue |
| description | Implement a GitHub issue or GitLab issue and create a PR/MR |
Read a GitHub or GitLab issue, implement the requested changes, and create a PR/MR.
Provider detection: Check the URL or remote:
gh issue view / gh pr createglab issue view / glab mr createissue-number-or-url: Either an issue number (e.g., 123) or a full URLIf given a URL, extract owner, repo, and issue number. Fetch issue details (title, body, labels, comments). Understand what's being requested, acceptance criteria, and any technical constraints.
/workspace/personal/<repo-name> (clone with gh repo clone if needed)fix/issue-<number>-<short-description>/planning for complex changesKeep changes focused on what the issue requests. Avoid scope creep.
Fix #123: <description>). Use conventional commit style if the repo uses it.git push -u origin HEAD.Create the PR with a descriptive title and body including: summary of changes, key changes list, testing done, and Fixes #<issue-number> to auto-close the issue on merge.
After creating the PR, check CI status with gh pr checks (GitHub) or glab mr view --json pipelines (GitLab). If CI fails, fix the issues, push, and re-check until green.
Provide the PR URL, summary of changes, and any caveats. Optionally comment on the original issue linking the PR.
/skill:respond-github to ask for clarification