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 spinningrachel/career-engine --skill database-notiongit clone --depth 1 https://github.com/spinningrachel/career-engineWrote 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/spinningrachel/career-engine/database-notion)<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>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.00122 | $0.04870 |
| Opus 5 | $0.00061 | $0.02435 |
| Sonnet 5 | $0.00024 | $0.00974 |
| Haiku 4.5 | $0.00012 | $0.00487 |
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.
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.
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.
- 7d ago First seen · 152 lines · 122 tokens per session scan A 69b256c10fc3
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.
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…
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…
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.
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.
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.
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.