package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: May 28, 2026
License: MIT
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package skillgen renders an urfave/cli v3 command tree into either a
flat markdown lookup table or a structured yaml document. Pairs with
RenderMarkdown walks commands and emits a deterministic markdown
lookup table, one section per leaf verb:
RenderYAML walks commands and emits a yaml document of Entry rows
under a top-level `commands:` key. Each path is prefixed with root
type Entry struct {
Path []string `yaml:"path"`
Summary string `yaml:"summary,omitempty"`
Flags []string `yaml:"flags,omitempty"`
}
Entry is one leaf verb in the structured (yaml) form of the command
tree. Programmatic consumers (an external orchestrator, a plan-time
Source Files
¶
Click to show internal directories.
Click to hide internal directories.