From n2c
View and manage My Day tasks. Use when the user says "my day", "today's tasks", "what's on my plate", "show my day", "add to my day", "remove from my day", or wants to plan their day.
How this skill is triggered — by the user, by Claude, or both
Slash command
/n2c:my-dayThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read `.state/databases.json` for the Tasks DB ID. If missing, say to run `/n2c:setup`.
Read .state/databases.json for the Tasks DB ID. If missing, say to run /n2c:setup.
Query tasks where My Day checkbox is true and Status is not Done/Archived.
Call mcp__notion__API-query-data-source with:
{
"data_source_id": "<tasks_db_id>",
"query": {
"filter": {
"and": [
{ "property": "My day", "checkbox": { "equals": true } },
{ "property": "Status", "status": { "does_not_equal": "Done" } },
{ "property": "Status", "status": { "does_not_equal": "Archived" } }
]
},
"sorts": [
{ "property": "Importance", "direction": "ascending" },
{ "property": "Due", "direction": "ascending" }
]
}
}
My Day — <count> tasks
[Status] Title Due: YYYY-MM-DD Energy: X Importance: X (id: abc123)
[Status] Title Due: — Energy: X Importance: X (id: def456)
If empty: "My Day is clear. Want to add tasks?"
When user says "add X to my day":
mcp__notion__API-patch-page:{
"page_id": "<task_page_id>",
"properties": {
"My day": { "checkbox": true }
}
}
Added to My Day: <title>When user says "remove X from my day" or "done with X for today":
Removed from My Day: <title>If user asks "what should I add?" or My Day is empty, suggest tasks based on:
npx claudepluginhub corneliu-iancu/agentic-mind-palaceCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.