mirror of
https://github.com/EveryInc/compound-engineering-plugin.git
synced 2026-06-19 15:41:46 +02:00
640f39a678
Address PR review feedback (#683): The default-branch detection compared the current branch name against the raw output of `git rev-parse --abbrev-ref origin/HEAD`, which returns `origin/<name>` (e.g., `origin/develop`). The local branch name is `develop`, so the comparison never matches on repos whose default branch is anything other than literal `main` or `master` — defeating the safety check on `develop`-default repos. Make the prefix-stripping explicit in the skill text so the agent normalizes before comparing, matching what ce-commit's Step 1 already does.