.agents/skills/git-flow/SKILL.md
A structured methodology for managing version control, remotes, and pull requests within the ZTVS repository.
npx skillsauth add mosesgameli/ztvs git-flowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.tools
Create, view, and manage Pull Requests on GitHub.
tools
A skill for developing and integrating new vulnerability scanning plugins for the Zero Trust Vulnerability Scanner (ZTVS).
development
Consolidates the standards for professional, gold-standard open-source development.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.