mirror of
https://github.com/mark3labs/kit.git
synced 2026-06-13 19:20:06 +00:00
78570d4188
Removes ~600 lines of unreferenced code surfaced by deadcode + manual
audit (none of it reachable from production code paths or test setup):
- internal/models/pool.go: ProviderPool was never wired into kitsetup
or the agent; the global pool singleton had zero callers.
- internal/ui/debug_logger.go: CLIDebugLogger was unreachable; debug
routing goes through internal/tools/buffered_logger.go instead.
- internal/ui/tool_approval_input.go: tea.Model never instantiated;
approvals are handled inline in model.go.
- internal/ui/cli.go: DisplayAssistantMessage / DisplayCancellation /
GetDebugLogger had zero callers (the *WithModel variant is what
event_handler.go uses).
- internal/ui/style/enhanced.go: Style{Card,Header,Subheader,Muted,
Success,Error,Warning,Info} + Create{Separator,ProgressBar} — none
used. CreateBadge stays (used by model.go).
- internal/ui/style/themes.go: RefreshThemeRegistry — never called.
- internal/ui/block_renderer.go: With{FullWidth,MarginTop,Padding{Left,
Right},Background,Foreground,Width} — option helpers nobody calls.
- internal/ui/render/blocks.go: UserBlock, ToolBlock — replaced by
inline rendering elsewhere; the test for UserBlock was rewritten to
directly exercise HighlightFileTokens (which is what the test really
cared about).
- internal/ui/commands/commands.go: GetAllCommandNames — no callers.
- internal/ui/message_items.go: NewTextMessageItem,
NewSystemMessageItem + the entire SystemMessageItem type — model.go
uses NewStyledMessageItem instead.
- internal/prompts/loader.go: Deduplicate — the loader does dedup
internally; standalone helper was unused.
- internal/models/cache_options.go: mergeProviderOptions + its
test-only consumer.
- internal/extensions/installer.go: Installer.GetInstalledPackages —
intended for a 'kit ext list' command that was never built.
- internal/extensions/manifest.go: saveManifestToScope,
saveManifestToPath, GetGlobalManifest, GetProjectManifest,
addEntryToManifest, removeEntryFromManifest — package-level
duplicates of *Installer methods. Tests rewritten to exercise the
live Installer methods instead, which fixes a latent path-resolution
inconsistency between manifestPathForScope and Installer.manifestPath
(the former hard-coded paths, the latter respects projectGitRoot).
- internal/extensions/subagent.go: SpawnSubagent + helpers
(generateSubagentID, findKitBinary, subagentJSONOutput). The
subprocess-spawn implementation is unreachable; production code
routes through kit.Kit.Subagent (in-process). Types
(SubagentConfig/Result/Handle/etc.) and the SubagentHandle methods
remain because they are exposed to extensions via Yaegi symbols and
the Context.SpawnSubagent field.
- cmd/root.go: LoadConfigWithEnvSubstitution — one-line wrapper around
kit.LoadConfigWithEnvSubstitution with zero callers.
go test -race ./... passes.
194 lines
6.3 KiB
Go
194 lines
6.3 KiB
Go
package ui
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"charm.land/lipgloss/v2"
|
|
"golang.org/x/term"
|
|
|
|
"github.com/mark3labs/kit/internal/ui/style"
|
|
)
|
|
|
|
// CLI manages the command-line interface for KIT, providing message rendering,
|
|
// user input handling, and display management. It handles streaming responses,
|
|
// tracks token usage, and manages the overall conversation flow between the
|
|
// user and AI assistants.
|
|
type CLI struct {
|
|
renderer Renderer
|
|
usageTracker *UsageTracker
|
|
width int
|
|
debug bool
|
|
modelName string
|
|
}
|
|
|
|
// NewCLI creates and initializes a new CLI instance. The debug parameter enables
|
|
// debug message rendering. Returns an initialized CLI ready for interaction or an
|
|
// error if initialization fails.
|
|
func NewCLI(debug bool) (*CLI, error) {
|
|
cli := &CLI{
|
|
debug: debug,
|
|
}
|
|
cli.updateSize()
|
|
cli.renderer = newMessageRenderer(cli.width, debug)
|
|
|
|
return cli, nil
|
|
}
|
|
|
|
// SetUsageTracker attaches a usage tracker to the CLI for monitoring token
|
|
// consumption and costs. The tracker will be automatically updated with the
|
|
// current display width for proper rendering.
|
|
func (c *CLI) SetUsageTracker(tracker *UsageTracker) {
|
|
c.usageTracker = tracker
|
|
if c.usageTracker != nil {
|
|
c.usageTracker.SetWidth(c.width)
|
|
}
|
|
}
|
|
|
|
// GetUsageTracker returns the usage tracker attached to this CLI, or nil if no
|
|
// tracker has been configured. Callers that need a usage-tracker-agnostic handle
|
|
// can assign the returned *UsageTracker wherever an app.UsageUpdater is expected —
|
|
// *UsageTracker satisfies that interface.
|
|
func (c *CLI) GetUsageTracker() *UsageTracker {
|
|
return c.usageTracker
|
|
}
|
|
|
|
// SetModelName updates the current AI model name being used in the conversation.
|
|
// This name is displayed in message headers to indicate which model is responding.
|
|
func (c *CLI) SetModelName(modelName string) {
|
|
c.modelName = modelName
|
|
}
|
|
|
|
// ShowSpinner displays an animated spinner while executing the provided action
|
|
// function. The spinner automatically stops when the action completes. Returns
|
|
// any error returned by the action function.
|
|
func (c *CLI) ShowSpinner(action func() error) error {
|
|
spinner := NewSpinner()
|
|
spinner.Start()
|
|
|
|
err := action()
|
|
|
|
spinner.Stop()
|
|
|
|
return err
|
|
}
|
|
|
|
// DisplayUserMessage renders and displays a user's message with appropriate
|
|
// formatting based on the current display mode (standard or compact). The message
|
|
// is timestamped and styled according to the active theme.
|
|
func (c *CLI) DisplayUserMessage(message string) {
|
|
fmt.Println(c.renderer.RenderUserMessage(message, time.Now()).Content)
|
|
}
|
|
|
|
// DisplayAssistantMessageWithModel renders and displays an AI assistant's response
|
|
// with the specified model name shown in the message header. The message is
|
|
// formatted according to the current display mode and includes timestamp information.
|
|
func (c *CLI) DisplayAssistantMessageWithModel(message, modelName string) error {
|
|
fmt.Println(c.renderer.RenderAssistantMessage(message, time.Now(), modelName).Content)
|
|
return nil
|
|
}
|
|
|
|
// DisplayToolMessage renders and displays the complete result of a tool execution,
|
|
// including the tool name, arguments, and result. The isError parameter determines
|
|
// whether the result should be displayed as an error or success message.
|
|
func (c *CLI) DisplayToolMessage(toolName, toolArgs, toolResult string, isError bool) {
|
|
fmt.Println(c.renderer.RenderToolMessage(toolName, toolArgs, toolResult, isError).Content)
|
|
}
|
|
|
|
// DisplayError renders and displays an error message with distinctive formatting
|
|
// to ensure visibility. The error is timestamped and styled according to the
|
|
// current display mode's error theme.
|
|
func (c *CLI) DisplayError(err error) {
|
|
fmt.Println(c.renderer.RenderErrorMessage(err.Error(), time.Now()).Content)
|
|
}
|
|
|
|
// DisplayInfo renders and displays an informational system message. These messages
|
|
// are typically used for status updates, notifications, or other non-error system
|
|
// communications to the user.
|
|
func (c *CLI) DisplayInfo(message string) {
|
|
fmt.Println(c.renderer.RenderSystemMessage(message, time.Now()).Content)
|
|
}
|
|
|
|
// DisplayExtensionBlock renders a custom styled block with the given border
|
|
// color and optional subtitle. Used by extensions via ctx.PrintBlock.
|
|
func (c *CLI) DisplayExtensionBlock(text, borderColor, subtitle string) {
|
|
theme := style.GetTheme()
|
|
|
|
borderClr := theme.Info
|
|
if borderColor != "" {
|
|
borderClr = lipgloss.Color(borderColor)
|
|
}
|
|
|
|
content := text
|
|
if subtitle != "" {
|
|
sub := lipgloss.NewStyle().Foreground(theme.VeryMuted).Render(" " + subtitle)
|
|
content = content + "\n" + sub
|
|
}
|
|
|
|
rendered := renderContentBlock(
|
|
content,
|
|
c.width,
|
|
WithAlign(lipgloss.Left),
|
|
WithBorderColor(borderClr),
|
|
WithMarginBottom(1),
|
|
)
|
|
fmt.Println(rendered)
|
|
}
|
|
|
|
// DisplayDebugMessage renders and displays a debug message if debug mode is enabled.
|
|
// Debug messages are formatted distinctively and only shown when the CLI is
|
|
// initialized with debug=true.
|
|
func (c *CLI) DisplayDebugMessage(message string) {
|
|
if !c.debug {
|
|
return
|
|
}
|
|
fmt.Println(c.renderer.RenderDebugMessage(message, time.Now()).Content)
|
|
}
|
|
|
|
// DisplayDebugConfig renders and displays configuration settings in a formatted
|
|
// debug message. The config parameter should contain key-value pairs representing
|
|
// configuration options that will be displayed for debugging purposes.
|
|
func (c *CLI) DisplayDebugConfig(config map[string]any) {
|
|
fmt.Println(c.renderer.RenderDebugConfigMessage(config, time.Now()).Content)
|
|
}
|
|
|
|
// DisplayUsageAfterResponse renders and displays token usage information immediately
|
|
// following an AI response. This provides real-time feedback about the cost and
|
|
// token consumption of each interaction.
|
|
func (c *CLI) DisplayUsageAfterResponse() {
|
|
if c.usageTracker == nil {
|
|
return
|
|
}
|
|
|
|
usageInfo := c.usageTracker.RenderUsageInfo()
|
|
if usageInfo != "" {
|
|
paddedUsage := lipgloss.NewStyle().
|
|
PaddingLeft(2).
|
|
PaddingTop(1).
|
|
Render(usageInfo)
|
|
fmt.Println(paddedUsage)
|
|
}
|
|
}
|
|
|
|
// updateSize updates the CLI size based on terminal dimensions
|
|
func (c *CLI) updateSize() {
|
|
width, _, err := term.GetSize(int(os.Stdout.Fd()))
|
|
if err != nil {
|
|
c.width = 80 // Fallback width
|
|
return
|
|
}
|
|
|
|
// Add left and right padding (4 characters total: 2 on each side)
|
|
paddingTotal := 4
|
|
c.width = width - paddingTotal
|
|
|
|
// Update renderer if it exists
|
|
if c.renderer != nil {
|
|
c.renderer.SetWidth(c.width)
|
|
}
|
|
if c.usageTracker != nil {
|
|
c.usageTracker.SetWidth(c.width)
|
|
}
|
|
}
|