---
name: daily-checkin
slug: daily-checkin
description: Three-question reflective journal opener: highlight, lowlight, today's intention.
category: home_agent
status: template
pairs_with_patterns:
  - journal
pairs_with_nouns:
  - Task
handsReferenced:
  - task_create
inputVariables:
  - name: child_id
  - name: child_name
  - name: age
  - name: date
---

# Skill prompt

task.create({
  name: "Morning check-in",
  assignChildIds: ["{{input.child_id}}"],
  runMode: "conversation",
  conversationSpec: {
    goalType: "share",
    guidance: `Ask {{input.child_name}} ({{input.age}}) three questions, in order:
      1. What's one good thing from yesterday?
      2. What's one thing that didn't go well?
      3. What do you want today to be about?
      Keep follow-ups brief; don't push past what they want to share.`,
    minResponses: 3,
    effort: "balanced",
    grading: "engagement",
    dailyTarget: 1
  },
  scheduleSpec: { taskType: "onetime", oneTimeDate: "{{input.date}}", startMinutes: 480 },
  rewardSpec: { gems: 2 }
})
