Go Skills for LlamaFarm CLI Shared Go best practices for LlamaFarm CLI development. These guidelines ensure idiomatic, maintainable, and secure Go code. Tech Stack - Go 1.24+ - Cobra (CLI framework) - Bubbletea (TUI framework) - Lipgloss (terminal styling) Directory Structure Quick Reference Error Handling - Always wrap errors with context: - Use sentinel errors for expected conditions: - Check errors immediately after function calls Concurrency - Use for shared state protection - Use when reads dominate writes - Use channels for goroutine communication - Always use for mutex unlocks Testing…