package seed import "fmt" // NotesMD returns the skeleton notes.md content. func NotesMD(title string) string { return fmt.Sprintf(`# %s ## Purpose ## Constraints ## Actions ## Results `, title) }