Documentation
¶
Overview ¶
Package cmd implements the CLI commands
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CommandSchemaRegistry ¶ added in v1.3.0
func CommandSchemaRegistry() map[string]CommandSchemas
CommandSchemaRegistry returns the explicit allowlist mapping Cobra command paths to their input/output Go structs. New commands exposed to MCP must be added here so the Cobra-to-MCP surface stays reviewed rather than derived.
Types ¶
type CommandCapability ¶ added in v1.3.0
type CommandCapability struct {
Path string `json:"path"`
Use string `json:"use"`
Short string `json:"short,omitempty"`
Aliases []string `json:"aliases,omitempty"`
HasSub bool `json:"hasSubcommands"`
HasFlags bool `json:"hasFlags"`
HasInSchema bool `json:"hasInputSchema"`
HasOutSchema bool `json:"hasOutputSchema"`
InputSchema *clischema.JSONSchema `json:"inputSchema,omitempty"`
OutputSchema *clischema.JSONSchema `json:"outputSchema,omitempty"`
InputSchemaCommand string `json:"inputSchemaCommand,omitempty"`
OutputSchemaCommand string `json:"outputSchemaCommand,omitempty"`
}
CommandCapability is the JSON-friendly view of one CLI command used by the `capabilities` command and consumed by the embedded MCP server to build its tool catalog.
func BuildCommandCapabilities ¶ added in v1.3.0
func BuildCommandCapabilities(root *cobra.Command, registry map[string]CommandSchemas) []CommandCapability
BuildCommandCapabilities walks the Cobra command tree and returns the materialized capability descriptors enriched with JSON schemas from the supplied registry. Consumed by both the `capabilities` command and the MCP server's tool catalog builder.
type CommandSchemas ¶ added in v1.3.0
CommandSchemas captures optional runtime zero-values for a command's input and output Go structs so JSON schemas can be generated and surfaced both in `capabilities` output and by the embedded MCP server.