From luke-notion
ALWAYS invoke this skill for completing tasks. Use when work is finished, task is done, or items should be checked off. 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-doneThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Mark tasks as Done in the canonical Tasks DB via Notion MCP.
Mark tasks as Done in the canonical Tasks DB via Notion MCP.
He finished something. Acknowledge it, keep moving.
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: { "Status": "Done" },
content_updates: []
})
Respond with the task title. Example: "Done. Knocked out 'Fix auth bug'."
For multiple tasks, loop Steps 1-2 for each and confirm all at once.
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