Change module path from 'cburn' to 'github.com/theirongolddev/cburn' to enable standard Go remote installation: go install github.com/theirongolddev/cburn@latest This is a BREAKING CHANGE for any external code importing this module (though as a CLI tool, this is unlikely to affect anyone). All internal imports updated to use the new module path. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
// Package cmd implements the cburn CLI commands.
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/theirongolddev/cburn/internal/config"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var configCmd = &cobra.Command{
|
|
Use: "config",
|
|
Short: "Show current configuration",
|
|
RunE: runConfig,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configCmd)
|
|
}
|
|
|
|
func runConfig(_ *cobra.Command, _ []string) error {
|
|
cfg, err := config.Load()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf(" Config file: %s\n", config.Path())
|
|
if config.Exists() {
|
|
fmt.Println(" Status: loaded")
|
|
} else {
|
|
fmt.Println(" Status: using defaults (no config file)")
|
|
}
|
|
fmt.Println()
|
|
|
|
fmt.Println(" [General]")
|
|
fmt.Printf(" Default days: %d\n", cfg.General.DefaultDays)
|
|
fmt.Printf(" Include subagents: %v\n", cfg.General.IncludeSubagents)
|
|
if cfg.General.ClaudeDir != "" {
|
|
fmt.Printf(" Claude directory: %s\n", cfg.General.ClaudeDir)
|
|
}
|
|
fmt.Println()
|
|
|
|
fmt.Println(" [Claude.ai]")
|
|
sessionKey := config.GetSessionKey(cfg)
|
|
if sessionKey != "" {
|
|
fmt.Printf(" Session key: %s\n", maskAPIKey(sessionKey))
|
|
} else {
|
|
fmt.Println(" Session key: not configured")
|
|
}
|
|
if cfg.ClaudeAI.OrgID != "" {
|
|
fmt.Printf(" Org ID: %s\n", cfg.ClaudeAI.OrgID)
|
|
}
|
|
fmt.Println()
|
|
|
|
fmt.Println(" [Admin API]")
|
|
apiKey := config.GetAdminAPIKey(cfg)
|
|
if apiKey != "" {
|
|
fmt.Printf(" API key: %s\n", maskAPIKey(apiKey))
|
|
} else {
|
|
fmt.Println(" API key: not configured")
|
|
}
|
|
fmt.Println()
|
|
|
|
fmt.Println(" [Appearance]")
|
|
fmt.Printf(" Theme: %s\n", cfg.Appearance.Theme)
|
|
fmt.Println()
|
|
|
|
fmt.Println(" [Budget]")
|
|
if cfg.Budget.MonthlyUSD != nil {
|
|
fmt.Printf(" Monthly budget: $%.0f\n", *cfg.Budget.MonthlyUSD)
|
|
} else {
|
|
fmt.Println(" Monthly budget: not set")
|
|
}
|
|
|
|
planInfo := config.DetectPlan(flagDataDir)
|
|
fmt.Printf(" Plan ceiling: $%.0f (auto-detected)\n", planInfo.PlanCeiling)
|
|
fmt.Println()
|
|
|
|
fmt.Println(" Run `cburn setup` to reconfigure.")
|
|
return nil
|
|
}
|