mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
Three private tiles published to the codeflash workspace: - codeflash-internal-rules: 6 eager rules (code-style, architecture, optimization-patterns, git-conventions, testing-rules, multi-language-handlers) - codeflash-internal-docs: 8 lazy doc pages (domain-types, optimization-pipeline, test-generation-pipeline, context-extraction, aiservice/cf-api endpoints, configuration-thresholds, llm-provider-abstraction) - codeflash-internal-skills: 4 on-demand skills (debug-optimization-failure, add-language-support, add-api-endpoint, debug-test-generation)
567 B
567 B
Git Conventions
- Always create a new branch from
main— never commit directly tomain - 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 - Pre-commit:
uv run prek run --all-filesfrom repo root