Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:3
forks:0
updated:May 6, 2026 at 03:00
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | auto-triage |
| description | GitHub Issue を自動で選んで取り組み、レビュー・マージまで行う自律ワークフロー |
GitHub Issue の自動トリアージ・実装・マージを一連で行うスキル。
Issue 選定の前に、main ブランチの CI が失敗していないか確認する。
gh run list --branch main --limit 5 --json status,conclusion,name,headSha,url で最新の CI 実行結果を取得conclusion が failure のランがある場合:
gh run view <run-id> --log-failed で失敗ログを確認auto/fix-ci-<short-description> を作成gh issue list --state open --limit 20 --json number,title,labels,createdAt で Issue 一覧を取得help wanted ラベル付きの Issue は 除外 する(設計判断が必要なため)bug ラベル > ラベルなし > enhancementgh issue view <number> で詳細確認選んだ Issue の内容を分析し、以下を判定する:
以下のいずれかに該当する場合は help wanted ラベルを付けてスキップ し、Phase 1 に戻って別の Issue を選ぶ:
スキップ時は Issue にコメントを残す:
gh issue comment <number> --body "自動トリアージ: 設計判断が必要なため help wanted を付与しました。理由: <具体的な理由>"
gh issue edit <number> --add-label "help wanted"
Phase 3 に進む。
AGENTS.md のワークフローに従って実装する。
git switch -c auto/<issue-number>-<short-description> で作業ブランチを作成Codex のサブエージェントを使う場合は、担当範囲・読み取り対象・編集対象を明確にし、不要な実装詳細を渡しすぎない。
サブエージェントはコミットしない。コミットは auto-triage を実行している Codex エージェント自身が行う。各作業単位の完了後にまとめてコミットすること。
/review-pr スキルを実行gh pr creategh pr merge <number> --squash --delete-branch実行結果をログに出力する:
## Auto-Triage 結果
### 取り組んだ Issue
- #<number>: <title>
### スキップした Issue(help wanted 付与)
- #<number>: <title> — 理由: <reason>
### 作成した PR
- #<number>: <title> → merged
### 起票した Issue(/review-pr で発見)
- #<number>: <title>
help wanted をつけてスキップするのは 最大 3 回 まで。3 回スキップしたら「取り組める Issue なし」として終了nr validate と nr test を実行し、出力を Phase 5 報告に含めること(完了宣言ルール準拠)