notion

notion is a skill for Claude Code, Codex from thewolffish/wolffish-app. It costs 19 tokens per session (7,192 once invoked), scanned A, original, MIT.

A tool for working with Notion, a workspace for pages, structured databases, and content blocks.

In plain words
What is it for?
Use it to read, create, update, and manage Notion pages, databases, and the blocks that make up page content.
Why use it?
It lets you manage Notion content from the coding agent instead of switching to the Notion interface. It also supports choosing between multiple connected Notion workspaces.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to read, create, update, and manage Notion pages, databases, and the blocks that make up page content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thewolffish/wolffish-app/notion
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.

Any agent
npx skills add thewolffish/wolffish-app --skill notion
Clone the repo
git clone --depth 1 https://github.com/thewolffish/wolffish-app

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/thewolffish/wolffish-app/notion/github.svg)](https://agentmods.dev/skills/thewolffish/wolffish-app/notion)
Your own site
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/notion"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/notion/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for notion

Your own site · 80×15
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/notion"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/notion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,192 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 391
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 403
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.1 $0.00019 $0.07192
Opus 5 $0.00010 $0.03596
Sonnet 5 $0.00004 $0.01438
Haiku 4.5 $0.00002 $0.00719

Measured 9d ago against content hash 37f930f809e7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

notion scanned grade A with 0 findings 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (plugin/index.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/defaults/workspace/brain/cerebellum/notion/SKILL.md · 639 lines

How it starts

The opening of the file, as written. The whole thing — 639 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Notion

Connections

Notion access is organized into connections. Each connection is one Notion workspace the user linked, identified by a label they chose (for example Personal or Wolffish). The label is how you — and the user — tell one workspace apart from another.

  • Call notion_connections to see the configured labels and which account each points to. It never returns tokens.
  • Pass the chosen label as the connection parameter on every other notion_* tool call.
  • You may omit connection only when exactly one connection is configured. When several exist and you don't pass one, the tool returns an error listing the available labels — read it and retry with the right label.
  • Match the label to the user's intent: "my personal notion" → the connection labeled Personal; "the Wolffish workspace" → Wolffish. If it is genuinely ambiguous which the user means, ask them before acting.

Content model

Notion's API uses a block-based content model:

  • Pages are the primary unit. A page has properties (metadata like title, status, dates, people, relations) and a body made of blocks.
  • Databases are collections of pages. Each page in a database has properties matching the database schema (columns). Databases can be queried with filters and sorts.
  • Blocks are content elements: paragraphs, headings, lists, to-dos, code, images, embeds, toggles, callouts, tables, columns, and more. Blocks can have children (nested blocks).

How properties work

Properties are key-value pairs on a page. The key is the property name, the value is a typed object:

  • title — the page name: { "title": [{ "text": { "content": "My Page" } }] }
  • rich_text — text field: { "rich_text": [{ "text": { "content": "some text" } }] }
  • number{ "number": 42 }
  • select{ "select": { "name": "Option A" } }
  • multi_select{ "multi_select": [{ "name": "Tag1" }, { "name": "Tag2" }] }
  • date{ "date": { "start": "2024-01-15", "end": "2024-01-20" } }
  • checkbox �� { "checkbox": true }
  • url{ "url": "https://example.com" }
  • email{ "email": "[email protected]" }
  • phone_number{ "phone_number": "+1234567890" }
  • people{ "people": [{ "id": "user-uuid" }] }
  • relation{ "relation": [{ "id": "page-uuid" }] }
  • status{ "status": { "name": "In Progress" } }
  • formula, rollup, created_time, last_edited_time, created_by, last_edited_by — read-only computed properties

Read the full file on GitHub · 639 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 639 lines · 19 tokens per session scan A 37f930f809e7

Subscribe to this mod's changes

notion is a skill published in the GitHub repository thewolffish/wolffish-app (5 stars, last pushed 2d ago), licensed MIT. It adds 19 tokens to every session and 7,192 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

co-mail-and-drive

Read and send mail from the user's own Gmail or Outlook account, safely stage Gmail draft attachments, send from the agent's own address, manage Outlook contacts and the Outlook calendar, and work with Google Drive files — with co gmail, co outlook, co email, and co gdrive. Use when the user asks about their inbox, an…

openonion/connectonion · 103 tokens

warpctrl

Control and inspect the currently running local Warp application with the warpctrl CLI. Use this skill whenever the user asks the agent to manipulate Warp's own windows, tabs, panes, sessions, input buffer, themes, or UI surfaces; open a file in Warp; inspect local Warp state; or explain how to invoke Warp Control…

warpdotdev/warp · 69 tokens

change-keybinding

Customize Warp keyboard shortcuts (keybindings, keymappings) by editing the user's keybindings.yaml file. Use when the user asks to remap a key combination, rebind an action, change a shortcut, or remove a default keybinding (e.g. "change ctrl+space to ctrl+s", "rebind the command palette to cmd+p", "remove the…

warpdotdev/warp · 82 tokens

create-tab-config

Create new Warp tab config TOML files from natural-language requests. Use when the user wants a new tab config, a new tab layout, or asks for a slash command to generate a tab config.

warpdotdev/warp · 44 tokens

relay

Write a handoff/continuity note for the NEXT Sutando session. Captures what was just in flight, what to check first, what might go wrong, and implicit context the structured snapshot doesn't carry. Drained into session-state.md by src/session-handoff.sh.

sonichi/sutando · 57 tokens

meeting-scheduler

Schedule a small meeting end-to-end: resolve attendee emails, check the owner's calendar for the slot, dedup-check, then create + email the Google Calendar invite. The mechanical core only — cross-person availability negotiation stays interactive.

sonichi/sutando · 49 tokens