docs: add tea CLI flags to PR management section

Added --title and --description flags to tea pr create command
documentation to clarify correct syntax and prevent errors.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-10 17:43:50 -05:00
parent 4db0cf7954
commit bfe5bacff4

View File

@@ -1,8 +1,12 @@
# Guide To `lambda`
Absolutely NO advertisement of Claude.
## Documentation Style
## Coding Styles
Use full sentences.
Every sentence gets its own line in Markdown.
Every sentence ends in a period.
## Coding Style
### Conventional Commits
@@ -16,6 +20,8 @@ Use conventional commit format: `<type>: <description>`.
- `fix: correct variable renaming in nested abstractions`
- `docs: update Makefile documentation`
DO NOT advertise Claude.
### Branch Names
Use format: `<type>/<description>` with kebab-case.
@@ -29,16 +35,20 @@ Use format: `<type>/<description>` with kebab-case.
- `docs/makefile-improvements`
- `refactor/silent-directive`
DO NOT advertise Claude.
## Pull Request Management
Use the `tea` CLI (Gitea command-line tool) for PR operations instead of `gh`.
**Common commands**:
- `tea pr create` - Create a new pull request.
- `tea pr create --title "<title>" --description "<body>"` - Create a new pull request.
- `tea pr list` - List pull requests.
- `tea pr checkout <number>` - Check out a PR locally.
- `tea pr close <number>` - Close a pull request.
- `tea pr merge <number>` - Merge a pull request.
**Note**: Use `--description` (not `--body`) for PR body content.
**Creating PRs**: Always create PRs in a branch other than `main`, to the `main` branch unless specified otherwise.