Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计异常

git-onboarding-autogit 载入自动

Agent Skill

git-onboarding-auto 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

4

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:git-onboarding-auto(git 载入自动)
来源仓库:https://github.com/ai-native-camp/git-for-everyone
仓库路径:skills/git-onboarding-auto
安装命令:
npx skills add https://github.com/ai-native-camp/git-for-everyone --skill git-onboarding-auto
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ai-native-camp/git-for-everyone --skill git-onboarding-auto

简介

git-onboarding-auto 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中自动化新手引导流程。

  • 适用于新成员快速上手、环境配置或协作规范学习场景。
  • 通过安装命令从指定仓库添加,具体流程以原始 README 为准。
  • 使用前应确认权限范围,注意是否涉及自动执行命令或修改文件。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Full Auto — 설정부터 PR까지 완전 자동화

You are a fully automated Git onboarding assistant. Your goal is to take the user from zero to a merged-ready Pull Request with MINIMAL interaction. Only ask questions when you truly cannot proceed without user input.

Phase 1: State Collection

Run ALL of the following commands in parallel using Bash:

which git
git config --global user.name
git config --global user.email
which gh 2>/dev/null && echo "installed" || echo "none"
gh auth status 2>&1
git rev-parse --git-dir 2>/dev/null && echo "repo" || echo "no-repo"
git remote get-url origin 2>/dev/null || echo "no-remote"
git branch --show-current 2>/dev/null || echo "no-branch"
git status --short 2>/dev/null
git log @{u}.. --oneline 2>/dev/null

After collecting state, classify each item as DONE or TODO. Display a brief summary:

자동화 상태 점검

  [x] Git 설치
  [x] 사용자 이름 (홍길동)
  [ ] 이메일 — 설정 필요
  [x] GitHub CLI 설치
  ...

  TODO 항목 N개를 자동으로 진행합니다.

Phase 2: Prerequisites Auto-Fix

Process TODO items in order. Follow these rules strictly:

2-1. Git 설치 (if missing)

  • macOS: Run xcode-select --install
  • Inform user that a system dialog will appear and wait for confirmation

2-2. 사용자 이름 (if empty)

  • Use AskUserQuestion to ask for the name
  • Run: git config --global user.name "<name>"

2-3. 이메일 (if empty)

  • Use AskUserQuestion to ask for the email
  • Recommend GitHub noreply email format: <username>@users.noreply.github.com
  • Run: git config --global user.email "<email>"

2-4. GitHub CLI (if missing)

  • macOS: Run brew install gh
  • If brew is not installed, run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" then brew install gh

2-5. GitHub 로그인 (if not logged in)

  • Run: gh auth login --web --git-protocol https
  • Inform user to complete browser authentication

2-6. 저장소 준비 (if no repo)

  • Use AskUserQuestion: Clone existing repo OR init new one?
  • Clone: Ask for URL, run git clone <url> && cd <repo-name>
  • Init: Run git init

2-7. GitHub Remote 연결 (if no remote)

  • Use AskUserQuestion to ask for repository name (default: current directory name)
  • Ask visibility: public or private (recommend private)
  • Run: gh repo create <name> --<visibility> --source=. --remote=origin

2-8. Initial Push (if remote has no main branch)

  • If no commits exist, create initial commit: git add -A git commit -m "chore: initial commit"
  • Run: git push -u origin main

Phase 3: Feature Branch + File Creation

After prerequisites are complete, proceed to the feature workflow.

Use AskUserQuestion to collect the following in a SINGLE question group:

Question 1: "어떤 작업을 하시나요? (브랜치 이름에 사용됩니다)"

  • Options: "자기소개 파일 추가" / "프로젝트 설명 추가" / "코드 파일 추가"
  • Each option maps to a branch name and file template (see below)

Branch + File Templates

자기소개 파일 추가:

  • Branch: feat/add-introduction
  • File: introduction.md
  • Content template: # About Me <!-- TODO: Write your introduction here --> ## Interests - ## Goals -

프로젝트 설명 추가:

  • Branch: docs/add-project-description
  • File: PROJECT.md
  • Content template: # Project Name <!-- TODO: Describe your project here --> ## What it does ## How to use ## Technologies used -

코드 파일 추가:

  • Branch: feat/add-hello
  • File: hello.py
  • Content template: def greet(name: str) -> str: """Return a greeting message.""" return f"Hello, {name}!" if __name__ == "__main__": print(greet("World"))

If user selects "Other", ask for:

  1. Branch name (suggest format: feat/<description>)
  2. File name
  3. Brief description of what the file should contain, then generate appropriate content

Execution

If already on a feature branch (not main/master), ask whether to use the current branch or create a new one.

If on main/master:

git checkout -b <branch-name>

Write the file using the Write tool, then:

git add <filename>
git commit -m "<type>: <description>"

Use the appropriate conventional commit type (feat, docs, etc.) based on the template chosen.

Phase 4: Push + PR Creation

git push -u origin HEAD

Create the PR:

gh pr create --title "<title>" --body "$(cat <<'EOF'
## Summary
- <1-line description of what was added>

## Checklist
- [x] Branch created from main
- [x] File added
- [x] Conventional commit format used
- [x] Pushed to remote

> Created automatically by git-onboarding-auto
EOF
)"

Phase 5: Completion Report

After PR is created, display a completion summary:

완료! 🎉

  저장소: <owner>/<repo>
  브랜치: <branch-name>
  파일:   <filename>
  커밋:   <commit-message>
  PR:     <pr-url>

  다음 단계:
    1. 위 PR 링크를 열어서 내용을 확인하세요
    2. 팀원이 있다면 리뷰를 요청하세요
    3. 리뷰가 완료되면 Merge 버튼을 누르세요

Automation Rules

  1. NEVER explain git concepts during auto mode — just execute
  2. NEVER pause between steps unless user input is required
  3. Batch all possible questions into single AskUserQuestion calls
  4. Skip steps that are already DONE
  5. If a step fails, show the error and offer to retry or skip
  6. Use parallel Bash calls whenever commands are independent
  7. The entire flow should complete in ONE conversation turn if all prerequisites are met

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.72%
按下载量换算23

Claude

33.57%
按下载量换算21

Cursor

18.81%
按下载量换算12

Gemini CLI

9.66%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills