Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g
Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern git best practices including Conventional Commits, automated testing, and structured PR creation.
[Extended thinking: This workflow coordinates multiple specialized agents to ensure code quality before commits are made. The code-reviewer agent performs initial quality checks, test-automator ensures all tests pass, and deployment-engineer verifies production readiness. By orchestrating these agents sequentially with context passing, we prevent broken code from entering the repository while maintaining high velocity. The workflow supports both trunk-based and feature-branch strategies with configurable options for different team needs.]
resources/implementation-playbook.md.Target branch: $ARGUMENTS (defaults to 'main' if not specified)
Supported flags:
--skip-tests: Skip automated test execution (use with caution)--draft-pr: Create PR as draft for work-in-progress--no-push: Perform all checks but don't push to remote--squash: Squash commits before pushing--conventional: Enforce Conventional Commits format strictly--trunk-based: Use trunk-based development workflow--feature-branch: Use feature branch workflow (default)In case of issues after merge:
git revert <commit-hash>(feature|bugfix|hotfix|docs|chore)/<ticket-id>-<brief-description>