docs(polecat): remove push instructions for local-only branches (gt-cqw0n)

Phase 3 of heresy correction: polecat branches stay local, Refinery
accesses them via shared .repo.git.

Changes:
- templates/polecat-CLAUDE.md: Remove push from completion checklist
- mol-polecat-work.formula.toml: Remove push step from cleanup-workspace
- polecat.md.tmpl: Update landing rule for local branches
- refinery.md.tmpl: Change origin/polecat to local branch references

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gastown/crew/max
2026-01-06 13:11:39 -08:00
committed by Steve Yegge
parent 63af29284b
commit ac4649ba7d
4 changed files with 17 additions and 26 deletions

View File

@@ -226,14 +226,14 @@ and submits your branch to the merge queue. The Witness handles the rest.
> **Work is NOT landed until it's on `main` OR in the Refinery MQ.**
Your branch sitting on origin is NOT landed. You must run `gt done` to submit it
to the merge queue. Without this step:
Your local branch is NOT landed. You must run `gt done` to submit it to the
merge queue. Without this step:
- Your work is invisible to other agents
- The branch will go stale as main diverges
- Merge conflicts will compound over time
- Work can be lost if your polecat is recycled
**Branch → `gt done` → MR in queue → Refinery merges → LANDED**
**Local branch → `gt done` → MR in queue → Refinery merges → LANDED**
## If You're Stuck

View File

@@ -225,7 +225,7 @@ If queue empty, skip to context-check step.
**process-branch**: Pick next branch, rebase on main
```bash
git checkout -b temp origin/polecat/<worker>
git checkout -b temp polecat/<worker> # Local branch (shared via .repo.git)
git rebase origin/{{ .DefaultBranch }}
```
If conflicts unresolvable: notify polecat, skip to loop-check.
@@ -255,7 +255,7 @@ git checkout {{ .DefaultBranch }}
git merge --ff-only temp
git push origin {{ .DefaultBranch }}
git branch -d temp
git push origin --delete polecat/<worker>
git branch -d polecat/<worker> # Delete local polecat branch
```
**loop-check**: More branches? Return to process-branch.