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.
npx skills add byaan-ai/byaan --skill notiongit clone --depth 1 https://github.com/byaan-ai/byaanWrote 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.
[](https://agentmods.dev/skills/byaan-ai/byaan/notion)<a href="https://agentmods.dev/skills/byaan-ai/byaan/notion"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/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.
<a href="https://agentmods.dev/skills/byaan-ai/byaan/notion"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/notion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
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 →
- high Tool Misuse · line 223 Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
- medium Data Exfiltration · line 9 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.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00015 | $0.02054 |
| Opus 5 | $0.00008 | $0.01027 |
| Sonnet 5 | $0.00003 | $0.00411 |
| Haiku 4.5 | $0.00002 | $0.00205 |
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 13d 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.
How it starts
The opening of the file, as written. The whole thing — 286 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Notion
Use the Notion API to search, create, read, and update pages, databases, and blocks.
Setup Guide
Before using this skill, you need to create a Notion integration and grant it access to your pages:
1. Create an Integration
- Go to https://www.notion.com/my-integrations
- Click "New integration"
- Name your integration (e.g., "Byaan")
- Select the workspace you want to connect
- Set capabilities: enable Read content, Update content, and Insert content as needed
- Click Submit to create the integration
- Copy the Internal Integration Secret (starts with
ntn_orsecret_) - Paste this key in Settings > Skills > Notion in the app
2. Grant Access to Pages
This step is required — integrations can only see pages explicitly shared with them.
- Open the Notion page or database you want to access
- Click the "..." menu in the top-right corner
- Click "Connections" (or "Add connections")
- Find and select your integration by name
- Repeat for each page/database you want to access
How Authentication Works
You do not need to handle authentication manually. When you call execute_skill_api(), the system automatically:
- Retrieves the API key from the configured credentials
- Adds the
Authorization: Bearer <api_key>header - Adds the
Notion-Version: 2022-06-28header
Just call the API with skill name, endpoint path, method, and body — authentication is handled for you.
Finding Pages and Content
When a user asks to find, read, or work with a Notion page, ALWAYS start with a search. Never assume you know the page ID.
Search Workflow
- Search by title to find pages:
POST /search
{"query": "Meeting Notes"}
- Filter to pages only (exclude databases):
POST /search
{
"query": "Meeting Notes",
"filter": {"property": "object", "value": "page"}
}
- Get recently edited pages:
POST /search
{
"query": "",
"sort": {"direction": "descending", "timestamp": "last_edited_time"}
}
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.
- 13d ago First seen · 286 lines · 15 tokens per session scan A a1467019ff35
notion is a skill published in the GitHub repository byaan-ai/byaan (95 stars, last pushed 17d ago), licensed MIT. It adds 15 tokens to every session and 2,054 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.
Other skills, from other repositories
google-drive-skill
Upload, download, list, and share Google Drive files. Supports folders, file search, and permission management.
gog
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Tasks, Sheets, Docs, and Slides.
notion
Use the Notion API to create/read/update pages, data sources (databases), and blocks.
google-workspace
Use the native Google Workspace tools for Gmail, Calendar, Drive, Docs, and Sheets.
meetily
A meeting assistant that runs entirely on the local computer: it captures audio, transcribes speech with Parakeet or Whisper, and uses Ollama or another language model to create summaries. No cloud service is required.
haypile
Search the user's local documents (PDF, docx, pptx, markdown, text, HTML, mbox email) through Haypile, a local search daemon. Use when the user asks what their files say, wants passages from contracts, papers, or notes, or wants a folder indexed for search. Every result carries a file and page citation. Runs entirely…