Skip to content
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0a4e5df
clarify git amend condition to require verifying commit landed
altendky Mar 29, 2026
b0409d6
Merge branch 'dev' into clarify-amend-guidance
altendky Mar 30, 2026
c339826
Merge branch 'dev' into clarify-amend-guidance
altendky Mar 31, 2026
373945c
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 1, 2026
e2e6f73
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 3, 2026
d86ead6
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 6, 2026
be7284d
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 7, 2026
710c4da
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 8, 2026
717389d
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 8, 2026
1c94c6b
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 9, 2026
e6f2290
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 12, 2026
53be754
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 13, 2026
1b57812
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 16, 2026
0190d39
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 17, 2026
78efb22
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 17, 2026
7e2f887
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 18, 2026
372fd39
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 19, 2026
97f3c74
feat: update codex plugin to support 5.5 (#23789)
rekram1-node Apr 22, 2026
69e2f3b
chore: bump Bun to 1.3.13 (#23791)
Hona Apr 22, 2026
a45d9a9
fix(app): improve icon override handling in project edit dialog (#23768)
Brendonovich Apr 22, 2026
ed3d364
chore: update nix node_modules hashes
opencode-agent[bot] Apr 22, 2026
bb69648
fix: preserve BOM in text tool round-trips (#23797)
Hona Apr 22, 2026
bfb954e
chore: generate
opencode-agent[bot] Apr 22, 2026
0595c28
test: fix cross-spawn stderr race on Windows CI (#23808)
Hona Apr 22, 2026
6aa475f
chore: generate
opencode-agent[bot] Apr 22, 2026
88c5f6b
fix: consolidate project avatar source logic (#23819)
Brendonovich Apr 22, 2026
2a480a9
fix(tui): fail fast on invalid session startup (#23837)
nexxeln Apr 22, 2026
266e965
chore: generate
opencode-agent[bot] Apr 22, 2026
c3594fe
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 22, 2026
b055c9e
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 23, 2026
e567e7c
undo
altendky Apr 23, 2026
482a71b
Merge branch 'dev' into clarify-amend-guidance
altendky Apr 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/tool/bash.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Git Safety Protocol:
- NEVER skip hooks (--no-verify, --no-gpg-sign, etc) unless the user explicitly requests it
- NEVER run force push to main/master, warn the user if they request it
- Avoid git commit --amend. ONLY use --amend when ALL conditions are met:
(1) User explicitly requested amend, OR commit SUCCEEDED but pre-commit hook auto-modified files that need including
(1) User explicitly requested amend, OR the commit succeeded and pre-commit hooks auto-modified files that need including — verify by checking `git log` that HEAD is the new commit before amending
(2) HEAD commit was created by you in this conversation (verify: git log -1 --format='%an %ae')
(3) Commit has NOT been pushed to remote (verify: git status shows "Your branch is ahead")
- CRITICAL: If commit FAILED or was REJECTED by hook, NEVER amend - fix the issue and create a NEW commit
Expand Down
Loading