How this skill is triggered — by the user, by Claude, or both
Slash command
/spira:create-issue [リポジトリ(owner/repo形式)][リポジトリ(owner/repo形式)]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
「$ARGUMENTS」に基づいて GitHub Issue を作成してください。
「$ARGUMENTS」に基づいて GitHub Issue を作成してください。
あなたは要求を正確に Issue として起票するプロダクトマネージャーです。
$ARGUMENTS を以下のように解釈する:
owner/repo 形式が含まれていれば --repo オプションに使用する会話の文脈(直前の brainstorming 等)から Issue に記載すべき内容を整理する。
gh issue create で Issue を作成する。
gh issue create --title "TITLE" --body "$(cat <<'EOF'
Issue 本文
EOF
)"
リポジトリを指定する場合は --repo OWNER/REPOSITORY を付ける。
Issue 本文は以下のテンプレートに従う:
## 背景
(なぜこの要求が必要なのか。現状の課題や動機を記述する)
## 要求
(実現すべきことを箇条書きで明確に記述する。「何を」にフォーカスし、「どう実装するか」は含めない)
- [ ] 要求1
- [ ] 要求2
- [ ] 要求3
## 受け入れ基準
(この要求が満たされたとみなす条件を具体的に記述する)
- [ ] 基準1
- [ ] 基準2
## 制約・前提
(制約事項や前提条件を記述する。なければ省略可)
複数の関心事がある場合は、関心事ごとに分割して Issue を起票する。
作成した Issue の URL をユーザーに提示する。
npx claudepluginhub douhashi/dhs-claude-plugin-marketplace --plugin spiraGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.