diff --git a/.gitignore b/.gitignore index 15638010..59309248 100644 --- a/.gitignore +++ b/.gitignore @@ -24,7 +24,6 @@ server/bin/ server/tmp/ server/migrate server/daemon -server/multica-cli server/multica # Test artifacts diff --git a/.goreleaser.yml b/.goreleaser.yml index d53a22bc..abb885ec 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,16 +1,16 @@ version: 2 -project_name: multica-cli +project_name: multica before: hooks: - cd server && go mod tidy builds: - - id: multica-cli + - id: multica main: ./cmd/multica dir: server - binary: multica-cli + binary: multica ldflags: - -s -w - -X main.version={{.Version}} @@ -42,7 +42,7 @@ changelog: - "^chore:" brews: - - name: multica-cli + - name: multica repository: owner: multica-ai name: homebrew-tap @@ -53,6 +53,6 @@ brews: description: "Multica CLI — local agent runtime and management tool for the Multica platform" license: "MIT" install: | - bin.install "multica-cli" + bin.install "multica" test: | - system "#{bin}/multica-cli", "version" + system "#{bin}/multica", "version" diff --git a/Makefile b/Makefile index 07d3213b..811c8637 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) build: cd server && go build -o bin/server ./cmd/server - cd server && go build -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT)" -o bin/multica-cli ./cmd/multica + cd server && go build -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT)" -o bin/multica ./cmd/multica test: $(REQUIRE_ENV) diff --git a/server/cmd/multica/cmd_agent.go b/server/cmd/multica/cmd_agent.go index 670c8c11..64cf6b04 100644 --- a/server/cmd/multica/cmd_agent.go +++ b/server/cmd/multica/cmd_agent.go @@ -59,7 +59,7 @@ func newAPIClient(cmd *cobra.Command) (*cli.APIClient, error) { workspaceID := resolveWorkspaceID(cmd) if serverURL == "" { - return nil, fmt.Errorf("server URL not set: use --server-url flag, MULTICA_SERVER_URL env, or 'multica-cli config set server_url '") + return nil, fmt.Errorf("server URL not set: use --server-url flag, MULTICA_SERVER_URL env, or 'multica config set server_url '") } return cli.NewAPIClient(serverURL, workspaceID), nil diff --git a/server/cmd/multica/cmd_version.go b/server/cmd/multica/cmd_version.go index 99c7fb7a..da557872 100644 --- a/server/cmd/multica/cmd_version.go +++ b/server/cmd/multica/cmd_version.go @@ -10,6 +10,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print version information", Run: func(_ *cobra.Command, _ []string) { - fmt.Printf("multica-cli %s (commit: %s)\n", version, commit) + fmt.Printf("multica %s (commit: %s)\n", version, commit) }, } diff --git a/server/cmd/multica/main.go b/server/cmd/multica/main.go index 1b06c9e8..98aef2b5 100644 --- a/server/cmd/multica/main.go +++ b/server/cmd/multica/main.go @@ -12,9 +12,9 @@ var ( ) var rootCmd = &cobra.Command{ - Use: "multica-cli", + Use: "multica", Short: "Multica CLI — local agent runtime and management tool", - Long: "multica-cli manages local agent runtimes and provides control commands for the Multica platform.", + Long: "multica manages local agent runtimes and provides control commands for the Multica platform.", SilenceUsage: true, SilenceErrors: true, }