diff --git a/CLAUDE.md b/CLAUDE.md index 1f491d6..d17ecac 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -50,9 +50,25 @@ git commit -m "Description of change" # Push and create PR using tea CLI git push -u origin feature/description-of-change -tea pr create --title "Description of change" --description "Details..." +tea pr create --title "Description of change" --description "$(cat <<'EOF' +## Summary +- First change +- Second change + +## Test plan +- [x] Tested thing one +- [ ] Need to test thing two + +🤖 Generated with [Claude Code](https://claude.com/claude-code) +EOF +)" ``` +Note: `tea` uses `--description` (not `--body` like `gh`). Other useful flags: +- `--base ` - target branch (default: repo's default branch) +- `--assignees ` - assign reviewers +- `--labels