Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/agentsview/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ func newRootCommand() *cobra.Command {
root.AddCommand(newClassifierCommand())
root.AddCommand(newSecretsCommand())
root.AddCommand(newSkillsCommand())
root.AddCommand(newCloudCommand())
root.AddCommand(newDoctorCommand())
root.AddCommand(newVersionCommand())
root.AddCommand(newOpenAPICommand())
Expand Down
15 changes: 15 additions & 0 deletions cmd/agentsview/cloud.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package main

import "github.com/spf13/cobra"

// newCloudCommand is retained as a stable CLI group. Claude.ai connection and
// synchronization are desktop transport features; the Go CLI never reads
// browser credentials or makes provider HTTP requests.
func newCloudCommand() *cobra.Command {
return &cobra.Command{
Use: "cloud",
Short: "Manage cloud conversation sources",
SilenceUsage: true,
Args: cobra.NoArgs,
}
}
1 change: 1 addition & 0 deletions desktop/src-tauri/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@

# Backup created by prepare-sidecar.sh version patching
tauri.conf.json.orig
permissions/autogenerated/
Loading
Loading