The gitea skill documents an incorrect command for viewing PR diffs. This needs to be fixed to reflect actual tea CLI behavior.
Context
While reviewing PR #7, discovered that the documented command for getting PR diffs doesn't work as expected.
Problem / Observation
The gitea skill documents:
tea pulls <number> -f diff # PR diff
But this doesn't actually output the diff. The -f flag is --fields and even when specifying diff, the output doesn't include the actual diff content.
Workaround: Use git directly:
git diff main...origin/<branch-name>
Suggested Improvement
Either:
Find the correct tea CLI syntax for fetching diffs, or
Update documentation to recommend git diff as the approach
Document both options
Acceptance Criteria
Correct method for viewing PR diffs is documented in gitea skill
code-reviewer agent uses the correct diff method
Documentation matches actual tea CLI behavior
Affected Files
skills/gitea/SKILL.md (line 81)
agents/code-reviewer/AGENT.md (step 1)
## Summary
The gitea skill documents an incorrect command for viewing PR diffs. This needs to be fixed to reflect actual tea CLI behavior.
## Context
While reviewing PR #7, discovered that the documented command for getting PR diffs doesn't work as expected.
## Problem / Observation
The gitea skill documents:
```
tea pulls <number> -f diff # PR diff
```
But this doesn't actually output the diff. The `-f` flag is `--fields` and even when specifying diff, the output doesn't include the actual diff content.
**Workaround**: Use git directly:
```
git diff main...origin/<branch-name>
```
## Suggested Improvement
Either:
1. Find the correct tea CLI syntax for fetching diffs, or
2. Update documentation to recommend git diff as the approach
3. Document both options
## Acceptance Criteria
- [ ] Correct method for viewing PR diffs is documented in gitea skill
- [ ] code-reviewer agent uses the correct diff method
- [ ] Documentation matches actual tea CLI behavior
## Affected Files
- skills/gitea/SKILL.md (line 81)
- agents/code-reviewer/AGENT.md (step 1)
HugoNijhuis
changed title from gitea skill: tea pulls -f diff doesn't output the diff to Fix gitea skill documentation for PR diff command2026-01-01 17:48:12 +00:00
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
The gitea skill documents an incorrect command for viewing PR diffs. This needs to be fixed to reflect actual tea CLI behavior.
Context
While reviewing PR #7, discovered that the documented command for getting PR diffs doesn't work as expected.
Problem / Observation
The gitea skill documents:
But this doesn't actually output the diff. The
-fflag is--fieldsand even when specifying diff, the output doesn't include the actual diff content.Workaround: Use git directly:
Suggested Improvement
Either:
Acceptance Criteria
Affected Files
gitea skill: tea pulls -f diff doesn't output the diffto Fix gitea skill documentation for PR diff command