Fix GitHub Issue
Implement GitHub issue #$ARGUMENTS using Test-Driven Development.
Steps
- •
Get issue details
bashgh issue view $ARGUMENTS
- •
Create feature branch
bashgit checkout -b feature/$ARGUMENTS
- •
Write tests first (TDD)
- •Create test file in
tests/ - •Define expected inputs and outputs
- •Run tests to confirm they fail:
bash
uv run pytest tests/ -v
- •Create test file in
- •
Implement the fix
- •Write code to pass the tests
- •Keep iterating until all tests pass
- •Do NOT modify the tests
- •
Update documentation
- •Update README.md if functionality changed
- •Prepend session summary to agent_logs/LOG.md
- •
Commit and create PR
bashgit add -A git commit -m "feat: implement issue #$ARGUMENTS" gh pr create --fill