Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计提醒

executing-github-taskexecuting GitHub task 开发

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b-mendoza/agent-skills --skill executing-github-task

简介

executing-github-task 协调 GitHub 工作流的任务执行与状态变更。

  • 适用于 Issue 处理、PR 合并与分支管理自动化。
  • 首次执行 mutation 前需获得用户明确批准。
  • 通过 GitHub 安装,需配置 PAT token 与仓库读写权限。
  • 严格区分只读查询与写入操作的安全边界。executing-github-task 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Executing GitHub Task

This skill is the per-task execution orchestrator for the GitHub workflow. It does exactly three things: validate that the selected task is ready, dispatch the right specialist for each phase, and decide whether to advance, run a targeted fix cycle, or escalate.

Execution kickoff is the first point at which the workflow may mutate GitHub issue state or otherwise cross from critique-only work into active execution. Everything before kickoff remains critique and planning on disk; kickoff is the first execution mutation boundary after the user approves implementation. The orchestrator running this skill keeps only concise summaries in memory; subagents do the heavy work in isolation.

Inputs

InputRequiredExampleNotes
ISSUE_SLUGYesacme-app-42Workflow key; derives artifact paths.
TASK_NUMBERYes3Exactly one task per invocation.

Required artifacts

ArtifactPhaseRequiredPurpose
docs/<ISSUE_SLUG>.md1YesIssue snapshot and GitHub context.
docs/<ISSUE_SLUG>-tasks.md2–4YesTask plan, ## GitHub Task Issues, statuses.
docs/<ISSUE_SLUG>-task-<N>-brief.md5YesScope, DoD, execution constraints.
docs/<ISSUE_SLUG>-task-<N>-execution-plan.md5YesApproved implementation approach.
docs/<ISSUE_SLUG>-task-<N>-test-spec.md5YesRequired behavior coverage.
docs/<ISSUE_SLUG>-task-<N>-refactoring-plan.md5YesApproved structural prep and cleanup.
docs/<ISSUE_SLUG>-task-<N>-critique.md6YesTask-level critique record.
docs/<ISSUE_SLUG>-task-<N>-decisions.md6YesCritique outcomes and confirmed decisions.

Read ./references/contracts.md when validating task readiness or artifact shape.

Workflow Overview

These are the execution skill's ordered internal stages. Read ./references/pipeline.md for the full run -> check -> fix -> re-check order and ./references/contracts.md for readiness and handoff contracts.

Internal stageGoalPrimary result
0. ReadinessValidate prerequisites and task readinessReady-to-run task or explicit blocker
1. KickoffApply first side effects and establish active execution stateKICKOFF_REPORT
2. ExecutionImplement the planned changeEXECUTION_REPORT
3. DocumentationAdd in-code docs, commit Category B work, and update trackingDOCUMENTATION_REPORT
4. Requirements VerificationConfirm Definition of Done coverage before review gatesVERIFICATION_RESULT
5. Quality GatesRun clean-code, architecture, and security review in orderReview verdicts and actionable feedback
6. Targeted Fix CycleRe-run only the failing verification or review pathRe-validated task or escalation
7. Final ReportReport the selected task's final outcomeOne concise task completion summary

Requirements gaps are resolved after internal step 4 and before internal step 5. Quality-gate fix cycles happen after internal step 5.

Subagent Registry

SubagentPathPurpose
execution-starter./subagents/execution-starter.mdExecution kickoff: readiness, workspace checks, first gh-based GitHub updates (labels, assignees, comments, child-issue fields) when appropriate.
task-executor./subagents/task-executor.mdImplements the scoped change and tests from the approved planning artifacts.
documentation-writer./subagents/documentation-writer.mdIn-code docs, commits Category B, updates docs/<ISSUE_SLUG>-tasks.md, optional gh completion updates on the task issue.
requirements-verifier./subagents/requirements-verifier.mdChecks that the task's DoD is fully implemented before quality review.
clean-code-reviewer./subagents/clean-code-reviewer.mdReviews readability, maintainability, SOLID alignment, and test quality.
architecture-reviewer./subagents/architecture-reviewer.mdReviews domain boundaries, composition, and architectural fit.
security-auditor./subagents/security-auditor.mdAudits the committed change set for exploitable security weaknesses.

Use this registry as a lookup table. Read exactly one subagent definition per dispatch, then pass only the inputs that subagent needs.

How This Skill Works

The orchestrator uses direct reads only to load this skill, the reference file for the current phase, and the specific subagent it is about to dispatch. Everything else is delegated. Pass file paths and short summaries between subagents instead of raw file contents or command output.

In practice, the orchestrator does only three kinds of work directly: load the current instructions, dispatch the next specialist, and carry forward the smallest summary needed for the next decision. Execution, mutation, analysis, and artifact updates stay inside the specialist subagents.

Every task run follows the same validation loop: confirm readiness, cross the kickoff mutation boundary deliberately after critique approval, verify Definition of Done coverage before the review gates, and re-run only the failing phase when a targeted fix is needed.

Treat artifacts in two categories:

  • Category A: docs/<ISSUE_SLUG>*.md, progress files, briefs, plans, test specs, refactoring plans, critique, and decisions. Stay on disk, never committed, never deleted.
  • Category B: source code, tests, config, in-code documentation. Committed normally.

If a selected task is already complete, blocked by unmet prerequisites, or produces a repeated unresolved blocker, stop and report that state instead of forcing the pipeline forward.

Output Contract

After a successful run, this skill leaves behind these deliverables:

  • Category B implementation artifacts: committed source code, tests, config changes, and in-code documentation.
  • Category A orchestration artifacts: updated on disk but left uncommitted, including task status, implementation summary, file list, and optional GitHub tracking updates recorded in the plan.
  • Kickoff summary: a returned KICKOFF_REPORT covering readiness, workspace state, and GitHub kickoff actions (or documented skips).
  • Task-only completion report: a concise user-facing report summarising the selected task's execution, commits, and gate verdicts.

Phase Guide

When you need...Read...
Artifact contracts and task readiness checks./references/contracts.md
Normal execution flow, kickoff, fix-loop order./references/pipeline.md
Status handling, retries, escalations./references/retry-and-escalation.md
Shared reviewer expectations./references/review-gate-policy.md

Execution Steps

  1. Read ./references/contracts.md and confirm the task is ready to cross the execution boundary.
  2. Read ./references/pipeline.md and follow its normal run order exactly.
  3. Dispatch only the next required subagent, passing explicit inputs and keeping only structured summaries in orchestration context.
  4. When a blocker, missing prerequisite, or failing gate appears, read the relevant recovery reference from ## Phase Guide and run only the targeted retry or escalation path.
  5. Report the selected task's outcome once the pipeline finishes or stops. Do not auto-continue to the next task.

Operating Constraints

  • Execute one task per invocation, then stop and wait for a new invocation for the next task.
  • Keep the task plan as the source of truth. If execution reveals a plan change is needed, escalate instead of silently rewriting the plan.
  • Preserve Category A artifacts on disk and out of git history.
  • Keep fix cycles targeted. Re-run only the failing verification or review steps, not the entire pipeline.
  • Treat missing required skills, missing tracker capability, or unresolved ambiguity as orchestration decisions. Surface them clearly and stop.

Example

Input:

  • ISSUE_SLUG=acme-app-42
  • TASK_NUMBER=3
  1. Validate the required per-task artifacts exist; Task 3 is not already complete.
  2. Dispatch execution-starter for kickoff (first gh mutations after critique).

- KICKOFF_REPORT -> READY

  1. Dispatch task-executor with artifact paths under docs/acme-app-42-task-3-*.md.

- EXECUTION_REPORT -> COMPLETE

  1. Dispatch documentation-writer with EXECUTION_REPORT, ISSUE_SLUG, TASK_NUMBER.
  2. Dispatch requirements-verifier.

- VERIFICATION_RESULT -> PASS

  1. Run clean-code-reviewer, then architecture-reviewer, then security-auditor.

- All gates return a pass variant

  1. Report kickoff outcome, final verdicts, commits, files changed, and any skipped GitHub updates.

Input:

  • ISSUE_SLUG=acme-app-42
  • TASK_NUMBER=3
  1. execution-starter returns READY.
  2. task-executor returns COMPLETE.
  3. documentation-writer returns COMPLETE.
  4. requirements-verifier returns FAIL because one DoD item is untested.
  5. Re-dispatch task-executor with only the verifier gap summary.
  6. Re-dispatch documentation-writer for the new Category B delta.
  7. Re-run requirements-verifier.

- VERIFICATION_RESULT -> PASS

  1. Continue into the review gates, and if one gate returns NEEDS FIXES, re-run only that gate's targeted fix cycle instead of the whole pipeline.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.5%
按下载量换算26

Claude

27.13%
按下载量换算18

Cursor

20.52%
按下载量换算13

Gemini CLI

9.29%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills