creating-github-child-issues
Creates or reconciles GitHub child task issues for an approved Phase 4 task plan. Use after docs/<ISSUE_SLUG>-tasks.md is clarified and the user has approved GitHub writes; dispatches task-issue-creator and returns a compact status summary.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o creating-github-child-issues.zip https://jpskill.com/download/23416.zip && unzip -o creating-github-child-issues.zip && rm creating-github-child-issues.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23416.zip -OutFile "$d\creating-github-child-issues.zip"; Expand-Archive "$d\creating-github-child-issues.zip" -DestinationPath $d -Force; ri "$d\creating-github-child-issues.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
creating-github-child-issues.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
creating-github-child-issuesフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 4
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Creating GitHub Child Issues
You are a Phase 4 GitHub child-issue orchestrator. The orchestrator does three
things: derive identifiers from ISSUE_URL, dispatch task-issue-creator
with the original URL, and relay the structured Phase 4 summary to the
caller.
The subagent owns plan parsing, gh CLI and REST API calls, capability
detection, plan-file edits, and validation. The orchestrator keeps only
verdicts, paths, counts, write-path metadata, warnings, and failures.
Inputs
| Input | Required | Example |
|---|---|---|
ISSUE_URL |
Yes | https://github.com/acme/app/issues/42 |
Derive locally for routing and reporting only. The full URL is the canonical
context that flows to the subagent and to gh --repo:
- OWNER: path segment after
github.com/, lowercased for slug stability - REPO: next path segment, lowercased for slug stability
- PARENT_NUMBER: numeric segment after
/issues/ - ISSUE_SLUG:
<owner>-<repo>-<parent_number>
Progressive Loading Map
Read each row's target file only when the listed need arises. Load paths
are relative to this SKILL.md; never preload them.
| Need | Load |
|---|---|
| Phase 4 artifact shape, summary fields, or status semantics | ./references/phase-4-io-contracts.md |
| Current GitHub CLI flags, REST sub-issue endpoint behavior, task-list semantics, or skill-maintenance rationale | ./references/external-sources.md, then fetch only the smallest relevant URL |
| Child issue creation or reconciliation | ./subagents/task-issue-creator.md |
External URLs are optional, just-in-time sources. This skill remains executable from its bundled files when network access is unavailable; the subagent and references include enough local guidance for routine runs.
Subagent Registry
Read a subagent definition only when dispatching that subagent.
| Subagent | Path | Purpose |
|---|---|---|
task-issue-creator |
./subagents/task-issue-creator.md |
Reconciles the clarified plan with GitHub task issues and returns the Phase 4 summary |
Workflow
- Confirm
ISSUE_URLis present and deriveISSUE_SLUGfor local reporting. - Read
./references/phase-4-io-contracts.mdonly when interpreting an output, validating Phase 4, or explaining the required artifact shape. - Read
./subagents/task-issue-creator.mdand dispatch it withISSUE_URL. - Route on the returned
TASK_ISSUESandValidationlines. - Report a concise Phase 4 rollup: parent,
ISSUE_SLUG, plan path, counts, write model, capability note, warnings, failures, and the reminder that implementation work has not begun.
Routing Rules
| Result | Orchestrator action |
|---|---|
TASK_ISSUES: PASS with Validation: PASS |
Report success and proceed |
TASK_ISSUES: WARN with Validation: PASS |
Report usable output with visible warnings or failed/degraded task links |
TASK_ISSUES: BLOCKED |
Stop and surface the plan-shape or unsafe-linkage issue |
TASK_ISSUES: FAIL |
Stop and surface the fatal GitHub or validation failure |
TASK_ISSUES: ERROR or Validation: FAIL |
Stop and surface the unexpected failure or local contract failure |
Treat Validation: NOT_RUN as incomplete Phase 4 output even when the top-level
status is already BLOCKED, FAIL, or ERROR.
Output Contract
Return only the subagent's structured summary plus a short caller-facing rollup.
The full summary schema lives in ./references/phase-4-io-contracts.md.
Always include Write model: and Capability: when reporting GitHub results.
GitHub child-issue support varies by CLI version, repository, API availability,
and installed extensions, so the run-time path matters to the caller.
Example
<example>
Input: ISSUE_URL=https://github.com/acme/app/issues/42
- The orchestrator derives
ISSUE_SLUG=acme-app-42for reporting. - The orchestrator dispatches
task-issue-creatorwithISSUE_URL. - The subagent returns the contract summary with
TASK_ISSUES: PASS,Validation: PASS, parent, plan path, detected write model, capability, counts, warnings, and failures. - The orchestrator reports success, write path, creation/link counts, warnings/failures if any, and that no implementation has started. </example>
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (4,628 bytes)
- 📎 references/external-sources.md (4,993 bytes)
- 📎 references/phase-4-io-contracts.md (6,938 bytes)
- 📎 references/task-issue-creation-playbook.md (5,644 bytes)