From atum-nocode
Design Notion workspaces, databases, and automations. Creates structured wikis, project trackers, and integrations with Make.com/Airtable. Use when asked to organize Notion, create a Notion database, build a Notion wiki, set up Notion templates, or connect Notion to other tools.
npx claudepluginhub arnwaldn/atum-plugins-collection --plugin atum-nocodeThis skill uses the workspace's default tool permissions.
Expert en structuration de workspaces Notion et intΓ©grations.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Guides idea refinement into designs: explores context, asks questions one-by-one, proposes approaches, presents sections for approval, writes/review specs before coding.
Expert en structuration de workspaces Notion et intΓ©grations.
Design a structured Notion workspace from requirements.
Standard Structure:
π Dashboard (home page)
βββ π― Projects (database)
β βββ Views: Board (by Status), Timeline, Table
β βββ Templates: New Project, Sprint, Epic
βββ β
Tasks (database, related to Projects)
β βββ Views: My Tasks, Sprint Board, Backlog
β βββ Templates: Bug, Feature, Chore
βββ π Wiki (page tree)
β βββ Engineering
β βββ Product
β βββ Operations
βββ π Meeting Notes (database)
β βββ Views: This Week, By Project
β βββ Templates: Standup, Retro, 1:1
βββ π Resources (bookmarks database)
Property Types Guide:
| Need | Property Type | Example |
|---|---|---|
| Workflow state | Status | To Do β In Progress β Done |
| Category | Select | Bug, Feature, Chore |
| Multiple tags | Multi-select | frontend, backend, urgent |
| Linked entity | Relation | Project β Tasks |
| Computed from relations | Rollup | COUNT(Tasks where Status=Done) |
| Calculated | Formula | dateBetween(now(), prop("Due Date"), "days") |
| Team member | Person | Assignee |
| Deadline | Date | Due Date with reminder |
| Priority | Select with colors | P0 π΄, P1 π‘, P2 π’, P3 βͺ |
| Effort estimate | Number | Story Points |
| External link | URL | Figma/GitHub/Slack link |
// Days until due
dateBetween(prop("Due Date"), now(), "days")
// Status badge
if(prop("Status") == "Done", "β
", if(prop("Status") == "In Progress", "π΅", "β¬"))
// Overdue check
if(prop("Due Date") < now() and prop("Status") != "Done", true, false)
// Progress percentage
round(prop("Tasks Done") / prop("Tasks Total") * 100)
// Sprint assignment
if(prop("Due Date") >= dateStart(prop("Sprint")) and prop("Due Date") <= dateEnd(prop("Sprint")), prop("Sprint Name"), "Backlog")
Make Trigger (Webhook/Schedule)
β Search Notion Database (filter by property)
β Create/Update Notion Page
β Notification (Slack/Email)
Key Make.com Notion modules:
notion:CreateAPage β Create page in databasenotion:UpdateAPage β Update propertiesnotion:SearchObjects β Query databases with filtersnotion:GetAPage β Read specific pagenotion:ListDatabaseItems β List with filters/sortsnotion:AppendBlockChildren β Add content blocksAirtable Watch β Filter (modified) β Search Notion (find match)
ββ [exists] β Update Notion Page
ββ [new] β Create Notion Page
GitHub PR Merged β Create Notion page in Wiki/Changelog
β Add content blocks: title, date, PR link, description
β Link to Project database entry
Project Template:
# π― {Project Name}
## Overview
- **Owner:** @person
- **Status:** π‘ In Progress
- **Timeline:** Start β End
## Goals
1. Goal 1
2. Goal 2
## Resources
- [Figma](#) | [GitHub](#) | [Slack](#)
## Decision Log
| Date | Decision | Rationale |
|------|----------|-----------|
## Tasks
{{Linked Tasks Database View}}
Meeting Notes Template:
# π {Meeting Type} β {Date}
## Attendees
@person1 @person2
## Agenda
1. Item 1
2. Item 2
## Notes
-
## Action Items
- [ ] @person β Task β Due: date
## Follow-up
Next meeting: date
Use Notion MCP tools for direct workspace management:
mcp__claude_ai_Notion__notion-search β Find pages/databasesmcp__claude_ai_Notion__notion-create-pages β Create pagesmcp__claude_ai_Notion__notion-update-page β Update propertiesmcp__claude_ai_Notion__notion-create-database β Create databasesmcp__claude_ai_Notion__notion-create-view β Create viewsmcp__claude_ai_Notion__notion-get-users β List workspace usersmcp__claude_ai_Notion__notion-get-comments / create-comment β Commentsmcp__claude_ai_Notion__notion-duplicate-page β Clone templatesmcp__claude_ai_Notion__notion-fetch β Read any Notion resource