Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

setup-repo设置仓库

Agent Skill

setup-repo 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

1

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yldgio/vibe-grimoire --skill setup-repo

简介

提供仓库初始化与结构化模板应用支持。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要快速搭建代码库的场景。
  • 通过 npx skills add 命令从 vibe-grimoire 仓库安装。
  • 可能生成 .gitignore、README 等标准文件,需适配项目实际需求。
  • 建议启用分支保护规则,防止主分支被直接推送破坏。

SKILL.md

Setup Repo

This skill sets up or repairs a repository. The same rules apply whether the project is new or already initialized — inspect first, then apply each step.

Scope

This skill delivers repo scaffolding only: git initialization, .gitignore, .gitattributes, AGENTS.md, hooks, and skill installation. The summary in Step 9 is the final deliverable. Once it is delivered, this skill's work is complete — what happens next is the user's decision.

Step 1: Interview the user

Collect before touching any files:

  1. Project goal — one sentence: what is this project for?
  2. Tech stack — languages, frameworks, runtimes
  3. Skills — any specific agentic skills to add (optional)

If the project has tool constraints, also collect:

  1. Runtime targets — which runtimes need enforcement hooks (GitHub Copilot CLI, OpenCode)
  2. Tool constraints — package manager, task runner, formatter, linter, test runner, banned commands
  3. Strictness — hard-block or warning-only per category

If files already exist, scan them first and pre-fill answers to reduce friction. If the user skips the interview, infer everything from folder contents and note what was inferred in the summary.

Step 2: Explore the folder

Inspect the working directory before generating any files:

  • Whether .git exists
  • Source and config files (detect the stack)
  • Which setup surfaces already exist: .gitignore, .gitattributes, AGENTS.md, hooks/, .github/hooks/, .opencode/plugins/, .agents/skills/

Don't guess the stack — use what you actually find.

Step 3: Initialize git

If .git already exists, skip and note it in the summary.

git init .

Step 4: Create or update.gitignore

Read references/gitignore-patterns.md for comprehensive per-stack patterns.

Generate a .gitignore tailored to the detected stack, or merge missing patterns into an existing one. Always include the Universal section; add only the stack-specific sections that apply. Prefer additive edits; preserve existing custom patterns and comments.

Step 5: Create or update.gitattributes

Generate or update .gitattributes for cross-platform line-ending consistency and binary file handling:

* text=auto eol=lf
*.md text
*.json text
*.yaml text
*.yml text
*.toml text
*.sh text eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.woff binary
*.woff2 binary
*.ttf binary
*.zip binary
*.tar.gz binary
*.pdf binary

Add dist/** linguist-vendored if generated output directories are present.

Step 6: Create or update AGENTS.md

AGENTS.md must always be exactly 3–5 lines. No exceptions — new project or existing.

It is a tiny orientation card, nothing more. Do not put maintenance rules, tool policies, conventions, or commands in it.

# AGENTS.md
Project: <one-line purpose>
Stack: <only if genuinely multi-stack>
Key paths: <only if large multi-directory project>

If the file does not exist, create it. If it exists and is longer than 5 lines, rewrite it to fit the template above — extract the essentials and discard the rest. Tool policy belongs in hooks/, not here.

Step 7: Capture tool constraints and generate hooks

If the project has tool preferences or restrictions, store them in hooks/tool-guard/ — not in AGENTS.md.

Create:

  • hooks/tool-guard/README.md — human summary of the policy
  • hooks/tool-guard/policy.json — structured policy (runtimes, categories with preferred/blocked/mode, extra banned commands)

Then generate runtime-native enforcement:

  • GitHub Copilot CLI.github/hooks/tool-guard.json + scripts under .github/hooks/scripts/
  • OpenCode.opencode/plugins/tool-guard/index.ts + any opencode.json wiring

Use the tool-guard skill when available. If existing hook files are present, update or extend them rather than duplicating. Ask before replacing enforcement logic the project already relies on.

Step 8: Install relevant skills

Install skills to .agents/skills/<skill-name>/SKILL.md — this is the only correct location.

Stack / triggerSkills to add
Dockerdocker
GitHub Actions / CIgithub-actions, github-actions-templates
.NET / C#dotnet
Kubernetesk8s-manifest-generator, k8s-security-policies
Any GitHub projectgh-cli, conventional-commit, git-advanced-workflows
Tool constraints / hookstool-guard
  1. Search with awesome-copilot-search_instructions
  2. Load with awesome-copilot-load_instruction
  3. Write to .agents/skills/<skill-name>/SKILL.md

If a skill is already installed and current, leave it. Refresh only if stale or explicitly requested.

Step 9: Summarize

✅ git init  (or ⏭ already initialized)
✅ .gitignore  created / updated / unchanged
✅ .gitattributes  created / updated / unchanged
✅ AGENTS.md  created / rewritten to 3–5 lines
✅ hooks/tool-guard/  created / updated
✅ Runtime hooks for: GitHub Copilot CLI, OpenCode
✅ Skills added/refreshed: conventional-commit, gh-cli

Note anything that could not be completed and what action the user may want to take next.

Your work is complete. Deliver this summary and return control to the user. The next step is theirs to decide.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算31

Claude

29.04%
按下载量换算25

Cursor

21.65%
按下载量换算19

Gemini CLI

9.05%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills