원클릭으로
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.