database-notion

database-notion is a skill for Claude Code from spinningrachel/career-engine. It costs 122 tokens per session (4,870 once invoked), scanned A, original, MIT.

A Notion database adapter that provides the procedures for reading and updating a Notion-based application tracker. Notion is a workspace tool that can store databases, pages, and structured properties.

In plain words
What is it for?
It is for reading tracker records and schemas, finding relevant views, and writing page properties or content when the pipeline uses Notion.
Why use it?
It keeps the rest of the career pipeline independent of Notion-specific details, such as schema checks, queries, views, and writebacks.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the career-engine plugin — 29 skills, 16 agents, 1 hook shipped together

Good fit It is for reading tracker records and schemas, finding relevant views, and writing page properties or content when the pipeline uses Notion.

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

Made for: Claude Code.

Or install career-engine, the plugin that ships this one along with the rest of its 29 skills, 16 agents, 1 hook.

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 database-notion

README.md
[![agentmods](https://agentmods.dev/badge/skills/spinningrachel/career-engine/database-notion.svg)](https://agentmods.dev/skills/spinningrachel/career-engine/database-notion)
Your own site
<a href="https://agentmods.dev/skills/spinningrachel/career-engine/database-notion"><img src="https://agentmods.dev/badge/skills/spinningrachel/career-engine/database-notion.svg" alt="Measured on agentmods" height="20"></a>
Per session 122 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,870 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.
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.00122 $0.04870
Opus 5 $0.00061 $0.02435
Sonnet 5 $0.00024 $0.00974
Haiku 4.5 $0.00012 $0.00487

Measured 7d ago against content hash 69b256c10fc3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

database-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 7d 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.

skills/database-notion/SKILL.md · 152 lines

How it starts

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

Database adapter — Notion

This is the Notion adapter. It owns every Notion-specific mechanic in one place, so the pipeline skills can speak in backend-neutral operations and a future backend can be added as a sibling adapter without touching them.

When to load (mandatory, conditional): any time a pipeline skill needs to read from or write to the database and database_backend resolves to notion (the default; from ${CAREER_DATA}/references/pipeline-preferences.json). The caller names the generic operation and the parameters (target status, properties to read, fields to write); this skill provides the how. If database_backend is ever something else, the caller loads that backend's adapter instead — never this one.

Database ID: $NOTION_DATABASE_ID, resolved from config (database_id, legacy notion_database_id) by the calling skill. Any {{NOTION_DATABASE_ID}} token in plugin text is a literal placeholder, not a value. $NOTION_DATABASE_ID/$NOTION_NEEDS_EDITING_VIEW_URL are this adapter's internal variable names.

Generic operation → Notion mechanic:

Generic operation (what callers say) Notion mechanic (below)
Read the schema reference §1 Schema read
Query the queue for Status = <target> §2 Read ladder (A1 → A2 → B)
Resolve a view by name §3 View discovery
Fetch a record's full properties §1/§2 per-page notion-fetch
Write a field / write-if-empty §4 Writeback
Write the page body §4 Page-body write

§1 — Schema read (always first)

⛔ STOP — check this before running the fetch below. §1's fetch below is needed once per run for the property/select-option schema reference — that use is never skipped. But if the caller's need right now is only view discovery (resolving a view URL for §2 Path B or §3), and the caller already has a non-empty, non-stale fast-path view URL from config (database_edit_view_url, database_interested_view_url, database_hold_view_url, database_researched_view_url, database_cv_ready_view_url, database_new_view_url), skip straight to §2 Path B step 2 (notion-query-database-view with that URL) — do not run the full schema fetch just to discover a view you already have the URL for. Two independent live runs ran this ~60-65KB fetch anyway despite already holding a populated fast-path URL in context, and both hit context exhaustion shortly after. Only run the fetch below when you actually need the schema reference (property names / select options for a write) or when no fast-path URL is available for the view you need.

Read the full file on GitHub · 152 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. 7d ago First seen · 152 lines · 122 tokens per session scan A 69b256c10fc3

Subscribe to this mod's changes

database-notion is a skill published in the GitHub repository spinningrachel/career-engine (4 stars, last pushed 26d ago), licensed MIT. It adds 122 tokens to every session and 4,870 once invoked, about $0.0006 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

stale-sweep

Sweep the googleapis/mcp-toolbox repo for issues and PRs with no real activity in N days (default 60), sort each by whose silence it is (the author's, ours, or nobody's), and draft the nudge or close comment. Use whenever a maintainer asks for a stale sweep, backlog cleanup, or an SLO check, e.g. "stale sweep", "find…

googleapis/mcp-toolbox · 159 tokens

gh-issue

Size-audit, write, and split BanyanDB issues that somebody else or an automated TDD workflow can implement. Use whenever the user asks to file or revise an issue, decide whether an issue is too large, make an issue TDD-ready, turn a design into tickets, or split an umbrella into executable leaves. Do not draft or file…

apache/skywalking-banyandb · 91 tokens

dingtalk-ai-table

Read and manage DingTalk AI table records through the DingTalk AI Table MCP. Use this skill when the user explicitly refers to a DingTalk AI table, fields, or records.

wecode-ai/Wegent · 36 tokens

product-feature-tech-implement

A skill for delivering a product feature from a design document and existing source code through development, code review, and testing. It also creates a user guide and implementation summary.

digoal/blog · 471 tokens

write-prd

A product requirements document (PRD) writing skill that turns a product idea into a structured Markdown document with diagrams. A PRD describes what a product should do and the requirements needed to build it.

digoal/blog · 237 tokens

write-brd

A business requirements document (BRD) writing skill that turns a product idea into a structured Markdown document with diagrams. A BRD explains the business problem, goals, and reasons for starting a project.

digoal/blog · 192 tokens