一键导入
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 页面并帮你完成安装。
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.
基于 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.