원클릭으로
download-github-skills
指导智能体如何从给定的github仓库路径中下载指定的skill文件夹安装到用户的skills目录中。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
指导智能体如何从给定的github仓库路径中下载指定的skill文件夹安装到用户的skills目录中。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Expert in building cross-platform desktop applications using web technologies (HTML/CSS/JS) with the Electron framework.
TypeScript and JavaScript expert with deep knowledge of type-level programming, performance optimization, monorepo management, migration strategies, and modern tooling.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Refine academic writing for computer science research papers targeting top-tier venues (NeurIPS, ICLR, ICML, AAAI, IJCAI, ACL, EMNLP, NAACL, CVPR, WWW, KDD, SIGIR, CIKM, and similar). Use this skill whenever a user asks to improve, polish, refine, edit, or proofread academic or research writing — including paper drafts, abstracts, introductions, related work sections, methodology descriptions, experiment write-ups, or conclusion sections. Also trigger when users paste LaTeX content and ask for writing help, mention "camera-ready", "rebuttal", "paper revision", or reference any academic venue or conference. This skill handles both full paper refinement and section-by-section editing.
The Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.
Baidu Scholar Search - Search Chinese and English academic literature (journals, conferences, papers, etc.)
SOC 직업 분류 기준
| name | download_github_skills |
| description | 指导智能体如何从给定的github仓库路径中下载指定的skill文件夹安装到用户的skills目录中。 |
这里以下载skill-creatorskill文件夹为例,提供的github链接为https://github.com/anthropics/skills/tree/main/skills/skill-creator。
步骤 1:初始化空仓库并配置稀疏检出
# 根据skill文件夹的名称skill-creator创建临时目录
mkdir "/user's/work_dir/tmp/skill-creator"
# 进入临时目录
cd "/user's/work_dir/tmp/skill-creator"
# 初始化空的git仓库
git init
# 启用稀疏检出模式
git config core.sparseCheckout true
# 指定要下载的文件夹路径(仅skills文件夹)
echo "skills/skill-creator/*" >> .git/info/sparse-checkout
步骤 2:关联远程仓库并拉取指定内容
# 添加远程仓库(命名为origin,可自定义)
git remote add origin https://github.com/anthropics/skills.git
# 拉取main分支的指定文件夹内容
git pull origin main
执行完成后,/user's/work_dir/tmp/skill-creator 下会出现 skill-creator 文件夹,包含目标内容
步骤 3:将下载的文件移动到用户指定的目录中
# 先检查是否存在skill-creator 文件夹
ls -l "/user's/work_dir/tmp/skill-creator"
# 如果存在,则将下载的skill文件夹移动到用户配置中的skills目录中
cp -r "/user's/work_dir/tmp/skill-creator/" "/user's/work_dir/configs/skills/."
注意:
命令行依次执行,不要一次执行多条命令,执行后看结果正常,没有则进行修改,3次尝试无法成功则直接告诉用户具体问题是什么。