notion

notion is a skill for Claude Code from Arvo-AI/aurora. It costs 23 tokens per session (3,972 once invoked), scanned A, original, Apache-2.0.

A connection to Notion, a workspace for pages, databases, documents, and team knowledge. It can search, read, manage, and export investigation findings to Notion.

In plain words
What is it for?
Finding pages and databases, reading content, managing workspace items, and exporting postmortems or action items to Notion databases.
Why use it?
It helps locate existing knowledge and store root-cause findings, postmortems, and follow-up actions where the team keeps its documentation.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Finding pages and databases, reading content, managing workspace items, and exporting postmortems or action items to Notion databases.

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

Made for: Claude Code.

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/arvo-ai/aurora/notion.svg)](https://agentmods.dev/skills/arvo-ai/aurora/notion)
Your own site
<a href="https://agentmods.dev/skills/arvo-ai/aurora/notion"><img src="https://agentmods.dev/badge/skills/arvo-ai/aurora/notion.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,972 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 pass 7 Sept 2026
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.00023 $0.03972
Opus 5 $0.00012 $0.01986
Sonnet 5 $0.00005 $0.00794
Haiku 4.5 $0.00002 $0.00397

Measured 8d ago against content hash ec3be9abefa5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 8d 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.

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.

server/chat/backend/agent/skills/integrations/notion/SKILL.md · 334 lines

How it starts

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

Notion Integration

Overview

Notion workspace integration for searching, reading, and managing pages, databases, blocks, comments, users, and files. Also supports exporting Aurora RCA postmortems and action items to Notion databases.

Notion is a REMOTE service. Use ONLY the Notion tools listed below -- never shell commands or local file access.

Instructions

1. Discovery -- Always Start Here

Before any operation, search to understand the workspace layout:

notion_search(query='...', types=['page']) -- find pages by title keyword notion_search(query='...', types=['database']) -- find databases by title keyword notion_search(query='...', max_results=25) -- search all object types (pages + databases)

  • types accepts ["page"], ["database"], or omit for both.
  • max_results range: 1--100, default 10.
  • Returns: id, object type, title, url, last_edited_time for each result.

To read a specific page or database: notion_fetch(url_or_id='<page_url_or_uuid>', max_length=5000) -- returns page body as markdown

  • Accepts full Notion URLs or bare UUIDs (with or without dashes).
  • max_length range: 100--50000, default 5000. Output truncated with "... [truncated]" marker beyond this.
  • For databases: returns property schema keys instead of markdown body.
  • For long pages, use notion_get_block_children with pagination instead.

2. Pages

Create pages: notion_create_pages(pages=[{title, parent_page_id|parent_database_id, markdown, icon, cover, properties}])

  • Each page needs exactly ONE parent: parent_page_id (under a page) or parent_database_id (as a database row).
  • markdown: optional body content as markdown string.
  • icon: emoji string (e.g. "📋") or image URL.
  • cover: image URL.
  • properties: raw Notion property payload (for database-parented pages with custom schema columns).
  • Batch-creates multiple pages in one call; returns per-page results + errors for partial failures.

Update a page: notion_update_page(page_id, properties=None, icon=None, cover=None, archived=None, markdown=None, markdown_mode='append')

  • markdown_mode: "append" (default, adds to end) or "replace" (overwrites body).
  • Only provided fields are updated; omitted fields are unchanged.

Read the full file on GitHub · 334 lines

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. 8d ago First seen · 334 lines · 23 tokens per session scan A ec3be9abefa5

Subscribe to this mod's changes

notion is a skill published in the GitHub repository Arvo-AI/aurora (405 stars, last pushed yesterday), licensed Apache-2.0. It adds 23 tokens to every session and 3,972 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-30.

Related

Other skills, from other repositories

tax-lawyer-software-interfaces

MCP tool design patterns for the Tax-Lawyer Platform. Thin Satisfies wrappers (<=10 lines per handler), TaxArgs contract types, and the full tool name taxonomy for ledgerrtax MCP actions.

elasticdotventures/_b00t_ · 54 tokens

b00t

Identify integration points, data flow via redis, suggest how to bridge VSCode plugin to b00t jobs, and outline k0s/podman/docker-agnostic redis interface. Include how ralph should be wrapped as b00t job with redis exchange + Azure access, and call out where integration tests are required. ONLY do this analysis. Reply…

elasticdotventures/_b00t_ · 0 tokens

terraform-infrastructure-as-code

Comprehensive Terraform Infrastructure as Code skill covering resources, modules, state management, workspaces, providers, and advanced patterns for cloud-agnostic infrastructure deployment.

manutej/luxor-claude-marketplace · 36 tokens

isaac-automator

Deploy and operate a cloud Isaac Workstation with Isaac Automator: provision a GPU VM running Isaac Sim, Isaac Lab, and/or Isaac Lab Arena on AWS, GCP, Azure, or Alibaba Cloud, connect to it, move data in and out, control cost with stop/start, repair, import existing deployments, and destroy. Use when the user wants a…

isaac-sim/IsaacAutomator · 123 tokens

cloud-iam-deep

GCP/AWS/Azure cloud exploitation -- Cloud Functions, Firestore, Cloud Run, S3, MinIO, Blob Storage, SA keys.

uphiago/recon-skills · 35 tokens

ak-add-integration

Add a messaging platform integration to an existing Agent Kernel project. This skill guides you through adding Slack, WhatsApp, Messenger, Instagram, Telegram, Teams, or Gmail integration by generating configuration, updating dependencies, and setting up webhook handlers. Designed for users extending their agents.

yaalalabs/agent-kernel · 59 tokens