Implements bd-145. Users can now easily determine which database file bd is using and check daemon connection status. Features: - Shows absolute database path - Displays daemon status (connected/mode/health/version) - Shows issue count - Supports --json output for programmatic use - Works in both daemon and direct modes Example output: bd info # Human-readable bd info --json # JSON for agents bd info --no-daemon # Force direct mode Updated documentation in README.md and AGENTS.md. Amp-Thread-ID: https://ampcode.com/threads/T-a33c0762-f800-4fea-9510-6a803d8aece8 Co-authored-by: Amp <amp@ampcode.com>
135 lines
3.4 KiB
Go
135 lines
3.4 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/steveyegge/beads/internal/types"
|
|
)
|
|
|
|
var infoCmd = &cobra.Command{
|
|
Use: "info",
|
|
Short: "Show database and daemon information",
|
|
Long: `Display information about the current database path and daemon status.
|
|
|
|
This command helps debug issues where bd is using an unexpected database
|
|
or daemon connection. It shows:
|
|
- The absolute path to the database file
|
|
- Daemon connection status (daemon or direct mode)
|
|
- If using daemon: socket path, health status, version
|
|
- Database statistics (issue count)
|
|
|
|
Examples:
|
|
bd info
|
|
bd info --json`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// Get database path (absolute)
|
|
absDBPath, err := filepath.Abs(dbPath)
|
|
if err != nil {
|
|
absDBPath = dbPath
|
|
}
|
|
|
|
// Build info structure
|
|
info := map[string]interface{}{
|
|
"database_path": absDBPath,
|
|
"mode": daemonStatus.Mode,
|
|
}
|
|
|
|
// Add daemon details if connected
|
|
if daemonClient != nil {
|
|
info["daemon_connected"] = true
|
|
info["socket_path"] = daemonStatus.SocketPath
|
|
|
|
// Get daemon health
|
|
health, err := daemonClient.Health()
|
|
if err == nil {
|
|
info["daemon_version"] = health.Version
|
|
info["daemon_status"] = health.Status
|
|
info["daemon_compatible"] = health.Compatible
|
|
info["daemon_uptime"] = health.Uptime
|
|
}
|
|
|
|
// Get issue count from daemon
|
|
resp, err := daemonClient.Stats()
|
|
if err == nil {
|
|
var stats types.Statistics
|
|
if jsonErr := json.Unmarshal(resp.Data, &stats); jsonErr == nil {
|
|
info["issue_count"] = stats.TotalIssues
|
|
}
|
|
}
|
|
} else {
|
|
// Direct mode
|
|
info["daemon_connected"] = false
|
|
if daemonStatus.FallbackReason != "" && daemonStatus.FallbackReason != FallbackNone {
|
|
info["daemon_fallback_reason"] = daemonStatus.FallbackReason
|
|
}
|
|
if daemonStatus.Detail != "" {
|
|
info["daemon_detail"] = daemonStatus.Detail
|
|
}
|
|
|
|
// Get issue count from direct store
|
|
if store != nil {
|
|
ctx := context.Background()
|
|
filter := types.IssueFilter{}
|
|
issues, err := store.SearchIssues(ctx, "", filter)
|
|
if err == nil {
|
|
info["issue_count"] = len(issues)
|
|
}
|
|
}
|
|
}
|
|
|
|
// JSON output
|
|
if jsonOutput {
|
|
outputJSON(info)
|
|
return
|
|
}
|
|
|
|
// Human-readable output
|
|
fmt.Println("\nBeads Database Information")
|
|
fmt.Println("===========================")
|
|
fmt.Printf("Database: %s\n", absDBPath)
|
|
fmt.Printf("Mode: %s\n", daemonStatus.Mode)
|
|
|
|
if daemonClient != nil {
|
|
fmt.Println("\nDaemon Status:")
|
|
fmt.Printf(" Connected: yes\n")
|
|
fmt.Printf(" Socket: %s\n", daemonStatus.SocketPath)
|
|
|
|
health, err := daemonClient.Health()
|
|
if err == nil {
|
|
fmt.Printf(" Version: %s\n", health.Version)
|
|
fmt.Printf(" Health: %s\n", health.Status)
|
|
if health.Compatible {
|
|
fmt.Printf(" Compatible: ✓ yes\n")
|
|
} else {
|
|
fmt.Printf(" Compatible: ✗ no (restart recommended)\n")
|
|
}
|
|
fmt.Printf(" Uptime: %.1fs\n", health.Uptime)
|
|
}
|
|
} else {
|
|
fmt.Println("\nDaemon Status:")
|
|
fmt.Printf(" Connected: no\n")
|
|
if daemonStatus.FallbackReason != "" && daemonStatus.FallbackReason != FallbackNone {
|
|
fmt.Printf(" Reason: %s\n", daemonStatus.FallbackReason)
|
|
}
|
|
if daemonStatus.Detail != "" {
|
|
fmt.Printf(" Detail: %s\n", daemonStatus.Detail)
|
|
}
|
|
}
|
|
|
|
// Show issue count
|
|
if count, ok := info["issue_count"].(int); ok {
|
|
fmt.Printf("\nIssue Count: %d\n", count)
|
|
}
|
|
|
|
fmt.Println()
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(infoCmd)
|
|
}
|