Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

github-pushGitHub push 自动化

Agent Skill

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

总安装

15,085

周安装

443

GitHub Stars

1

下载量

4,473
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alfredang/skills --skill 'GitHub Push'

简介

用于围绕 GitHub 仓库、Issue 和 Pull Request 提供协作辅助能力,支持安全推送和自动化检查。

  • 适用于 Codex、Claude、Cursor 等宿主环境,自动检测敏感信息和生成 README。
  • 使用时需区分只读查询和写入操作,避免直接修改关键分支或权限。
  • 涉及私有仓库或创建 PR 时,应确认 token 权限和用户授权范围。
  • github-push 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Push

Command

/github-push or github-push

Navigate

Git & Security

Keywords

github push, git push, secret detection, api key scan, credential scan, security check, push to github, commit and push, secret scanner, readme generator, safe push, secure push, pre-push hook, leak detection, api key exposed, password exposed

Description

Securely push code to GitHub by automatically scanning for exposed secrets, API keys, and credentials. Auto-generates README.md if missing, configures repo description, live site URL, topics, and enables GitHub Discussions.

Execution

This skill runs using Claude Code with subscription plan. Do NOT use pay-as-you-go API keys. All AI operations should be executed through the Claude Code CLI environment with an active subscription.

Response

I'll help you securely push to GitHub!

The workflow includes:

StepDescription
Secret ScanDetect exposed API keys, passwords, and credentials
File ReviewCheck for sensitive files that shouldn't be committed
README GenAuto-generate README.md via /create_github_readme skill if missing
Git CommitStage and commit with AI-generated message
PushPush to remote repository
PR CreateOptionally create a pull request
Repo AboutAuto-invoke /github-about to set description, live site URL, and topics

Instructions

When executing /github_push, follow this workflow:

Phase 1: Secret Detection (MANDATORY)

Before ANY git operations, scan the codebase for exposed secrets. This is a blocking requirement - do not proceed if secrets are found.

1.1 Scan Staged Files

git diff --cached --name-only

1.2 Secret Pattern Detection

Scan ALL staged files for these patterns:

AWS Credentials

AKIA[0-9A-Z]{16}
aws_access_key_id\s*=\s*['"][A-Za-z0-9/+=]+['"]
aws_secret_access_key\s*=\s*['"][A-Za-z0-9/+=]+['"]

API Keys (Generic)

api[_-]?key\s*[:=]\s*['"][A-Za-z0-9_\-]{20,}['"]
apikey\s*[:=]\s*['"][A-Za-z0-9_\-]{20,}['"]
api[_-]?secret\s*[:=]\s*['"][A-Za-z0-9_\-]{20,}['"]

Private Keys

-----BEGIN (RSA|DSA|EC|OPENSSH|PGP) PRIVATE KEY-----
-----BEGIN PRIVATE KEY-----

Database Connection Strings

postgres(ql)?://[^\s'"]+
mysql://[^\s'"]+
mongodb(\+srv)?://[^\s'"]+
redis://[^\s'"]+

OAuth & Bearer Tokens

bearer\s+[A-Za-z0-9\-_.~+/]+=*
oauth[_-]?token\s*[:=]\s*['"][A-Za-z0-9_\-]+['"]
access[_-]?token\s*[:=]\s*['"][A-Za-z0-9_\-]+['"]
refresh[_-]?token\s*[:=]\s*['"][A-Za-z0-9_\-]+['"]

Cloud Provider Secrets

# Google Cloud
AIza[0-9A-Za-z\-_]{35}

# Azure
[a-zA-Z0-9+/]{86}==

# Heroku
[hH]eroku.*[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}

# Stripe
sk_live_[0-9a-zA-Z]{24}
rk_live_[0-9a-zA-Z]{24}
pk_live_[0-9a-zA-Z]{24}

# Twilio
SK[0-9a-fA-F]{32}

# SendGrid
SG\.[a-zA-Z0-9_-]{22}\.[a-zA-Z0-9_-]{43}

# Slack
xox[baprs]-[0-9]{10,13}-[0-9]{10,13}[a-zA-Z0-9-]*

# GitHub
gh[pousr]_[A-Za-z0-9_]{36,}

# OpenAI
sk-[A-Za-z0-9]{48}

# Anthropic
sk-ant-[A-Za-z0-9\-_]{90,}

Generic Secrets

password\s*[:=]\s*['"][^'"]{8,}['"]
secret\s*[:=]\s*['"][^'"]{8,}['"]
credential\s*[:=]\s*['"][^'"]{8,}['"]
private[_-]?key\s*[:=]\s*['"][^'"]+['"]

JWT Tokens

eyJ[A-Za-z0-9_-]*\.eyJ[A-Za-z0-9_-]*\.[A-Za-z0-9_-]*

1.3 Check for Sensitive Files

Files that should NEVER be committed:

  • .env, .env.* (environment files)
  • *.pem, *.key, *.p12, *.pfx (certificates/keys)
  • credentials.json, secrets.json, config.secret.*
  • id_rsa, id_dsa, id_ecdsa, id_ed25519 (SSH keys)
  • *.keystore, *.jks (Java keystores)
  • .htpasswd, .netrc, .npmrc (auth files)
  • wp-config.php (WordPress config)
  • database.yml with credentials
  • settings.py with SECRET_KEY

IMPORTANT: Never store secrets in config files!

Secrets should NEVER be hardcoded in configuration files like:

  • config.json, config.yaml, config.toml
  • settings.json, settings.py, settings.js
  • app.config.js, next.config.js, vite.config.ts
  • Any file that gets committed to version control

Where to store secrets instead:

  • .env files (must be in .gitignore)
  • uv secret files for Python projects (uv supports .env loading)
  • Platform secret managers (Vercel, Railway, Fly.io environment variables)
  • Cloud secret managers (AWS Secrets Manager, GCP Secret Manager, Azure Key Vault)

Verify.gitignore includes:

grep -E "^\.env|^\.env\.|\.pem$|\.key$|credentials|secrets" .gitignore

1.4 Secret Detection Results

If secrets are found:

  1. STOP - Do not proceed with push
  2. List all detected secrets with file:line locations
  3. Provide remediation steps:

- Remove the secret from the file - Move secrets to .env file (ensure .env is in .gitignore) - For Python/uv projects, use .env with uv run which auto-loads environment variables - Use process.env.SECRET_NAME (Node.js) or os.environ["SECRET_NAME"] (Python) - NEVER store secrets in config files (config.json, settings.py, etc.) - Add sensitive files to.gitignore - If already committed, guide through history rewrite

Example output when secrets found:

SECURITY ALERT: Secrets detected in staged files!

File: src/config.js:15
  Type: API Key
  Pattern: api_key = "sk-abc123..."

File: .env:3
  Type: Database URL
  Pattern: DATABASE_URL=postgres://user:password@...

BLOCKED: Cannot push until secrets are removed.

Remediation:
1. Remove secrets from config files (NEVER store secrets in config files!)
2. Move secrets to .env file (ensure .env is in .gitignore)
3. For Python/uv: use .env file - uv run auto-loads environment variables
4. Access via: process.env.API_KEY (Node.js) or os.environ["API_KEY"] (Python)
5. Run: git reset HEAD <file> to unstage

If NO secrets found:

Security scan complete: No secrets detected.
Proceeding with push...

Phase 2: README Generation

Check if a README.md exists in the project root:

ls README.md 2>/dev/null

If no README.md exists:

  1. Invoke the /create_github_readme skill to generate a professional README
  2. The readme skill will auto-capture screenshots, add badges, tech stack, architecture diagrams, and more
  3. After the skill completes, stage the generated README.md (and screenshot.png if created)

If README.md already exists:

  • Skip this phase unless the user explicitly requests README regeneration

Phase 3: Git Operations

3.1 Check Status

git status
git diff --cached --stat

3.2 Stage Files

If files need staging:

git add <specific-files>

Important: Never use git add -A or git add. - always add specific files to avoid accidentally committing sensitive files.

3.3 Generate Commit Message

Based on the changes:

  • Analyze what files were modified
  • Understand the nature of changes (feature, fix, refactor, docs, etc.)
  • Generate a concise commit message following conventional commits:

- feat: new feature - fix: bug fix - docs: documentation - refactor: code refactoring - test: tests - chore: maintenance

3.4 Commit

git commit -m "$(cat <<'EOF'
<type>: <description>

<optional body>

Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"

3.5 Push

git push origin <branch>

If push fails due to upstream changes:

git pull --rebase origin <branch>
git push origin <branch>

Phase 4: Pull Request (Optional)

If user requests PR creation:

gh pr create --title "<title>" --body "$(cat <<'EOF'
## Summary
- Change 1
- Change 2

## Test Plan
- [ ] Test 1
- [ ] Test 2

---
Generated with [Claude Code](https://claude.ai/code)
EOF
)"

Phase 5: Repository About (Auto-invoke /github-about)

After pushing, automatically run the /github-about skill to update the repo's About section.

The /github-about skill will:

  1. Description — Analyze the codebase and set a compelling repo description (if not already set)
  2. Live Site URL — Detect deployment URLs (Vercel, GitHub Pages, Netlify, etc.) and set the homepage
  3. Topics — Analyze tech stack (languages, frameworks, platforms) and add relevant topics

Simply invoke /github-about — it handles authentication, detection, and updates automatically.

5.4 Enable Discussions

After /github-about completes, also enable discussions if not already enabled:

gh repo view --json hasDiscussionsEnabled

If discussions are NOT enabled:

gh repo edit --enable-discussions

Capabilities

  • Scan for 20+ types of exposed secrets and credentials
  • Detect sensitive files that shouldn't be committed
  • Auto-generate professional README.md via /create_github_readme skill
  • Create AI-powered commit messages
  • Push to GitHub with safety checks
  • Create pull requests with descriptions
  • Auto-invoke /github-about to set repo description, live site URL, and topics
  • Auto-enable GitHub Discussions
  • Support for all git workflows (feature branches, main)

Security Patterns Detected

CategoryExamples
Cloud CredentialsAWS, GCP, Azure, Heroku
API KeysOpenAI, Anthropic, Stripe, Twilio, SendGrid
Auth TokensOAuth, Bearer, JWT, Session tokens
Database URLsPostgreSQL, MySQL, MongoDB, Redis
Private KeysRSA, DSA, EC, SSH, PGP
Platform TokensGitHub, Slack, Discord webhooks
Generic SecretsPasswords, credentials, secrets in code

Next Steps

After running /github_push:

  1. Verify the push succeeded on GitHub
  2. Check Actions for CI/CD status
  3. Review the generated README
  4. Verify repo description, topics, and live site URL on GitHub
  5. Check that Discussions are enabled and categories are set up
  6. Share PR link if created
  7. Monitor for any security alerts from GitHub

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

40.27%
按下载量换算1,801

Claude

29.73%
按下载量换算1,330

Cursor

17.66%
按下载量换算790

Gemini CLI

8.83%
按下载量换算395

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills