Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

creating-github-child-issuescreating GitHub child issues 问题管理

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

194

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:creating-github-child-issues(creating GitHub child issues 问题管理)
来源仓库:https://github.com/b-mendoza/agent-skills
仓库路径:skills/creating-github-child-issues
安装命令:
npx skills add https://github.com/b-mendoza/agent-skills --skill creating-github-child-issues
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/b-mendoza/agent-skills --skill creating-github-child-issues

简介

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。

  • 适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项。
  • 使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时需确认 token 权限。
  • 目标仓库范围和用户授权必须在操作前明确。
  • creating-github-child-issues 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Creating GitHub Child Issues

Create or reconcile GitHub task issues for a clarified plan at docs/<ISSUE_SLUG>-tasks.md. This skill coordinates Phase 4 by dispatching one specialist subagent, keeping only its structured summary, and reporting the outcome the parent workflow needs for progress tracking.

The orchestrator does four things directly: read its bundled files, derive identifiers from ISSUE_URL, dispatch task-issue-creator, and relay the subagent's summary. Plan parsing, gh calls, GitHub API probes, and plan-file edits all stay inside task-issue-creator after dispatch.

Inputs

InputRequiredExample
ISSUE_URLYeshttps://github.com/acme/app/issues/42

Derive these values from the URL when you need to describe the parent issue:

  • OWNER: path segment after github.com/ (lowercase for slug stability).
  • REPO: next path segment (lowercase).
  • PARENT_NUMBER: numeric segment after /issues/.
  • ISSUE_SLUG: <owner>-<repo>-<parent_number>.

Prefer passing the full ISSUE_URL downstream. It is the authoritative context for gh --repo and for verifying the parent issue.

Workflow Overview

1. Read the task-issue-creator definition
2. Dispatch it with ISSUE_URL
3. Interpret its structured result
4. Report only the concise phase summary to the caller

Subagent Registry

Read a subagent definition only when you are about to dispatch it.

SubagentPathPurpose
task-issue-creator./subagents/task-issue-creator.mdReconcile the clarified plan with GitHub and return a structured Phase 4 summary

How This Skill Works

This skill is intentionally narrow. The parent workflow is responsible for Phase 4 gating and progress tracking; this skill assumes the Phase 3 approval step has already happened before GitHub writes begin.

Inside Phase 4, keep only the routing verdicts plus the caller-facing rollup. For GitHub, that means the parent / artifact identifiers, creation totals, warnings or failures, the linkage rollup the caller needs for progress tracking, and the effective write-path / capability outcome when it matters for auditability.

Relay only the structured fields the subagent returns. Raw gh JSON, full API responses, raw file contents, and intermediate parse details stay inside task-issue-creator unless the user explicitly asks for them.

Phase 4 Contract

Primary artifact:

docs/<ISSUE_SLUG>-tasks.md

For the complete standalone input contract, output contract, and summary-field definitions, read ./references/phase-4-io-contracts.md.

That bundled reference file is the only normative Phase 4 contract source for this skill. SKILL.md covers dispatch, routing, and reporting only. The subagent defines how to achieve the contract but does not replace it.

Execution Steps

1. Dispatch task-issue-creator

Read ./subagents/task-issue-creator.md, then dispatch it with:

  • ISSUE_URL

The subagent owns plan parsing, gh availability checks, parent verification, write-model capability detection, idempotent reuse of existing linkage, sequential creation of missing task issues (when the write model creates issues), plan-file updates, and post-write validation.

2. Interpret the structured result

Handle the returned summary this way:

  • TASK_ISSUES: PASS with Validation: PASS: report success and proceed.
  • TASK_ISSUES: WARN with Validation: PASS: report partial success or degraded input clearly. Phase 4 may still be usable if the plan file now satisfies the local Phase 4 output contract, but make failed tasks visible so the user can retry before executing them.
  • TASK_ISSUES: BLOCKED: stop and relay the artifact or data-shape problem. This usually means the plan is missing, malformed, or contains unsafe existing issue references that need manual correction.
  • TASK_ISSUES: FAIL: stop and relay the fatal GitHub or validation failure.
  • TASK_ISSUES: ERROR: stop and relay the unexpected failure.
  • Any result paired with Validation: FAIL: treat the phase as incomplete even if some GitHub writes succeeded, because the local plan contract is not trustworthy yet.
  • Any result paired with Validation: NOT_RUN: treat the phase as incomplete; no trustworthy local post-write artifact was produced for downstream use.

3. Report only the summary

Using only the subagent's structured summary, tell the caller:

  • Use the subagent summary as routing input; do not rewrite its contract schema inside SKILL.md.
  • Surface the caller-facing rollup: parent reference, ISSUE_SLUG, updated plan-file path, creation totals, warnings or failures, and the reminder that no implementation has started.
  • Include the effective write model / capability outcome when it helps explain which GitHub creation path ran.

Dispatch task-issue-creator as a subagent. If the environment cannot invoke subagents, report the skill as blocked rather than reproducing the subagent inline.

Example

  1. Read ./subagents/task-issue-creator.md
  2. Dispatch task-issue-creator with ISSUE_URL
  3. Subagent returns the contract-defined summary from ./references/phase-4-io-contracts.md, for example: TASK_ISSUES: PASS Validation: PASS Parent: acme/app#42 ISSUE_SLUG: acme-app-42 Plan file: docs/acme-app-42-tasks.md Write model: linked-issue Capability: native sub-issue REST unavailable; gh-sub-issue not installed...
  4. Route on that summary, then relay only the caller-facing rollup. Include the write-path / capability outcome when it helps explain the GitHub result.

Escalation

Use the subagent's structured verdict as the only routing input:

Summary stateOrchestrator action
TASK_ISSUES: PASS with Validation: PASSReport success and proceed
TASK_ISSUES: WARN with Validation: PASSReport usable output with warnings and make failed or skipped linkage visible
TASK_ISSUES: BLOCKEDStop and surface the plan-shape or unsafe-linkage issue
TASK_ISSUES: FAILStop and surface the fatal GitHub or validation failure
TASK_ISSUES: ERROR or Validation: FAILStop 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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.3%
按下载量换算22

Claude

30.57%
按下载量换算19

Cursor

20.02%
按下载量换算13

Gemini CLI

10.75%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills