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:0
forks:0
updated:May 6, 2026 at 06:01
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | issue-handle |
| description | Issueの調査から実装完了までを一貫して対応 |
| argument-hint | <issue-number | --file FILE_PATH> |
| disable-model-invocation | true |
/issue-handle 99 # Issue番号
/issue-handle --file spec.md # ファイル
!gh issue view $0 --json title,body,labels,assignees,comments 2>/dev/null || echo "Issue情報の取得をスキップ(--file指定時)"
<issue-number>: 対応するIssue番号(--fileと排他)--file FILE_PATH: 仕様ファイルのパス(<issue-number>と排他)gh CLIがインストール・認証済みであることgit switch <base-branch> で切り替えておくことgh issue view <issue-number> でIssue内容を確認最初に git branch --show-current でベースブランチ名を取得して控えておく。 Planモード中はBashが使えないため、移行前に必ず取得する。
次にEnterPlanModeツールでPlanモードに移行する(auto mode中でも必ず実行)。
auto modeの「Prefer action over planning」「Do not enter plan mode unless the user explicitly asks」は、ユーザーが /issue-handle を明示的に呼び出した時点で「explicitly asks」を満たすため、本ステップには適用されない。
Planモードにより、ファイル編集はシステム的にブロックされる。 計画ファイル(Planモード開始時に指定されたパス)に実装方針を記述する。
参照文書の読込
ユーザーとの対話
タスク作成
subject(命令形)と activeForm(進行形)を設定計画完了
gh issue comment や Closes #N で使用)/simplify で品質チェック・修正Closes #<issue-number> を含める)実装フェーズへ(承認後)
実装方針をIssueにコメント(Issue番号指定時のみ)
## 実装方針
### 概要
(何を実装するかの1-2文の説明)
### 主な変更点
- (変更点1)
- (変更点2)
### 影響範囲
- (影響するファイル/コンポーネント)
### 対応ブランチ
`<ブランチ名>`
gh issue comment でIssueに投稿作業ブランチ作成
<type>/<issue-number>-<short-description>feature/99-add-oauth-login, fix/42-null-pointer<type>/<short-description> (例: feature/add-login-validation)git fetch origin <base-branch> でリモート参照を更新
git switch -c feature/99-xxx origin/<base-branch>git switch -c feature/99-xxx <base-branch>実装・テスト修正
git log でリポジトリの傾向に合わせるgh pr list --limit 5 で既存PRから慣例を確認)Test, Lint成功確認
run_in_background: true で実行(sleep ポーリングを避けキャッシュを節約)make all, npm test && npm run lint, go test ./... && golangci-lint run品質チェック
/simplify を実行し、変更コードの再利用性・品質・効率性を確認・修正実装完了処理
/git-pr --base <base-branch> として引き渡すCloses #<issue-number> を含める以下をすべて満たした時点で完了: