원클릭으로
notion
Manage Notion pages, databases, and comments from the command line. Search, view, create, and edit content in your Notion workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage Notion pages, databases, and comments from the command line. Search, view, create, and edit content in your Notion workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use for questions about people, teams, or relationships. Record source notes, reconcile durable memory, create relationships, and query the knowledge graph. Handles sensitive HR data with privacy labels.
List Google Groups via the gog CLI. Use for viewing group membership or finding groups.
Query Granola meeting notes and transcripts. Use when asked about meeting content, action items, or what was discussed.
Use for any calendar work - scheduling meetings, finding free time, searching for events, auditing 1:1s, checking availability, or managing recurring meetings.
Read Slack messages, threads, and channels via CLI. Use when asked to view Slack URLs, search Slack, or look up Slack users.
| name | notion |
| description | Manage Notion pages, databases, and comments from the command line. Search, view, create, and edit content in your Notion workspace. |
| allowed-tools | Bash(notion-cli:*) |
Manage Notion from the command line via notion-cli.
notion-cli search <query> # Search the workspace
notion-cli page list # List pages
notion-cli page view <page> # View a page (renders as markdown)
notion-cli page create --title "Title" # Create a page
notion-cli page edit <page> --replace "..." # Edit a page
notion-cli page upload ./file.md # Upload a markdown file
notion-cli db list # List databases
notion-cli db query <database> # Query a database
notion-cli comment list <page> # List comments
notion-cli comment create <page> --content "..." # Add a comment
All page commands accept a URL, name, or ID to identify pages.
notion-cli search "meeting notes" --json
notion-cli page view "Engineering Roadmap"
notion-cli page create --title "New Doc" --content "# Heading\n\nContent"
notion-cli page create --title "Child" --parent "Engineering"
notion-cli page edit <page> --replace "New content"
notion-cli page edit <page> --find "old text" --replace-with "new text"
notion-cli page edit <page> --find "section" --append "additional content"
Most commands support --json for machine-readable output and --raw for original Notion markup.
Use --help on any command for full options.