notion

notion is a skill for Claude Code, Codex from eobarretooo/ClawLite. It costs 22 tokens per session (398 once invoked), scanned A, original, MIT.

An integration for Notion, a workspace for pages, documents, and databases. It uses Notion’s API to search, read, create, and update that content.

In plain words
What is it for?
Use it to search pages and databases, read page blocks, create pages, update page properties or content, and query database rows.
Why use it?
It removes the need to switch to Notion for routine content changes or build API requests yourself. It helps work with both page text and database records.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/eobarretooo/clawlite/notion
Any agent
npx skills add eobarretooo/ClawLite --skill notion
Clone the repo
git clone --depth 1 https://github.com/eobarretooo/ClawLite

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for notion

README.md
[![agentmods](https://agentmods.dev/badge/skills/eobarretooo/clawlite/notion.svg)](https://agentmods.dev/skills/eobarretooo/clawlite/notion)
Your own site
<a href="https://agentmods.dev/skills/eobarretooo/clawlite/notion"><img src="https://agentmods.dev/badge/skills/eobarretooo/clawlite/notion.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 398 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00022 $0.00398
Opus 5 $0.00011 $0.00199
Sonnet 5 $0.00004 $0.00080
Haiku 4.5 $0.00002 $0.00040

Measured 5d ago against content hash beadbb6ca641, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

notion scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST https://api.notion.com/v1/search \
clawlite/skills/notion/SKILL.md · 53 lines

What it actually says

Notion

Use this skill when the user wants to interact with Notion pages, databases, or workspaces.

Auth

Set NOTION_API_KEY (Integration token from https://www.notion.so/my-integrations).

Base URL

https://api.notion.com/v1
Headers: Authorization: Bearer $NOTION_API_KEY
         Notion-Version: 2022-06-28
         Content-Type: application/json

Key endpoints

POST /search                          # search pages/databases by query
GET  /pages/{page_id}                 # read a page
POST /pages                           # create a page
PATCH /pages/{page_id}                # update page properties
GET  /databases/{database_id}/query   # query a database
POST /databases/{database_id}/query   # filter/sort database rows
GET  /blocks/{block_id}/children      # read page content blocks
PATCH /blocks/{block_id}              # update a block
POST /blocks/{block_id}/children      # append blocks to a page

Search example

curl -s -X POST https://api.notion.com/v1/search \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{"query":"meeting notes","filter":{"value":"page","property":"object"}}'

Safety notes

  • Never delete pages without explicit user confirmation.
  • Prefer PATCH (update) over recreating pages.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 53 lines · 22 tokens per session scan A beadbb6ca641

Subscribe to this mod's changes

notion is a skill published in the GitHub repository eobarretooo/ClawLite (49 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 398 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

document-query

Use when reading, extracting, summarizing, comparing, or answering questions over local or remote documents, code files, PDFs, Office files, HTML/text files, large text-heavy files, and fallback OCR for document images or scans when vision tools are unavailable or insufficient.

agent0ai/agent-zero · 56 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens

google-drive-sheets

Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.

yc-software/qm · 31 tokens

dropbox

Browse, search, read, upload, and share the user's Dropbox — including team/shared folders — through per-user OAuth.

yc-software/qm · 27 tokens

officecli-commonly-templates

Use this skill when producing a polished, Commonly-branded deliverable (.docx brief / memo, .xlsx data matrix, .pptx deck) and you do not have specific brand guidance from the user. Trigger on: 'write me a brief', 'one-pager', 'memo', 'data sheet', 'status matrix', 'short deck', 'summary deck', 'closing slide', 'final…

Team-Commonly/commonly · 182 tokens

pandic-office

Convert Markdown to PDF (or DOCX/EPUB/HTML) using the pandoc CLI. Use when asked to produce a PDF report, brief, summary, or any document where the input is Markdown and the output should be a polished, paginated file.

Team-Commonly/commonly · 59 tokens