notion-md-agent AGENTS.md

notion-md-agent AGENTS.md is an instructions file for Codex, OpenCode from 2aronS/notion-md-agent. It costs 1,230 tokens per session, scanned A, a copy of better-notion-mcp AGENTS.md, MIT.

A project instruction file for notion-md-agent, a TypeScript and Node.js MCP server for the Notion API. It documents its build, formatting, checking, testing, development, and release commands.

In plain words
What is it for?
Building, linting, formatting, type-checking, developing, and testing notion-md-agent, including individual test files or test names.
Why use it?
It gives coding agents and contributors a single reference for working on the project correctly and running targeted tests.

Instructions file for CodexOpenCode

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 instructions/2arons/notion-md-agent/agents-md
Clone the repo
git clone --depth 1 https://github.com/2aronS/notion-md-agent

Made for: Codex, OpenCode.

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-md-agent AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/2arons/notion-md-agent/agents-md.svg)](https://agentmods.dev/instructions/2arons/notion-md-agent/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/2arons/notion-md-agent/agents-md"><img src="https://agentmods.dev/badge/instructions/2arons/notion-md-agent/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,230 This file is loaded in full into every session.
When invoked 1,230 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 94% 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 $0.01230 $0.01230
Opus 5 $0.00615 $0.00615
Sonnet 5 $0.00246 $0.00246
Haiku 4.5 $0.00123 $0.00123

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

Security

Grade A, and why

notion-md-agent AGENTS.md 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 4d 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.

Origin

This is a copy

94% identical to better-notion-mcp AGENTS.md — 15 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.

AGENTS.md · 134 lines

How it starts

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

AGENTS.md - notion-md-agent

MCP Server for Notion API. TypeScript, Node.js >= 24, bun, ESM.

Build / Lint / Test Commands

bun install                 # Install dependencies
bun run build               # tsc --build && esbuild CLI bundle
bun run check               # Biome check + tsc --noEmit (CI command)
bun run check:fix           # Auto-fix Biome + type check
bun run test                # vitest --passWithNoTests (NEVER use bare "bun test")
bun run test:watch          # vitest watch
bun run test:coverage       # vitest --coverage
bun run lint                # biome lint src
bun run format              # biome format --write .
bun run type-check          # tsc --noEmit
bun run dev                 # tsx watch dev server

# Run a single test file
bun x vitest run src/tools/helpers/errors.test.ts

# Run a single test by name
bun x vitest run -t "test name pattern"

# Mise shortcuts
mise run setup              # Full dev environment setup
mise run lint               # bun run check
mise run test               # bun run test
mise run fix                # bun run check:fix

Code Style

Formatting (Biome)

  • Indent: 2 spaces
  • Line width: 120
  • Quotes: Single quotes
  • Semicolons: As needed (omit when possible)
  • Trailing commas: None
  • Arrow parens: Always
  • Bracket spacing: true
  • Line endings: LF

Imports

  1. Type imports use import type (separate statement)
  2. External packages first, then internal imports (relative paths)
  3. Node builtins with node: prefix (node:fs, node:path, node:url)
  4. Always use .js extension in import paths (ESM requirement)
import type { Client } from '@notionhq/client'
import { NotionMCPError, withErrorHandling } from '../helpers/errors.js'
import { blocksToMarkdown, markdownToBlocks } from '../helpers/markdown.js'

TypeScript

  • strict: true, target: es2021, module: es2022, moduleResolution: Bundler
  • composite: true for incremental builds
  • isolatedModules: true, forceConsistentCasingInFileNames: true

Read the full file on GitHub · 134 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. 4d ago First seen · 134 lines · 1,230 tokens per session scan A 772909cb08b7

Subscribe to this mod's changes

notion-md-agent AGENTS.md is an instructions file published in the GitHub repository 2aronS/notion-md-agent (9 stars, last pushed 3mo ago), licensed MIT. It adds 1,230 tokens to every session, about $0.0062 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to better-notion-mcp AGENTS.md, differing in 15 lines, and is treated as a copy.