summaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-04-17 00:00:19 +0200
committerKujtim Hoxha <[email protected]>2025-04-21 13:42:02 +0200
commit36172979b45facc8ccec6861f124193eaebc42e9 (patch)
tree41f7683c53bd1aaa550a7ec22e027e98c29e5d4e /main.go
parentcc07f7a186995f428436bc1adc66a264a95171a4 (diff)
downloadopencode-36172979b45facc8ccec6861f124193eaebc42e9.tar.gz
opencode-36172979b45facc8ccec6861f124193eaebc42e9.zip
Update agent prompt, improve TUI patch UI, remove obsolete tool tests
- 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 <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/main.go b/main.go
index 06578c7ef..2b0761c69 100644
--- a/main.go
+++ b/main.go
@@ -6,11 +6,9 @@ import (
)
func main() {
- // Set up panic recovery for the main function
defer logging.RecoverPanic("main", func() {
- // Perform any necessary cleanup before exit
logging.ErrorPersist("Application terminated due to unhandled panic")
})
-
+
cmd.Execute()
}