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

github-aboutGitHub about 搜索

Agent Skill

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

总安装

21,252

周安装

626

GitHub Stars

1

下载量

6,215
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项。
  • 通过 npx skills add 命令从指定仓库安装使用。
  • 涉及写入操作时需确认 token 权限和用户授权,区分只读与写操作。
  • 可结合原始 README 进一步了解具体功能和使用方法。

SKILL.md

GitHub About

Command

/github-about or github-about

Navigate

Git & Repository

Keywords

github about, repo description, github topics, live site url, homepage url, repo setup, github metadata, repo settings, github description, add topics, set homepage, repo about, github profile, project metadata, update about, update repo, update github, update description, set topics, repo about section, about section, update repo about, update github about

Description

Automatically update your GitHub repository's About section — description, live site URL, and topics — by analyzing your codebase. No manual repo settings needed.

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.

IMPORTANT: Auto-trigger behavior This skill should be automatically invoked (without the user needing to type /github-about) whenever the user asks to:

  • Update the GitHub about section
  • Set or change the repo description
  • Add topics to the repo
  • Set the homepage/live site URL
  • Update repo metadata
  • "Polish" or "set up" their GitHub repo

When auto-triggered, run the full workflow silently and report results at the end.

Environment Setup

Before running ANY gh commands, always source the token:

source ~/.zshrc 2>/dev/null

This loads GH_TOKEN which the gh CLI uses automatically for authentication. This MUST be done at the start of every execution.

Response

I'll update your GitHub repo's About section!

The workflow includes:

StepDescription
Env SetupSource ~/.zshrc to load GH_TOKEN
Auth CheckVerify gh CLI authentication via token
Repo InfoExtract owner/repo from git remote
DescriptionGenerate and set a compelling repo description
Live SiteDetect and set the live site URL
TopicsAnalyze tech stack and add relevant topics

Instructions

When executing /github-about, follow this workflow:

Phase 1: Pre-flight

1.1 Verify GitHub CLI

gh --version

If not installed, inform the user:

ERROR: GitHub CLI (gh) not found.
Install: https://cli.github.com/

1.2 Authenticate with GH_TOKEN

The GH_TOKEN environment variable is already configured in ~/.zshrc. The gh CLI automatically uses GH_TOKEN when present — no browser login needed.

Authentication check order:

  1. Source the token and verify:
source ~/.zshrc 2>/dev/null
echo "GH_TOKEN is set: ${GH_TOKEN:+yes}"
  1. Verify it works:
gh auth status
  1. If GH_TOKEN is not set and gh auth status fails, fall back to browser login:
gh auth login --hostname github.com --git-protocol https --web

Important: Always run source ~/.zshrc before any gh commands to ensure GH_TOKEN is loaded into the current shell session. The gh CLI respects GH_TOKEN and GITHUB_TOKEN environment variables automatically — no extra configuration needed.

1.3 Extract Owner/Repo

REMOTE_URL=$(git remote get-url origin)
OWNER=$(echo "$REMOTE_URL" | sed -E 's#.*(github\.com)[:/]([^/]+)/([^/.]+)(\.git)?$#\2#')
REPO=$(echo "$REMOTE_URL" | sed -E 's#.*(github\.com)[:/]([^/]+)/([^/.]+)(\.git)?$#\3#')

1.4 Get Current Repo Metadata

gh repo view --json description,homepageUrl,repositoryTopics

Store the current values so we know what needs updating.

Phase 2: Repository Description

2.1 Check Current Description

If the description is already set, skip unless user explicitly asks to update it.

2.2 Generate Description

Analyze the project to generate a short, compelling description (max 350 characters):

Sources to analyze (in priority order):

  1. README.md — project title, first paragraph, features
  2. package.jsondescription field
  3. pyproject.toml[project] description
  4. Cargo.tomldescription
  5. setup.py or setup.cfg → description
  6. Main source files — understand what the project does

Description guidelines:

  • Start with a verb or noun (e.g., "A fast...", "Build...", "CLI tool for...")
  • Be specific about what the project does
  • Mention key technology if relevant
  • Keep it under 350 characters
  • No emojis in the description
  • Don't start with "This is..." or "A repo for..."

2.3 Set Description

gh repo edit --description "Your generated description"

Phase 3: Live Site URL

3.1 Check Current Homepage

If the homepage URL is already set, skip unless user explicitly asks to update it.

3.2 Detect Live Site URL

Search for deployment URLs in this priority order:

  1. Vercel: Check for Vercel deployment # Check if Vercel project exists cat.vercel/project.json 2>/dev/null # Or check vercel.json for project name cat vercel.json 2>/dev/null URL pattern: https://<project-name>.vercel.app
  2. GitHub Pages: Check if Pages is enabled gh api "/repos/$OWNER/$REPO/pages" 2>/dev/null URL pattern: https://<owner>.github.io/<repo>/
  3. package.json: Check homepage field node -e "console.log(require('./package.json').homepage || '')" 2>/dev/null
  4. README.md: Scan for deployment URLs

- Look for URLs containing: .vercel.app, .netlify.app, .github.io, .herokuapp.com, .fly.dev, .railway.app

  1. Custom domain: Check CNAME file (GitHub Pages custom domain) cat CNAME 2>/dev/null

3.3 Set Homepage URL

gh repo edit --homepage "https://detected-url.com"

Phase 4: Repository Topics

4.1 Check Current Topics

If topics are already set, add to them rather than replacing. Never remove existing topics.

4.2 Detect Topics from Codebase

Analyze the project to determine relevant topics:

Language detection:

File/PatternTopic
*.ts, *.tsxtypescript
*.js, *.jsxjavascript
*.pypython
*.rsrust
*.gogo
*.javajava
*.swiftswift
*.rbruby

Framework detection:

File/PatternTopic
next.config.*nextjs, react
vite.config.*vite
package.json with reactreact
package.json with vuevue
package.json with sveltesvelte
angular.jsonangular
requirements.txt with djangodjango
requirements.txt with fastapifastapi
requirements.txt with flaskflask
Cargo.tomlrust
go.modgolang
tailwind.config.*tailwindcss
expo in package.jsonexpo, react-native

Platform detection:

File/PatternTopic
.vercel/ or vercel.jsonvercel
Dockerfiledocker
fly.tomlfly-io
railway.jsonrailway
.github/workflows/github-actions
supabase/supabase

Domain detection (analyze README and source):

  • AI/ML projects → ai, machine-learning, llm
  • CLI tools → cli, command-line
  • APIs → api, rest-api, graphql
  • Web apps → web-app, webapp
  • Games → game, gamedev
  • DevTools → developer-tools, devtools

Topic guidelines:

  • All lowercase
  • Use hyphens for multi-word topics (e.g., react-native)
  • Add 3-10 relevant topics
  • Don't add generic topics like code or project
  • Prefer specific topics over vague ones

4.3 Add Topics

gh repo edit --add-topic "topic1" --add-topic "topic2" --add-topic "topic3"

Important: Use --add-topic (not --topic) to preserve existing topics.

Phase 5: Report

Print a summary of all changes made:

=== GitHub About Updated ===

Repository: OWNER/REPO

Description: <the description that was set>
Homepage:    <the URL that was set>
Topics:      topic1, topic2, topic3, topic4

View: https://github.com/OWNER/REPO

If any step was skipped (already set), note it:

Description: Already set (skipped)
Homepage:    https://example.vercel.app (updated)
Topics:      react, nextjs, typescript (added 3 new)

Capabilities

  • Auto-detect and set repository description from codebase analysis
  • Detect live site URLs from Vercel, GitHub Pages, Netlify, and more
  • Analyze tech stack to generate relevant repository topics
  • Preserve existing topics when adding new ones
  • Authenticate via GH_TOKEN from ~/.zshrc (no browser login needed)
  • Falls back to browser-based gh auth login if token is unavailable
  • Works with any project type (Node.js, Python, Rust, Go, etc.)

Next Steps

After running /github-about:

  1. Check your repo's About section on GitHub
  2. Verify the description accurately represents your project
  3. Click the homepage URL to confirm it works
  4. Review topics and add/remove any manually if needed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.01%
按下载量换算2,300

Claude

29.11%
按下载量换算1,809

Cursor

20.44%
按下载量换算1,270

Gemini CLI

9.27%
按下载量换算576

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills