You could create a group, a reminder and use this reminder script
-- Create daily markdown record via reminder
on performReminder(theGroup)
tell application id "DNtp"
set theName to do shell script "date \"+%Y-%m-%d\""
create record with {name:theName, type:markdown, plain text:""} in theGroup
end tell
end performReminder