원클릭으로
gh-fetch
Read files from a GitHub repo via bash. web_fetch on GitHub will fail.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read files from a GitHub repo via bash. web_fetch on GitHub will fail.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when 3+ items each need a decision — claim-by-claim synthesis, accept/reject options, multi-point recommendations, 'decide on each'. Skip if 1-2 items, one narrative, or final answer wanted.
Use when searching or reading works by Buddhadasa Bhikkhu (พุทธทาสภิกขุ). Triggers on mentions of Buddhadasa, พุทธทาส, อินทปัญโญ, สวนโมกข์, ธรรมโฆษณ์, BIA archive, BIA reference codes (BIA-...), or requests to search the Buddhadasa Indapanno Archives.
Use when creating new skills, editing existing skills, or reviewing a SKILL.md
Use when a task is open-ended or the user wants to settle on an approach before producing a deliverable. One question at a time, 2-3 alternatives with recommendation, approval before output.
Fetch a specific past chat by timestamp. Triggers when the user pastes "refer-chat YYYY-MM-DDTHH:MMZ" — a minute-level ISO timestamp from their bookmarklet. Also triggers when the user asks how to install the chat timestamp bookmarklet or how to reference past chats precisely.
Show GitHub star history charts. Triggers on star history, star chart, repo popularity, comparing repos by stars.
| name | gh-fetch |
| description | Read files from a GitHub repo via bash. web_fetch on GitHub will fail. |
URLs may be user-provided, found via web search, or inferred from a project name.
# github.com/{owner}/{repo}/blob/{branch}/{path}
# → cdn.jsdelivr.net/gh/{owner}/{repo}@{branch}/{path}
curl -s "https://cdn.jsdelivr.net/gh/{owner}/{repo}@{branch}/{path}"
# Call 1 — fetch (npx download + clone can be slow; split for visibility)
npx degit {owner}/{repo}/{path} /tmp/{name} --force
# Call 2 — verify
find /tmp/{name} -type f | sort
git clone --depth 1 https://github.com/{owner}/{repo}.git /tmp/{repo}