gitea skill: Add tea comment command documentation #6

Closed
opened 2025-12-31 15:50:59 +00:00 by HugoNijhuis · 0 comments
Owner

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:

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
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#6