Add tea comment command documentation

- Add Comments section to gitea skill with examples
- Update code-reviewer agent with explicit tea CLI commands
  for posting comments, approving, and merging PRs

Closes #6

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit was merged in pull request #7.
This commit is contained in:
2025-12-31 16:53:49 +01:00
parent 8b298e3564
commit 527df936cb
2 changed files with 19 additions and 3 deletions

View File

@@ -112,6 +112,22 @@ tea repos <owner>/<repo> # Repository info
tea clone <owner>/<repo> # Clone repository
```
### Comments
```bash
# Add comment to issue or PR
tea comment <number> "<comment body>"
tea comment 3 "LGTM, ready to merge"
# Multiline comments (use heredoc)
tea comment 3 "$(cat <<'EOF'
## Review Summary
- Code looks good
- Tests pass
EOF
)"
```
### Notifications
```bash