[PR #557] [CLOSED] Main #9648

Closed
opened 2026-02-16 18:13:55 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/anomalyco/opencode/pull/557
Author: @pjsvis
Created: 6/30/2025
Status: Closed

Base: devHead: main


📝 Commits (10+)

  • 82de143 feat: themes (#113)
  • 58705a1 fix: more intuitive keybinds (#121)
  • 004cfe7 feat: test for getContextFromPaths (#105)
  • e14de7a fix: tweak the logic in config to ensure that env vs file configurations merge properly (#115)
  • 603a3e3 add xai support (#135)
  • 9fec8df add support for images (#144)
  • 88711db Config fix correcting loose viper string check, default model now set correctly (#147)
  • cd04c44 replace github.com/google/generative-ai-go with github.com/googleapis/go-genai (#138)
  • a58e607 feat: custom commands (#133)
  • 5307100 small fix

📊 Changes

98 files changed (+9251 additions, -2892 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .goreleaser.yml (+2 -2)
📝 README.md (+214 -11)
📝 cmd/root.go (+57 -5)
📝 cmd/schema/main.go (+24 -0)
📝 go.mod (+9 -18)
📝 go.sum (+17 -30)
📝 internal/app/app.go (+86 -0)
internal/completions/files-folders.go (+191 -0)
📝 internal/config/config.go (+185 -21)
📝 internal/db/db.go (+1 -1)
📝 internal/db/files.sql.go (+1 -1)
📝 internal/db/messages.sql.go (+1 -1)
internal/db/migrations/20250515105448_add_summary_message_id.sql (+9 -0)
📝 internal/db/models.go (+2 -1)
📝 internal/db/querier.go (+1 -1)
📝 internal/db/sessions.sql.go (+19 -10)
📝 internal/db/sql/sessions.sql (+3 -0)
📝 internal/diff/diff.go (+224 -308)
internal/fileutil/fileutil.go (+163 -0)

...and 78 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/anomalyco/opencode/pull/557 **Author:** [@pjsvis](https://github.com/pjsvis) **Created:** 6/30/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `main` --- ### 📝 Commits (10+) - [`82de143`](https://github.com/anomalyco/opencode/commit/82de14371d45bf672686ca5d340c4567a56c2364) feat: themes (#113) - [`58705a1`](https://github.com/anomalyco/opencode/commit/58705a13522538ac65d2e918a51c97ee2a7f90eb) fix: more intuitive keybinds (#121) - [`004cfe7`](https://github.com/anomalyco/opencode/commit/004cfe7e8e2a2dbff88dc9a5c36eb54d04e24dc2) feat: test for getContextFromPaths (#105) - [`e14de7a`](https://github.com/anomalyco/opencode/commit/e14de7a2111170e782d2c61f872b5db26667cb0d) fix: tweak the logic in config to ensure that env vs file configurations merge properly (#115) - [`603a3e3`](https://github.com/anomalyco/opencode/commit/603a3e3c71de8d71cfc2ea308be2fe342bb6d25c) add xai support (#135) - [`9fec8df`](https://github.com/anomalyco/opencode/commit/9fec8df7d0090ab8ca7bcf0340a1b31fc764fb17) add support for images (#144) - [`88711db`](https://github.com/anomalyco/opencode/commit/88711db7961c9a6c13ad7f70f669ee895ea55af9) Config fix correcting loose viper string check, default model now set correctly (#147) - [`cd04c44`](https://github.com/anomalyco/opencode/commit/cd04c445174fa5727d77c419325ab4e251d4677c) replace `github.com/google/generative-ai-go` with `github.com/googleapis/go-genai` (#138) - [`a58e607`](https://github.com/anomalyco/opencode/commit/a58e607c5f6dddad1da49a2d23f75e884755c328) feat: custom commands (#133) - [`5307100`](https://github.com/anomalyco/opencode/commit/5307100f897784ecc8e6a905af8c131d8cba822d) small fix ### 📊 Changes **98 files changed** (+9251 additions, -2892 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.goreleaser.yml` (+2 -2) 📝 `README.md` (+214 -11) 📝 `cmd/root.go` (+57 -5) 📝 `cmd/schema/main.go` (+24 -0) 📝 `go.mod` (+9 -18) 📝 `go.sum` (+17 -30) 📝 `internal/app/app.go` (+86 -0) ➕ `internal/completions/files-folders.go` (+191 -0) 📝 `internal/config/config.go` (+185 -21) 📝 `internal/db/db.go` (+1 -1) 📝 `internal/db/files.sql.go` (+1 -1) 📝 `internal/db/messages.sql.go` (+1 -1) ➕ `internal/db/migrations/20250515105448_add_summary_message_id.sql` (+9 -0) 📝 `internal/db/models.go` (+2 -1) 📝 `internal/db/querier.go` (+1 -1) 📝 `internal/db/sessions.sql.go` (+19 -10) 📝 `internal/db/sql/sessions.sql` (+3 -0) 📝 `internal/diff/diff.go` (+224 -308) ➕ `internal/fileutil/fileutil.go` (+163 -0) _...and 78 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 18:13:55 -05:00
yindo closed this issue 2026-02-16 18:13:55 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: anomalyco/opencode#9648