mirror of
https://github.com/Dvorinka/Devour.git
synced 2026-06-03 20:13:03 +00:00
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/yourorg/devour/internal/ui"
|
|
)
|
|
|
|
var statusCmd = &cobra.Command{
|
|
Use: "status",
|
|
Short: "Show index status and statistics",
|
|
Long: `Display the current status of the Devour index.
|
|
|
|
Shows:
|
|
- Index health
|
|
- Document count
|
|
- Last update time
|
|
- Source status
|
|
- Storage usage`,
|
|
RunE: runStatus,
|
|
}
|
|
|
|
func runStatus(cmd *cobra.Command, args []string) error {
|
|
// Print the small character mascot
|
|
ui.PrintCharacterSmall()
|
|
fmt.Println()
|
|
|
|
ui.PrintHeader("Devour Status")
|
|
|
|
// TODO: Implement actual status check
|
|
// Check:
|
|
// - Index existence and health
|
|
// - Document count
|
|
// - Vector count
|
|
// - Last sync time
|
|
// - Source status
|
|
|
|
// Placeholder status
|
|
ui.PrintKeyValue("Index Health", "⚠️ Not initialized")
|
|
ui.PrintKeyValue("Documents", "0 indexed")
|
|
ui.PrintKeyValue("Chunks", "0 total")
|
|
ui.PrintKeyValue("Vector Dimension", "1536")
|
|
ui.PrintKeyValue("Last Updated", "Never")
|
|
ui.PrintKeyValue("Storage Used", "0 MB")
|
|
|
|
fmt.Println()
|
|
ui.PrintSection("Sources")
|
|
ui.PrintInfo(" None configured")
|
|
|
|
fmt.Println()
|
|
ui.PrintSection("Next Steps")
|
|
fmt.Println(" 1. Run 'devour init' to initialize")
|
|
fmt.Println(" 2. Run 'devour scrape <source>' to index documents")
|
|
|
|
// Show when check happened
|
|
fmt.Printf("\nStatus as of: %s\n", time.Now().Format(time.RFC3339))
|
|
|
|
return nil
|
|
}
|