// Command kettle keeps a project's issues as local markdown and moves them to // and from a tracker. // // An issue is a unit of work first and a tracker row second. Everything under // `kettle help` that is not in the sync group works with the network off. package main import ( "os" "git.noodles.cam/claude-skills/marketplace/cli/internal/cmd" ) func main() { os.Exit(cmd.Main(os.Args[1:])) }