بنقرة واحدة
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 المهني
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.
| 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.