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 agentmods add instructions/mongodb-js/mongodb-connection-string-url/agents-mdgit clone --depth 1 https://github.com/mongodb-js/mongodb-connection-string-urlWrote 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/instructions/mongodb-js/mongodb-connection-string-url/agents-md)<a href="https://agentmods.dev/instructions/mongodb-js/mongodb-connection-string-url/agents-md"><img src="https://agentmods.dev/badge/instructions/mongodb-js/mongodb-connection-string-url/agents-md.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 | $0.00669 | $0.00669 |
| Opus 5 | $0.00334 | $0.00334 |
| Sonnet 5 | $0.00134 | $0.00134 |
| Haiku 4.5 | $0.00067 | $0.00067 |
Grade A, and why
mongodb-connection-string-url 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.
How it starts
The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Instructions for AI coding agents working in this repository. This file is the source of truth; tool-specific files (e.g. CLAUDE.md) should only import it.
Project Overview
A parser library for MongoDB connection string URLs.
Commands
npm run build # compile TypeScript to lib/ and generate ESM wrapper
npm test # build, run tsd type tests, then mocha with coverage
npm run lint # runs an eslint pass
npm run compile-ts # type-check/compile only (fastest feedback)
Structure
- src/index.ts — parsing logic
- src/redact.ts — credential redactors for connection strings
test/*.ts— mocha + chai tests;test/types/*— tsd type-level tests
Code Conventions
- Public API stability — everything exported from
src/index.tsis public API. Renaming, removing, or narrowing exported types/signatures is a breaking change; confirm with a maintainer first. - Errors — throw
MongoParseErrorfor invalid connection strings; messages in sentence case, no trailing period. Never include the raw URI (credentials) in error messages. - Formatting — Prettier via eslint: single quotes, 2-space indent. Run
npm run lintbefore committing. - Tests — every behavior change needs a mocha test; type-signature changes need a tsd test in
test/types/.
Other Important Information
- Changes must be compliant with the connection string spec.
Commit Messages
Conventional Commits optionally with a Jira ticket: <type>(NODE-XXXX): <subject> — types: feat, fix, docs, style, refactor, perf, test, chore; breaking changes use ! (e.g. feat(NODE-XXXX)!: …). This rule is mandatory for PR descriptions, because that is what ends up in the history. The individual commits inside a PR do not have to follow this convention, because we squash PR commits.
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.
- 4d ago First seen · 50 lines · 669 tokens per session scan A e2da70550bc7
mongodb-connection-string-url AGENTS.md is an instructions file published in the GitHub repository mongodb-js/mongodb-connection-string-url (11 stars, last pushed 7d ago), licensed Apache-2.0. It adds 669 tokens to every session, about $0.0033 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 instructions, from other repositories
js-bson AGENTS.md
Instructions for mongodb/js-bson, covering agents.md, project overview, commands, benchmarks and structure.
mail-time CLAUDE.md
Instructions for veliovgroup/mail-time, covering claude.md, what this repo is, where to look first, mental model for changes and common pitfalls to avoid.
build-applications-w-copilot-agent-mode octofit_tracker_setup_project.instructions.md
Instructions for skills/build-applications-w-copilot-agent-mode, covering octofit tracker multi-tier application setup guidelines, application goals, command execution rules, forwarded ports and project structure.
build-applications-w-copilot-agent-mode octofit_tracker_django_backend.instructions.md
Instructions for skills/build-applications-w-copilot-agent-mode, covering octofit tracker logic + data tier guidelines, logic tier (node.js + express + typescript) and data tier (mongodb + mongoose).
restheart copilot-instructions.md
Copilot instructions for SoftInstigate/restheart, covering restheart ai coding agent instructions, project overview, architecture & module structure, plugin architecture (critical) and build & test workflows.
search-engine-core mongodb-bson.instructions.md
MongoDB BSON basic builder and instance initialization.