Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

github-knowledgeGitHub 知识

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hanniballei/github-knowledge --skill github-knowledge

简介

用于构建和维护 GitHub 项目的知识库系统。

  • 自动提取文档、注释和讨论要点。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持问答式检索和上下文关联。github-knowledge 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可作为内部培训和新成员 onboarding 工具。
  • 知识更新依赖定期同步仓库内容。

SKILL.md

GitHub Knowledge

Reading the Knowledge Base Path

At the start of every operation, read the configured path:

GITHUB_KNOWLEDGE_PATH=$(printenv GITHUB_KNOWLEDGE_PATH 2>/dev/null \
  || bash -c 'source ~/.bashrc 2>/dev/null; source ~/.zshrc 2>/dev/null; echo $GITHUB_KNOWLEDGE_PATH')
echo "$GITHUB_KNOWLEDGE_PATH"

If empty, ask the user for their desired storage path, then guide them to configure it:

  • bash / zsh: add to ~/.bashrc or ~/.zshrc: export GITHUB_KNOWLEDGE_PATH=/path/chosen/by/user Then reload: source ~/.bashrc
  • fish: add to ~/.config/fish/config.fish: set -x GITHUB_KNOWLEDGE_PATH /path/chosen/by/user Then reload: source ~/.config/fish/config.fish

Intent Decision Tree

Determine user intent before taking any action.

User asks about github/repo/仓库?
│
├─ Intent: explicitly download/clone/save a repo?  ──→ [Download Flow]
│   (keywords: 下载, clone, 保存, 收藏, 加入知识库)
│
└─ Intent: ask about / query a repo?               ──→ [Query Flow]
    (keywords: 怎么用, 介绍, 有什么issue, 看看, 了解, 搜索)

Download Flow

1. Require a repo URL

The user must provide a full GitHub URL before cloning. If not given, ask:

"请提供要下载的 GitHub 仓库链接(格式:https://github.com/owner/repo)"

Do not proceed until a URL is confirmed.

2. Resolve owner and repo name

OWNER=$(echo "$REPO_URL" | awk -F'/' '{print $4}')
REPO=$(echo "$REPO_URL" | awk -F'/' '{print $5}')
LOCAL_PATH="$GITHUB_KNOWLEDGE_PATH/$OWNER/$REPO"

3. Check if already local

[ -d "$LOCAL_PATH" ] && echo "EXISTS" || echo "NEW"

4a. New repo → Clone

For large repos use --depth 1 to save time and disk space; omit for smaller repos where full history is useful:

mkdir -p "$GITHUB_KNOWLEDGE_PATH/$OWNER"
git clone --depth 1 "$REPO_URL" "$LOCAL_PATH"

If clone fails:

  • Print the error message to the user
  • If the directory was partially created, clean it up: rm -rf "$LOCAL_PATH"
  • Common causes to mention: network issues, private repo (requires authentication), wrong URL format
  • Do not proceed with summarization; ask the user to verify the URL and try again

Read the repo contents and generate a summary (see Summarization). Write a new entry to BASE.md (see BASE.md format).

4b. Existing repo → Pull and assess

Use the Pull Helper with OWNER and REPO set. Then:

If skipping pull: use local files as-is. If pull ran and there were meaningful changes (new features, major fixes, architecture changes): update the summary in BASE.md. If only minor changes (docs, typos, deps): keep existing summary.


Query Flow

1. Resolve the repo

Extract owner/repo from the user's message if provided.

If only a repo name is given (no owner), first search BASE.md locally before hitting GitHub API:

BASE_MD="$GITHUB_KNOWLEDGE_PATH/BASE.md"
# REPO is the name extracted from the user's message (e.g. "react" → REPO=react)
# Match all entries whose repo name (after the /) equals the given name (case-insensitive)
MATCHES=$(grep -i "## \[.*/$REPO\]" "$BASE_MD" 2>/dev/null | grep -oE '\[[^]]+\]' | tr -d '[]')
COUNT=$(echo "$MATCHES" | grep -c '[^[:space:]]' 2>/dev/null || echo 0)
  • 0 matches → fall back to GitHub search:

- Run gh search repos <name> --sort stars --limit 1 to find the most popular match - Use that repo and inform the user: "已使用 owner/repo,如需其他版本请提供完整链接" - If gh is unavailable: curl -s "https://api.github.com/search/repositories?q=<name>&sort=stars&per_page=1" \ | python3 -c "import sys,json; r=json.load(sys.stdin)['items'][0]; print(r['full_name'])"

  • 1 match → extract OWNER and REPO from it, proceed
  • 2+ matches → ambiguous; list all matches and ask the user to clarify: "本地知识库中有多个同名仓库,请指定: facebook/react some-fork/react" Wait for user selection before proceeding.

2. Check if exists locally

[ -d "$GITHUB_KNOWLEDGE_PATH/$OWNER/$REPO" ] && echo "EXISTS" || echo "NOT_FOUND"

3a. Found locally → Pull and answer

Use the Pull Helper with OWNER and REPO set.

Read local files to answer the user's question.

Check if summary needs updating using the same criteria as Download Flow:

  • Meaningful changes (new features, major fixes, architecture changes) → update BASE.md
  • Minor changes (docs, typos, deps) → keep existing summary

3b. NOT found locally → Search GitHub and answer

Do not clone. Use gh CLI or curl to fetch information:

# With gh CLI
gh repo view owner/repo
gh search repos <query> --limit 5
gh search issues --repo owner/repo "<query>"
gh pr list --repo owner/repo --state open --limit 10

# Fallback with curl (60 req/hr unauthenticated)
curl -s "https://api.github.com/repos/owner/repo"
curl -s "https://api.github.com/search/repositories?q=<query>&per_page=5"
curl -s "https://api.github.com/repos/owner/repo/issues?state=open&per_page=10"
curl -s "https://api.github.com/repos/owner/repo/pulls?state=open&per_page=10"

Answer the user's question from the fetched data.

Rate limit note: unauthenticated curl requests are limited to 60/hr. If you receive a 403 response, inform the user: "GitHub API 访问频率超限(匿名 60次/小时)。建议在 ~/.bashrc 中配置:export GITHUB_TOKEN=your_token,然后在 curl 请求中加上 -H "Authorization: Bearer $GITHUB_TOKEN""。 If GITHUB_TOKEN is already set in the environment, always include the Authorization header in curl calls.

Summarization

When generating or updating a repo summary, read in order:

  1. README.md (primary source)
  2. docs/ directory if present
  3. package.json / pyproject.toml / Cargo.toml for tech stack
  4. Top-level source structure (ls -la)

Write a concise paragraph covering: what it does, the problem it solves, key technologies, and status (active/archived).

Then update BASE.md. See BASE.md format.


BASE.md Management

See BASE.md format for the full format specification.

Quick rule: one entry per repo, most recently updated at the top. Update in-place when refreshing; never duplicate entries.


Pull Helper

Used by both Download Flow (step 5b) and Query Flow (step 3a). Requires OWNER and REPO to be set.

BASE_MD="$GITHUB_KNOWLEDGE_PATH/BASE.md"
LOCAL_PATH="$GITHUB_KNOWLEDGE_PATH/$OWNER/$REPO"
TODAY=$(date +%Y-%m-%d)
UPDATED=$(grep -A3 "## \[$OWNER/$REPO\]" "$BASE_MD" 2>/dev/null | grep "^\*\*Updated\*\*" | grep -oE '[0-9]{4}-[0-9]{2}-[0-9]{2}')

if [ "$UPDATED" = "$TODAY" ]; then
  echo "SKIP_PULL: already up-to-date today"
else
  cd "$LOCAL_PATH"
  IS_SHALLOW=$(git rev-parse --is-shallow-repository 2>/dev/null)
  if [ "$IS_SHALLOW" = "true" ]; then
    git pull --depth 1
  else
    git pull
  fi
  git log --oneline -20
fi
  • If SKIP_PULL: use local files as-is
  • If pull ran: inspect git log output to decide if the summary needs updating

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.83%
按下载量换算26

Claude

29.81%
按下载量换算21

Cursor

18.94%
按下载量换算13

Gemini CLI

10.51%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills