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)
566 B
566 B
Git Conventions
- Always create a new branch from
main— never commit directly tomainor 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