codeflash/tiles/codeflash-rules/rules/git-conventions.md
Kevin Turcios 6718e66582 feat: add private tessl tiles for codeflash rules, docs, and skills
Three private tiles in the codeflash workspace:
- codeflash-rules: 6 steering rules (code-style, architecture, optimization-patterns, git-conventions, testing-rules, language-rules)
- codeflash-docs: 7 doc pages (domain-types, optimization-pipeline, context-extraction, verification, ai-service, configuration)
- codeflash-skills: 2 skills (debug-optimization-failure, add-codeflash-feature)
2026-02-14 20:55:06 -05:00

566 B

Git Conventions

  • Always create a new branch from main — never commit directly to main or reuse an existing feature branch for unrelated changes
  • Use conventional commit format: fix:, feat:, refactor:, docs:, test:, chore:
  • Keep commits atomic — one logical change per commit
  • Commit message body should be concise (1-2 sentences max)
  • PR titles should also use conventional format
  • Branch naming: cf-#-title (lowercase, hyphenated) where # is the Linear issue number
  • If related to a Linear issue, include CF-# in the PR body