Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计未展示

githubGitHub 代码协作

Agent Skill

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

总安装

7,091

周安装

365

GitHub Stars

公开资料未说明

下载量

3,334
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add adynato/skills --skill "github"

简介

围绕 GitHub 仓库与协作流程提供辅助能力。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中管理代码变更的场景。
  • 支持查询 Issue、PR 与分支状态并生成下一步动作。
  • 需区分只读与写入操作,确认 token 权限范围。
  • 涉及私有仓库时应严格限制访问权限。github 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
adynato-github
description
GitHub workflow conventions for Adynato projects. Covers creating PRs with gh CLI, writing thorough descriptions, and using stacked PRs for large deliverables. Use when creating pull requests, managing branches, or breaking down large features.

GitHub Skill

Use this skill when working with GitHub on Adynato projects.

Always Use gh CLI

Use the gh CLI for all GitHub operations instead of the web interface:

# Create PR
gh pr create --title "Title" --body "Description"

# View PR
gh pr view 123

# Check PR status
gh pr checks 123

# Merge PR
gh pr merge 123 --squash

PR Descriptions

Every PR must have a thorough description. Use this template:

gh pr create --title "feat: add user authentication" --body "$(cat <<'EOF'
## Summary

Brief description of what this PR does and why.

- Added JWT-based authentication flow
- Implemented login/logout endpoints
- Added auth middleware for protected routes

## Changes

- `lib/auth.ts` - Auth utilities and token management
- `app/api/auth/login/route.ts` - Login endpoint
- `app/api/auth/logout/route.ts` - Logout endpoint
- `middleware.ts` - Route protection

## Testing

### Automated
- [ ] Login with valid credentials returns token
- [ ] Login with invalid credentials returns 401
- [ ] Protected routes reject unauthenticated requests
- [ ] Logout invalidates token

### Manual
1. Sign in with a test account
2. Open a protected route
3. Confirm authenticated access works
4. Log out and confirm access is revoked

## Screenshots

(if UI changes)

## Related

- Closes #123
- Part of #456
EOF
)"

Required Sections

SectionWhen RequiredPurpose
SummaryAlwaysWhat and why in 2-3 sentences
ChangesAlwaysList of files/areas modified
TestingAlwaysAutomated coverage and explicit manual testing steps
ScreenshotsUI changesVisual proof of changes
RelatedIf applicableLinked issues/PRs

Manual testing steps are required in every PR description. Be specific about the exact flow, commands, requests, accounts, or environment used to verify the change.

Stacked PRs

For large deliverables, break work into small, stacked PRs that build on each other.

Why Stack PRs

  • Easier review - Reviewers can focus on one concern at a time
  • Faster merges - Small PRs get approved faster
  • Lower risk - Each PR is independently deployable
  • Better history - Clear progression of changes

Stacking Strategy

For a feature like "Add user dashboard":

PR 1: Add user API endpoints (base)
  ↓
PR 2: Add dashboard data fetching (stacked on PR 1)
  ↓
PR 3: Add dashboard UI components (stacked on PR 2)
  ↓
PR 4: Add dashboard tests (stacked on PR 3)

Creating Stacked PRs

Use <default-base-branch> for the repository's integration branch: dev when it exists, otherwise main.

# PR 1: Base branch
git checkout -b feat/user-api
# ... make changes ...
git push -u origin feat/user-api
gh pr create --base <default-base-branch> --title "feat: add user API endpoints"

# PR 2: Stack on PR 1
git checkout -b feat/dashboard-data feat/user-api
# ... make changes ...
git push -u origin feat/dashboard-data
gh pr create --base feat/user-api --title "feat: add dashboard data fetching"

# PR 3: Stack on PR 2
git checkout -b feat/dashboard-ui feat/dashboard-data
# ... make changes ...
git push -u origin feat/dashboard-ui
gh pr create --base feat/dashboard-data --title "feat: add dashboard UI"

Stack Description

In stacked PRs, note the relationship:

## Summary

Adds dashboard UI components.

## Stack

This PR is part of a stack:
1. #101 - Add user API endpoints ← **merged**
2. #102 - Add dashboard data fetching ← **base**
3. **#103 - Add dashboard UI** ← you are here
4. #104 - Add dashboard tests

Please review and merge in order.

Updating Stacked PRs

When the base PR changes:

# Update your branch with changes from base
git checkout feat/dashboard-ui
git rebase feat/dashboard-data
git push --force-with-lease

When base PR merges:

# Rebase onto new base
git checkout feat/dashboard-data
git rebase <default-base-branch>
git push --force-with-lease

# Update PR base branch
gh pr edit 102 --base <default-base-branch>

PR Size Guidelines

SizeLines ChangedReview TimeRecommendation
XS< 50MinutesIdeal
S50-200< 1 hourGood
M200-5001-2 hoursAcceptable
L500-10002-4 hoursSplit if possible
XL> 1000DaysMust split

Target: Keep PRs under 300 lines changed.

Commit Messages

Use conventional commits:

feat: add user authentication
fix: resolve login redirect loop
docs: update API documentation
refactor: extract auth utilities
test: add auth endpoint tests
chore: update dependencies

Format:

<type>: <short description>

<optional body explaining why>

<optional footer with references>

Branch Naming

feat/short-description    # New features
fix/issue-description     # Bug fixes
refactor/what-changed     # Code refactoring
docs/what-documented      # Documentation
test/what-tested          # Test additions

Starting New Work

When a new prompt arrives:

  • If the current branch already matches the work, continue on that branch
  • Otherwise, switch back to the repository's integration branch: prefer dev, otherwise main
  • Pull that branch before starting the new task
  • Create a fresh branch for the new work and open a new PR back into that same branch
  • Do not create a new git worktree unless the user explicitly requests one
git checkout <default-base-branch>
git pull --ff-only
git checkout -b feat/my-change
gh pr create --base <default-base-branch> --title "feat: describe change"

Common gh Commands

# Create PR with labels
gh pr create --title "feat: thing" --label "enhancement" --label "needs-review"

# Create open PR
gh pr create --title "feat: thing"

# Request reviewers
gh pr edit 123 --add-reviewer @username

# Check CI status
gh pr checks 123 --watch

# View PR diff
gh pr diff 123

# Checkout PR locally
gh pr checkout 123

# Close PR
gh pr close 123

# Reopen PR
gh pr reopen 123

# List open PRs
gh pr list

# View PR comments
gh pr view 123 --comments

Review Process

  1. Self-review first - Read your own diff before requesting review
  2. CI must pass - Don't request review until checks are green
  3. Respond to feedback - Address or discuss all comments
  4. Squash on merge - Keep default branch history clean
# Merge with squash (preferred)
gh pr merge 123 --squash --delete-branch

# Merge with rebase (for stacks)
gh pr merge 123 --rebase --delete-branch

Addressing PR Comments

When fixing review comments, follow this workflow for each comment.

If you are given a direct GitHub comment URL, treat it as an instruction to handle that exact thread end-to-end: inspect it, reply on that thread, resolve it if fixed or invalid, and explicitly tell the user if it remains unresolved.

1. Make Individual Commits

Create a separate conventional commit for each review comment fix:

# Fix first comment
git add src/auth.ts
git commit -m "fix: add null check for user token

Addresses review comment about potential null reference"

# Fix second comment
git add src/api/users.ts
git commit -m "refactor: extract validation logic to separate function

Addresses review comment about function complexity"

# Fix third comment
git add src/utils.ts
git commit -m "fix: handle edge case for empty array

Addresses review comment about missing edge case handling"

Do NOT batch multiple comment fixes into one commit. Each fix should be atomic and traceable.

2. Always Reply

Every linked comment must get a thread reply. Do not fix code silently and move on.

If fixed or otherwise addressed:

Fixed in <commit-sha>

Or with more context:

Fixed in abc1234 - added null check before accessing token property.

If the comment is not valid or no code change is needed:

I do not think this change is needed because [reason].

Current behavior is intentional/correct for [explanation], so I am resolving this thread.

If the comment is still valid or not yet addressed:

  • Leave the thread open in GitHub
  • If a thread reply is useful, keep it focused on status, reasoning, or a clarifying question
  • Explicitly tell the user that this comment remains unresolved and why

3. Resolve Only When Appropriate

After replying:

  • Resolve the conversation if the requested change was made
  • Resolve the conversation if the comment is invalid and you explained why no change is needed
  • Do not resolve the conversation if the comment is still valid, blocked, or needs follow-up
  • When a thread remains open, explicitly flag that unresolved status to the user
  • Do not post "this is unresolved" in GitHub just to satisfy this rule
# View comments to get comment IDs
gh api repos/{owner}/{repo}/pulls/{pr}/comments

# Resolve fixed or invalid conversations after replying
# Leave unresolved conversations open

In the GitHub web UI: Click "Resolve conversation" only after your reply if the thread is addressed or invalid.

Complete Workflow Example

# 1. Read all comments
gh pr view 123 --comments

# 2. For each valid comment, fix and commit individually
git add src/auth.ts
git commit -m "fix: validate token expiry before use

Addresses review feedback on auth token handling"

# 3. Push all fixes
git push

# 4. Reply to each linked comment thread in GitHub UI or via API
gh api repos/adynato/myrepo/pulls/123/comments/456789/replies \
  -f body="Fixed in $(git rev-parse --short HEAD)"

# 5. Resolve only threads that are fixed or invalid
# Leave still-valid threads open and tell the user they remain unresolved

Comment Response Templates

ScenarioGitHub replyUser report
Fixed"Fixed in abc1234""Resolved."
Fixed with explanation"Fixed in abc1234 - moved validation to middleware as suggested""Resolved."
Invalid / no change needed"Current behavior is intentional because [reason], so I am resolving this thread.""Resolved as invalid / no change needed."
Still open / blocked"I’m looking into this. [status or blocker]""This comment is still unresolved because [reason]."
Needs discussion"I see your point, but [reasoning]. What do you think about [alternative]?""This comment is still unresolved pending discussion."
Won't fix (out of scope)"Good catch, but out of scope for this PR. Created #456 to track.""This comment is still unresolved for this PR; follow-up tracked in #456."
Question/clarification"Good question - [explanation of why code works this way]""Resolved after clarification."

Rules

  1. One commit per comment - Makes it easy to trace what fixed what
  2. Always reply on the linked thread - Never leave comment URLs unaddressed
  3. Resolve only when fixed or invalid - Do not close valid open feedback
  4. If still valid, flag it to the user - Leave the thread open and report the unresolved status back to the user
  5. Reference commits - Include SHA so reviewer can verify the fix
  6. Be respectful - Even when disagreeing, explain your reasoning
  7. Create issues for scope creep - If a comment suggests something bigger, create an issue instead

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

37.78%
按下载量换算1,260

Claude

29.69%
按下载量换算990

Cursor

20.2%
按下载量换算673

Gemini CLI

8.86%
按下载量换算295

安全审计

暂无安全审计结果可展示。

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills