notion

notion is a skill for Claude Code, Codex from perasyudha/Nyxora. It costs 19 tokens per session (4,229 once invoked), scanned D, a copy of notion, MIT.

A connection between a coding agent and Notion, a workspace for pages, notes, and databases. It supports Notion's command-line tool and HTTP requests for working with that content.

In plain words
What is it for?
Working with Notion pages and databases, converting Markdown, uploading files, and using Notion from macOS, Linux, or Windows.
Why use it?
It gives the agent a documented way to read and update Notion instead of requiring manual copying. It also explains the access and sharing setup needed for pages and databases.

Skill for Claude CodeCodex

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

Good fit Working with Notion pages and databases, converting Markdown, uploading files, and using Notion from macOS, Linux, or Windows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/perasyudha/nyxora/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 perasyudha/Nyxora --skill notion
Clone the repo
git clone --depth 1 https://github.com/perasyudha/Nyxora

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/perasyudha/nyxora/notion/github.svg)](https://agentmods.dev/skills/perasyudha/nyxora/notion)
Your own site
<a href="https://agentmods.dev/skills/perasyudha/nyxora/notion"><img src="https://agentmods.dev/badge/skills/perasyudha/nyxora/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/perasyudha/nyxora/notion"><img src="https://agentmods.dev/badge/skills/perasyudha/nyxora/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 4,229 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 89% copy Near-identical to another mod 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.04229
Opus 5 $0.00010 $0.02115
Sonnet 5 $0.00004 $0.00846
Haiku 4.5 $0.00002 $0.00423

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

Security

Grade D, and why

notion scanned grade D with 3 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.

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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -s -X PUT "{upload_url}" --data-binary @photo.png

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://ntn.dev | bash

Makes network callslowCapability

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

◆ **HTTP + curl** — works everywhere including Windows. **Default fallback** when `ntn` isn't installed.
Origin

This is a copy

89% identical to notion — 29 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

packages/core/playbooks/productivity/notion/SKILL.md · 448 lines

How it starts

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

Notion

Talk to Notion two ways. Same integration token works for both — pick by what's available.

ntn CLI — Notion's official CLI. Shorter syntax, one-line file uploads, required for Workers. macOS + Linux only as of May 2026 (Windows support "coming soon"). Default when installed.HTTP + curl — works everywhere including Windows. Default fallback when ntn isn't installed.

Setup

1. API Key Injection (CRITICAL FOR AI)

[CRITICAL INSTRUCTION TO AI]: The NOTION_API_KEY environment variable is AUTOMATICALLY INJECTED into your terminal session by the Nyxora daemon. DO NOT ask the user where the API key is stored. DO NOT try to source or find .env files. Just execute the curl or ntn commands directly. The $NOTION_API_KEY variable is already populated and ready to use in your shell!

(For humans setting this up manually: store the key in nyxora set-key notion <key> or ~/.nyxora/config/config.yaml)

Share target pages/databases with the integration in Notion: page menu ...Connect to → your integration name. Without this, the API returns 404 for that page even though it exists.

2. Install ntn (preferred path on macOS / Linux)

# Recommended
curl -fsSL https://ntn.dev | bash

# Or via npm (needs Node 22+, npm 10+)
npm install --global ntn

ntn --version    # verify

Skip ntn login — use the integration token instead. This works headlessly, no browser needed:

export NOTION_API_TOKEN=$NOTION_API_KEY      # ntn reads NOTION_API_TOKEN
export NOTION_KEYRING=0                       # don't try to use the OS keychain

Add those exports to your shell profile (or to ${NYXORA_HOME:-~/.nyxora}/.env) so every session inherits them.

3. Choose path at runtime

if command -v ntn >/dev/null 2>&1; then
  # use ntn
else
  # fall back to curl
fi

Windows users: skip step 2 entirely until native ntn ships — Path B works fine. If you want CLI ergonomics now, install ntn inside WSL2.

Read the full file on GitHub · 448 lines

Files

What ships with it

1 file 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 · 448 lines · 19 tokens per session scan D 8ddc744d6931

Subscribe to this mod's changes

notion is a skill published in the GitHub repository perasyudha/Nyxora (5 stars, last pushed 9d ago), licensed MIT. It adds 19 tokens to every session and 4,229 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it D with 3 findings (sends data to an external url, downloads and executes remote code, makes network calls). It is 89% identical to notion, differing in 29 lines, and is treated as a copy.

Related

Other skills, from other repositories

material-organizer

Organize user-provided materials or local folders into traceable notes, knowledge cards, categories, indexes, and cleanup plans. Use this skill whenever the user asks to organize multiple links, files, snippets, research materials, downloads, personal knowledge flow materials, or a local directory.

Orkas-AI/Orkas-Awesome-AgentSkills · 60 tokens

custom-daily-brief

Builds a role-tuned morning brief as a Word document covering emails that need replies, today's calendar, Teams mentions and upcoming deadlines, using section presets from an editable config file. Use when the user asks for their daily brief, morning brief, start-of-day summary or custom briefing, or wants to change…

kesslernity/awesome-copilot-cowork-skills · 73 tokens

meeting-prep-onepager

Builds a one-page meeting prep brief and saves it as a Word document in OneDrive. Gathers the calendar invite, recent email threads with attendees, Teams messages and shared files, then distils them into purpose, attendee positions, open threads, key files, talking points and risks. Use when the user asks to prepare…

kesslernity/awesome-copilot-cowork-skills · 97 tokens

gog

Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.

bighardperson/computer-science-skills-collection · 20 tokens

gws-drive

Google Drive: Manage files, folders, and shared drives.

googleworkspace/cli · 16 tokens

recipe-save-email-attachments

Find Gmail messages with attachments and save them to a Google Drive folder.

googleworkspace/cli · 20 tokens