Add CLAUDE.md with conventions for commits, branch naming, and PR management using tea CLI. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1.1 KiB
1.1 KiB
Guide To lambda
Coding Styles
Conventional Commits
Use conventional commit format: <type>: <description>.
Types: feat, fix, docs, refactor, test, chore, perf
Examples:
feat: add explanation mode flag to CLIfix: correct variable renaming in nested abstractionsdocs: update Makefile documentation
Branch Names
Use format: <type>/<description> with kebab-case.
Types: Same as commits: feat, fix, docs, refactor, test, chore, perf
Examples:
feat/explanation-modefix/variable-renamingdocs/makefile-improvementsrefactor/silent-directive
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 requesttea pr list- List pull requeststea pr checkout <number>- Check out a PR locallytea pr close <number>- Close a pull requesttea pr merge <number>- Merge a pull request
Creating PRs: Always create PRs to the main branch unless specified otherwise