VCS & PR Workflow
Alongside the development loop, Accelerator provides skills for version control and team workflows around pull requests. The commit skill is VCS-agnostic (git or jujutsu); the PR skills wrap the GitHub CLI.
A change typically flows through them in order:
commit— throughout implementation. Detects the active VCS (git or jujutsu) and groups the session’s work into well-structured, atomic commits.describe-pr— generates a comprehensive PR description from the repository’s standard template (eject and edit it via/configure templates eject pr-descriptionto match your project’s conventions).review-pr— reviews the PR through the multi-lens Review System and presents a compiled analysis with inline comments.respond-to-pr— works through review feedback thread by thread, verifying and pushing fixes. Pairs withreview-pr: one surfaces the feedback, the other resolves it.

