During code review of PR #3, the code-reviewer agent tried to use tea pulls review --comment which doesn't exist.
Problem / Observation
The gitea skill documents tea pulls review as "Interactive review" but doesn't document how to programmatically add comments to issues/PRs.
The correct command is:
tea comment <issue/pr number> "<comment body>"
The agent incorrectly tried:
tea pulls review 3 --comment "..."# Wrong - no --comment flag exists
Suggested Improvement
Add a "Comments" section to the gitea skill:
### Comments
```bash
# Add comment to issue or PR
tea comment <number> "<comment body>"
tea comment 3 "LGTM, ready to merge"
Also update the agents/code-reviewer/AGENT.md to use the correct command.
## Affected Files
- skills/gitea/SKILL.md
- agents/code-reviewer/AGENT.md
## Context
During code review of PR #3, the code-reviewer agent tried to use `tea pulls review --comment` which doesn't exist.
## Problem / Observation
The gitea skill documents `tea pulls review` as "Interactive review" but doesn't document how to programmatically add comments to issues/PRs.
The correct command is:
```bash
tea comment <issue/pr number> "<comment body>"
```
The agent incorrectly tried:
```bash
tea pulls review 3 --comment "..." # Wrong - no --comment flag exists
```
## Suggested Improvement
Add a "Comments" section to the gitea skill:
```markdown
### Comments
```bash
# Add comment to issue or PR
tea comment <number> "<comment body>"
tea comment 3 "LGTM, ready to merge"
```
```
Also update the agents/code-reviewer/AGENT.md to use the correct command.
## Affected Files
- skills/gitea/SKILL.md
- agents/code-reviewer/AGENT.md
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.
Context
During code review of PR #3, the code-reviewer agent tried to use
tea pulls review --commentwhich doesn't exist.Problem / Observation
The gitea skill documents
tea pulls reviewas "Interactive review" but doesn't document how to programmatically add comments to issues/PRs.The correct command is:
The agent incorrectly tried:
Suggested Improvement
Add a "Comments" section to the gitea skill: