From luke-notion
ALWAYS invoke this skill for modifying tasks. Use when changing any task property (status, priority, due date, title, etc.). Uses Notion MCP tools directly against the canonical Tasks DB.
How this skill is triggered — by the user, by Claude, or both
Slash command
/luke-notion:luke-editThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Modify existing tasks in the canonical Tasks DB via Notion MCP.
Modify existing tasks in the canonical Tasks DB via Notion MCP.
Quick updates, confirm what changed.
mcp__claude_ai_Notion__notion-search({
query: "<user's task description>",
data_source_url: "collection://b0d00fd8-eebb-434d-84c1-a652260fbe79",
filters: {},
page_size: 5,
max_highlight_length: 100
})
mcp__claude_ai_Notion__notion-update-page({
page_id: "<page_id>",
command: "update_properties",
properties: { "<PropertyName>": "<value>" },
content_updates: []
})
| Property | Type | Accepted Values |
|---|---|---|
| Title | title | Any text |
| Status | select | Backlog, To Do, In Progress, Pending Review, Blocked, Done, Archived |
| Priority | select | P0, P1, P2, P3 |
| Initiative | relation | Search for the initiative page first |
| Related Meeting | relation | Link/unlink a source meeting — search Meetings DB first |
| Due Date | date | Use "date:Due Date:start": "YYYY-MM-DD", "date:Due Date:is_datetime": 0 |
| Notes | rich_text | Any text |
| Source Spec | rich_text | Path or URL to a design spec |
| Assignee | person | Search for user with query_type: "user" first |
| Area | multi_select | Match existing options |
| Client | select | Match existing options |
To clear a property, set its value to null.
Change status:
properties: { "Status": "In Progress" }
Set priority and status together:
properties: { "Priority": "P0", "Status": "In Progress" }
Set due date:
properties: { "date:Due Date:start": "2026-04-25", "date:Due Date:is_datetime": 0 }
Clear due date:
properties: { "date:Due Date:start": null }
Update title:
properties: { "Title": "Revised task name here" }
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub collin-ho/luke-plugins --plugin luke-notion