## Summary
- Updated gitea skill to remove incorrect `tea pulls <number> -f diff` command
- Documented correct method: `tea pulls checkout` + `git diff main...HEAD`
- Updated code-reviewer agent to use the correct diff method
The tea CLI's `-f diff` flag only returns a URL to the diff, not the actual diff content. There's no tea command to output diff content directly.
## Test plan
- [ ] Verify documentation is accurate
- [ ] Run code-reviewer agent to confirm it uses the correct commands
Closes #8
🤖 Generated with [Claude Code](https://claude.com/claude-code)
The tea CLI doesn't have a command to output PR diff content directly.
The -f diff flag only returns a URL. Updated docs to use tea pulls
checkout followed by git diff main...HEAD.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This is an automated review generated by the code-reviewer agent.
Summary
Documentation fix correctly replaces the non-functional tea pulls -f diff command with the proper two-step approach using tea pulls checkout + git diff. The changes are accurate and improve both the gitea skill documentation and code-reviewer agent instructions.
The comment explaining why tea doesn't have a direct diff command adds valuable context
Potential Bugs
No issues found - the documented commands are correct and functional
Security Concerns
No security concerns identified
Style Notes
Consistent with codebase documentation style
Good use of inline comments to explain the limitation
Test Coverage
The PR description includes a test plan to verify the documentation and agent behavior
Consider manually testing the code-reviewer agent with this PR to validate the new approach works
Verdict
LGTM
This is a straightforward documentation fix that addresses a real issue (the -f diff flag returns a URL, not content). The corrected approach using checkout + git diff is the proper method for retrieving PR diffs with tea CLI. Ready to merge once the test plan checklist is completed.
## AI Code Review
> This is an automated review generated by the code-reviewer agent.
### Summary
Documentation fix correctly replaces the non-functional `tea pulls -f diff` command with the proper two-step approach using `tea pulls checkout` + `git diff`. The changes are accurate and improve both the gitea skill documentation and code-reviewer agent instructions.
### Findings
#### Code Quality
- Changes are well-structured and clear
- Documentation follows existing formatting conventions
- The comment explaining why tea doesn't have a direct diff command adds valuable context
#### Potential Bugs
- No issues found - the documented commands are correct and functional
#### Security Concerns
- No security concerns identified
#### Style Notes
- Consistent with codebase documentation style
- Good use of inline comments to explain the limitation
#### Test Coverage
- The PR description includes a test plan to verify the documentation and agent behavior
- Consider manually testing the code-reviewer agent with this PR to validate the new approach works
### Verdict
**LGTM**
This is a straightforward documentation fix that addresses a real issue (the -f diff flag returns a URL, not content). The corrected approach using checkout + git diff is the proper method for retrieving PR diffs with tea CLI. Ready to merge once the test plan checklist is completed.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Summary
tea pulls <number> -f diffcommandtea pulls checkout+git diff main...HEADThe tea CLI's
-f diffflag only returns a URL to the diff, not the actual diff content. There's no tea command to output diff content directly.Test plan
Closes #8
🤖 Generated with Claude Code
AI Code Review
Summary
Documentation fix correctly replaces the non-functional
tea pulls -f diffcommand with the proper two-step approach usingtea pulls checkout+git diff. The changes are accurate and improve both the gitea skill documentation and code-reviewer agent instructions.Findings
Code Quality
Potential Bugs
Security Concerns
Style Notes
Test Coverage
Verdict
LGTM
This is a straightforward documentation fix that addresses a real issue (the -f diff flag returns a URL, not content). The corrected approach using checkout + git diff is the proper method for retrieving PR diffs with tea CLI. Ready to merge once the test plan checklist is completed.