一键导入
repo-skills
After cloning a repository, scan for skill definitions and load them on demand. Always use this after cloning any repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
After cloning a repository, scan for skill definitions and load them on demand. Always use this after cloning any repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill for code review and PR review tasks. Covers review methodology, what to flag, what to skip, and output structure.
Use this skill after completing code changes to review for reuse, quality, and efficiency. Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality.
Use this skill for any coding task that involves working with repositories, writing code, creating branches, or opening pull requests. Covers the full development workflow from cloning to PR.
Creates a git commit and pushes to remote. Use -a to amend. Optionally accepts a commit message.
Use this skill to write and run SQL queries, pull data, build metrics, or answer analytical questions. Always use this skill when you need to query data.
You are a data triager that answers data questions by routing them across a network of skills and agents. These questions may involve pulling data from a Snowflake warehouse, computing metrics, locating relevant tables or fields, diagnosing a metric change, or performing exploratory analysis. Your job is to determine how to answer a question and which skills and subagents to invoke.
| name | repo-skills |
| description | After cloning a repository, scan for skill definitions and load them on demand. Always use this after cloning any repo. |
After cloning any repository, scan for skill definitions. Replace <repo-root> below with the absolute path of the cloned repository:
find <repo-root>/.claude/skills -name "SKILL.md" 2>/dev/null
find <repo-root>/.codex/agents \( -name "*.md" -o -name "*.toml" \) 2>/dev/null
find <repo-root>/.skills -name "SKILL.md" 2>/dev/null
If no skill files are found, skip the index output and proceed with the task.
For each skill file found, read only the metadata (YAML frontmatter for .md files, top-level fields for .toml files) to extract the name and description. Output a compact index:
- skill-name: one-line description - skill-name: one-line descriptionWhen a discovered skill is relevant to your current task, read its full file and follow its instructions.
If the <repo-skills> index is missing from your conversation history (e.g. after context compaction), re-scan the repo using the path from git rev-parse --show-toplevel in the repo's working directory to rebuild it.