Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Intelligent CI failure diagnosis and guided remediation for GitHub Actions, GitLab CI, and local builds
Pre-execution mapping of codebases, document collections, or problem spaces. Runs BEFORE any Gorgon workflow to give all agents shared situational awareness
Investigative methodology for analyzing document collections — provenance analysis, anomaly detection, redaction detection, and cross-document validation
| name | pr |
| description | Pull Request Creator |
| lifecycle | experimental |
Create well-formatted pull requests from branch commits.
/pr # Create PR for current branch
/pr --draft # Create as draft PR
/pr --base develop # Target specific base branch
## Summary
Brief description of what this PR does and why.
## Changes
- Change 1
- Change 2
- Change 3
## Test Plan
- [ ] Unit tests pass
- [ ] Manual testing performed
- [ ] Edge cases considered
## Screenshots (if applicable)
## Related Issues
Closes #123
| Pattern | PR Type | Label |
|---|---|---|
feat/* | Feature | enhancement |
fix/* | Bug Fix | bug |
docs/* | Documentation | documentation |
refactor/* | Refactor | refactor |
test/* | Tests | tests |
# Get current branch
git branch --show-current
# Get commits not in base
git log main..HEAD --oneline
# Get changed files
git diff main..HEAD --stat
# Create PR
gh pr create --title "Title" --body "Description"
# Create draft PR
gh pr create --draft --title "Title" --body "Description"
When /pr is invoked: