Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Agent ¶
Agent and registry helpers re-exported from the shared agents package for use within the cmd package.
type OutputFormat ¶ added in v0.12.0
type OutputFormat int
OutputFormat represents the output format for a command.
const ( // OutputFormatJSON emits JSON output. OutputFormatJSON OutputFormat = iota // OutputFormatMarkdown emits Markdown output. OutputFormatMarkdown )
type TrendEntry ¶
type TrendEntry struct {
Skill string `json:"skill"`
OldDate string `json:"old_date"`
NewDate string `json:"new_date"`
OldScore int `json:"old_score"`
NewScore int `json:"new_score"`
OldGrade string `json:"old_grade"`
NewGrade string `json:"new_grade"`
Delta int `json:"delta"`
Trend string `json:"trend"` // "↑", "↓", "—"
}
TrendEntry holds the computed trend for a single skill.
Click to show internal directories.
Click to hide internal directories.