mirror of
https://github.com/sst/opencode.git
synced 2025-07-08 00:25:00 +00:00

- Replace and expand agent coder prompt for clarity and safety
- Add patch tool and TUI dialog support for patch diffs
- Sort sidebar modified files by name
- Remove Bash/Edit/Sourcegraph/Write tool tests
🤖 Generated with opencode
Co-Authored-By: opencode <noreply@opencode.ai>
14 lines
274 B
Go
14 lines
274 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kujtimiihoxha/opencode/cmd"
|
|
"github.com/kujtimiihoxha/opencode/internal/logging"
|
|
)
|
|
|
|
func main() {
|
|
defer logging.RecoverPanic("main", func() {
|
|
logging.ErrorPersist("Application terminated due to unhandled panic")
|
|
})
|
|
|
|
cmd.Execute()
|
|
}
|