This caused a failed command that had to be retried.
Suggested Improvement
Add a tip to the gitea skill's Tips section noting the difference from gh CLI:
- **PR description flag**: Use `--description` or `-d` (NOT `--body` like gh CLI)
Affected Files
skills/gitea/SKILL.md
## Context
During /retro after completing issue #2.
## Problem / Observation
When creating PRs with `tea pulls create`, used `--body` flag (from gh CLI muscle memory) instead of the correct `--description` flag:
```bash
# Wrong (gh CLI syntax)
tea pulls create --title "..." --body "..."
# Correct (tea CLI syntax)
tea pulls create --title "..." --description "..."
```
This caused a failed command that had to be retried.
## Suggested Improvement
Add a tip to the gitea skill's Tips section noting the difference from gh CLI:
```markdown
- **PR description flag**: Use `--description` or `-d` (NOT `--body` like gh CLI)
```
## Affected Files
- skills/gitea/SKILL.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 /retro after completing issue #2.
Problem / Observation
When creating PRs with
tea pulls create, used--bodyflag (from gh CLI muscle memory) instead of the correct--descriptionflag:This caused a failed command that had to be retried.
Suggested Improvement
Add a tip to the gitea skill's Tips section noting the difference from gh CLI:
Affected Files