원클릭으로
git-flow
A structured methodology for managing version control, remotes, and pull requests within the ZTVS repository.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A structured methodology for managing version control, remotes, and pull requests within the ZTVS repository.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git-flow |
| description | A structured methodology for managing version control, remotes, and pull requests within the ZTVS repository. |
This skill provides a structured methodology for managing version control, remotes, and pull requests within the Zero Trust Vulnerability Scanner (ZTVS) repository.
ZTVS standardizes on GitHub-based collaboration. The primary delivery mechanism is the Pull Request (PR).
Always create a fresh branch for new work.
feat/<name>, fix/<name>, or docs/<name>.git checkout -b feat/my-new-featureFollow the Conventional Commits rules.
/git workflow to stage and commit.git commit -m "feat(plugin): add network check"/git workflow to push to your target remote.git remote -v.ghAutomate the pull request lifecycle using the GitHub CLI once your code is pushed:
/pr workflow to create and view Pull Requests.gh pr create --base main --head <current-branch> --title "feat: my change" --body "Detailed description"Depends on RFC-001.git checkout maingit pull <remote> maingit checkout feat/my-feature && git rebase maingit commit -s for Developer Certificate of Origin.main history linear and clean.Consolidates the standards for professional, gold-standard open-source development.
A skill for developing and integrating new vulnerability scanning plugins for the Zero Trust Vulnerability Scanner (ZTVS).
Create, view, and manage Pull Requests on GitHub.