소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 23일 22:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill git-safe-pr-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git-safe-pr-workflow |
| description | >- Use when this capability is needed. |
Guide users through a GitHub-first PR workflow that keeps main clean without requiring
frequent local rebases. Prefer short-lived feature branches, merge origin/main into the
feature branch when syncing, and land changes with Squash and merge.
Bias toward safety over elegance. Choose reversible operations, avoid rewriting shared history, and teach the user in small steps while you work.
main and master as shared, sensitive branches.git fetch before any sync, merge, or recovery action.origin/main into a feature branch over rebasing it.git revert over rewriting history when commits may already be pushed.Squash and merge to keep main clean.Before any Git operation that changes history, branches, or remote state, inspect:
If you cannot determine whether a branch is shared, assume it is shared and choose the safer path.
Use this as the default GitHub workflow for low-experience users:
main.main, merge origin/main into the feature branch.Squash and merge.Do not teach users to routinely rebase pushed PR branches just to get the latest main.
That workflow is where many novices re-introduce old code or lose work.
When helping a user open a PR, treat the PR title as the likely final squash-merge commit.
main after Squash and merge.WIP, fix stuff, address comments, or update branch.Good default patterns:
feat: add <skill-name> skillfeat(<skill-name>): add <capability>fix(<skill-name>): correct <problem>docs: document <policy or workflow>For the PR body:
If the repo uses GitHub squash merges, prefer the PR title as the default squash commit message.
main on a feature branch? Use fetch, then merge origin/main into the
feature branch.main history? Rely on Squash and merge, not local rebasing of the feature
branch.revert.If a user asks to rebase a pushed branch, explain why that is risky and propose merging
origin/main instead.
For detailed conflict-handling steps and examples, read references/conflict-resolution.md.
reflog or rebase abort.revert.For recovery playbooks, read references/recovery.md.
main unless the user explicitly asks and the repo policy allows it.main or other protected branches.git reset --hard, git clean -fd, branch deletion, or tag deletion unless the user
clearly wants destructive cleanup.If the user explicitly wants a risky operation, explain the safer alternative first. Only proceed when the request is clear and the branch is not a protected/shared branch.
Teach in short, repeatable notes while working:
origin/main, explain that this preserves the branch's existing commits and is
easier to recover from.When asked how to support this workflow at the repo level, recommend:
mainSquash and mergeRebase and mergePull request titleFor repo policy details, read references/repo-settings.md.
Before syncing a feature branch:
mainorigin/main, do not rebase by defaultBefore pushing:
status and diffBefore undoing:
revert for pushed workSource: caidanw/skills — distributed by TomeVault.