Fix gitea skill documentation for PR diff command #8

Closed
opened 2025-12-31 16:00:03 +00:00 by HugoNijhuis · 0 comments
Owner

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)
## 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 command 2026-01-01 17:48:12 +00:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: flowmade-one/architecture#8