@@ -32,9 +32,9 @@ snapshot:
aurs:
- name: opencode
homepage: "https://github.com/opencode-ai/opencode"
- description: "Deploy anything"
+ description: "terminal based agent that can build anything"
maintainers:
- - "opencode <noreply@opencode.ai>"
+ - "kujtimiihoxha <kujtimii.h@gmail.com>"
license: "MIT"
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://aur@aur.archlinux.org/opencode-bin.git"
@@ -49,7 +49,7 @@ brews:
owner: opencode-ai
name: homebrew-tap
nfpms:
- - maintainer: opencode
+ - maintainer: kujtimiihoxha
description: terminal based agent that can build anything
formats:
- deb
@@ -15,6 +15,7 @@ import (
"github.com/kujtimiihoxha/opencode/internal/logging"
"github.com/kujtimiihoxha/opencode/internal/pubsub"
"github.com/kujtimiihoxha/opencode/internal/tui"
+ "github.com/kujtimiihoxha/opencode/internal/version"
zone "github.com/lrstanley/bubblezone"
"github.com/spf13/cobra"
)
@@ -31,6 +32,10 @@ to assist developers in writing, debugging, and understanding code directly from
cmd.Help()
return nil
}
+ if cmd.Flag("version").Changed {
+ fmt.Println(version.Version)
+ return nil
+ }
// Load the config
debug, _ := cmd.Flags().GetBool("debug")
@@ -247,6 +252,7 @@ func Execute() {
func init() {
rootCmd.Flags().BoolP("help", "h", false, "Help")
+ rootCmd.Flags().BoolP("version", "v", false, "Version")
rootCmd.Flags().BoolP("debug", "d", false, "Debug")
rootCmd.Flags().StringP("cwd", "c", "", "Current working directory")
}