Files
ctask/cmd/root.go
T
typebasedio 8130a689d4 chore(v0.5): bump version to 0.5.0
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 19:53:45 -04:00

25 lines
514 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
var version = "0.5.0"
var rootCmd = &cobra.Command{
Use: "ctask",
Short: "Create and manage AI-agent task workspaces",
Long: "ctask is a local CLI that creates and manages named AI-agent task workspaces so developers can start, resume, and organize work more safely and predictably.",
}
func Execute() error {
return rootCmd.Execute()
}
func init() {
rootCmd.Version = version
rootCmd.SetVersionTemplate(fmt.Sprintf("ctask v%s\n", version))
}