ticktick_create_habit
Create and manage habits in TickTick by specifying name, frequency, goal, reminder time, and color to track and improve productivity effectively.
Instructions
Create a new habit in TickTick
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Habit color (hex code) | #3498db |
frequency | No | Frequency: daily, weekly, or custom | daily |
goal | No | Target count per frequency period | |
name | Yes | Name of the habit | |
reminder_time | No | Reminder time in HH:MM format |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"default": "#3498db",
"description": "Habit color (hex code)",
"type": "string"
},
"frequency": {
"default": "daily",
"description": "Frequency: daily, weekly, or custom",
"type": "string"
},
"goal": {
"default": 1,
"description": "Target count per frequency period",
"type": "number"
},
"name": {
"description": "Name of the habit",
"type": "string"
},
"reminder_time": {
"description": "Reminder time in HH:MM format",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}