Validate and safely push code
gitsubagentsetup L2★1
lvergro/claude_code_orquesta ↗What it does
Validate and commit code after tests pass with conventional messages
Best for
Safety gates that prevent commits until preconditions (test pass, scope complete) are verified.
Inputs
- · staged changes
- · commit message intent
- · test status
Outputs
- · git commit
- · push confirmation
Requires
- · git
- · GitHub remote
Preconditions
tests passed, all planned tasks complete, git authenticated
Failure modes
- · tests not run
- · preconditions not met
- · git auth failure
- · merge conflict
Trust signals
- · validates preconditions before commit
- · uses Conventional Commits
- · aborts on failure