MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / metadataCommand

Method metadataCommand

internal/cli/metadata.go:13–23  ·  view source on GitHub ↗
(state *globalState)

Source from the content-addressed store, hash-verified

11)
12
13func (a *App) metadataCommand(state *globalState) *cobra.Command {
14 cmd := &cobra.Command{
15 Use: "metadata",
16 Aliases: []string{"md"},
17 Short: "Manage the metadata index for agents, skills, and plugins",
18 }
19 cmd.AddCommand(a.metadataRefreshCommand(state))
20 cmd.AddCommand(a.metadataSearchCommand(state))
21 cmd.AddCommand(a.metadataInstallCommand(state))
22 return cmd
23}
24
25func (a *App) metadataRefreshCommand(state *globalState) *cobra.Command {
26 return &cobra.Command{

Callers 1

rootCommandMethod · 0.95

Calls 3

metadataSearchCommandMethod · 0.95

Tested by

no test coverage detected