cli/cmd/ml/cmd_lesson_init.go
Snider f1f0498716 feat(ml): add lesson and sequence commands for structured training
Lesson command runs prompts from YAML definitions with state tracking,
sandwich signing, and interactive review mode. Sequence command runs
multiple lessons in order (vertical/strict or horizontal/flexible).

State files enable resume after interruption. Both output chat JSONL
compatible with 'core ml train'.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-17 17:52:02 +00:00

8 lines
116 B
Go

//go:build darwin && arm64
package ml
func init() {
mlCmd.AddCommand(lessonCmd)
mlCmd.AddCommand(sequenceCmd)
}