agentsclimarketplace

Gh repos

Skill yanggggjie/my-skills/skills/gh-repos

用 gh 浅克隆 GitHub 仓库到 ~/.gh-repos,返回绝对路径供只读探索。在阅读、分析尚未本地检出的 owner/repo 时使用;当其它 skill 需要外部仓库本地路径时使用。From its SKILL.md

Install
npx -y skills add yanggggjie/my-skills --skill gh-repos

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 28 days oldThe repository was created 28 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.2 KB, 339 tokens by cl100k_base, as published. Nobody here has run it

gh-repos

把 GitHub 仓库浅克隆~/.gh-repos/<owner>/<repo>,把绝对路径交给后续搜索与阅读。已存在则复用;除非用户明确要求更新,否则不拉取。

前置:本机已安装并登录 gh

获取

  1. 从用户输入得到 owner/repo(GitHub URL 则抽出 owner/repo)。设:
DIR="$HOME/.gh-repos/<owner>/<repo>"
  1. $DIR 不存在则浅克隆;已存在则跳过:
mkdir -p "$(dirname "$DIR")"
gh repo clone <owner/repo> "$DIR" -- --depth 1

完成标准:DIR 是已存在目录的绝对路径(test -d "$DIR"),并把它交给后续步骤。

  1. 只在该路径下阅读、搜索与总结。完成标准:凡对仓库文件的断言都来自该树(或明确说明未找到)。

更新

仅当用户明确要求更新或拉最新时:

git -C "$DIR" pull --ff-only

完成标准:命令成功(或已是最新);仍返回同一 $DIR

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.