From luke-notion
Manage Notion taxonomy — add/audit initiatives and domains. Use when user explicitly wants to create a new initiative, add a domain, or audit the taxonomy. NOT for adding tasks (use luke-add).
How this skill is triggered — by the user, by Claude, or both
Slash command
/luke-notion:luke-domainThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Explicitly invoked skill for taxonomy changes. Heavy guardrails — these operations affect all other Luke skills.
Explicitly invoked skill for taxonomy changes. Heavy guardrails — these operations affect all other Luke skills.
0b32261c-5766-4cbe-bb64-83d8e62f9cfecollection://28a0a1b7-d639-4e34-898f-e19415823dec| Property | Type | Options |
|---|---|---|
| Name | title | <Domain> – <Name> format with en-dash (–, not -) |
| Domain | select | Cogent, Coresynq, Rezzy, Personal |
| Type | select | Internal Project, External Client, Catch-all |
| Status | select | active, paused, done, archived |
| Description | rich_text | free-form |
"Add a new initiative to Rezzy called 'Analytics V3'"
notion-search scoped to the Initiatives data source.mcp__claude_ai_Notion__notion-create-pages({
parent: { type: "data_source_id", data_source_id: "28a0a1b7-d639-4e34-898f-e19415823dec" },
pages: [{
properties: {
"Name": "Rezzy – Analytics V3",
"Domain": "Rezzy",
"Type": "Internal Project",
"Status": "active",
"Description": "Optional one-liner."
}
}]
})
No local index to refresh — all other skills resolve initiatives live via notion-search.
Rare. Full setup checklist — walk user through, don't auto-execute:
Domain select via notion-update-data-source with ALTER COLUMN.Domain select (same approach).<Domain> – General.Assignee → Can view).No notion-write.ts routing change needed — all tasks go to the single canonical cortex Tasks DB regardless of domain.
Check the taxonomy for common problems. Use MCP search, not a local file.
notion-search the Initiatives data source for all active rows, then for each one spot-check its relation-back count via notion-query-database-view on cortex Tasks / Meetings views. For a rough check, ask the user — they usually know.<Domain> – General): fetch all initiatives via search, group by Domain, flag any domain without a General.– (en-dash), not - (hyphen).<Domain> – General for unclassified work.npx claudepluginhub collin-ho/luke-plugins --plugin luke-notionGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.