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/yultyyev/better-auth-firestore/agents-mdgit clone --depth 1 https://github.com/yultyyev/better-auth-firestoreWrote 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/yultyyev/better-auth-firestore/agents-md)<a href="https://agentmods.dev/instructions/yultyyev/better-auth-firestore/agents-md"><img src="https://agentmods.dev/badge/instructions/yultyyev/better-auth-firestore/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.02550 | $0.02550 |
| Opus 5 | $0.01275 | $0.01275 |
| Sonnet 5 | $0.00510 | $0.00510 |
| Haiku 4.5 | $0.00255 | $0.00255 |
Grade A, and why
better-auth-firestore 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 5d 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 — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Assistant Guidelines
This document provides additional context for AI assistants working on this project. Please read README.md first for project overview and features.
Quick Reference
- Package name:
better-auth-firestore - Main Documentation: See README.md
- Contributing Guidelines: See CONTRIBUTING.md
- Adapter Guide: See Better Auth Adapter Guide
Current Project State
All phases are complete. The adapter is production-ready and actively maintained.
Phase 1: Core Adapter ✅ Complete
Phase 2: Collection naming strategies ✅ Complete
Phase 3: Composite index tooling ✅ Complete (generateIndexSetupUrl)
Phase 4: Emulator support ✅ Complete
Phase 5: Tests (Vitest + Firestore Emulator) ✅ Complete
Phase 6: CI/CD and Example Project ✅ Complete
Phase 7: Migration from scoped package ✅ Complete
Project Structure
src/
firebase-adapter.ts # Core Firestore adapter implementation
firestore.ts # initFirestore helper and Firestore utilities
setup.ts # generateIndexSetupUrl helper
types.ts # TypeScript types for adapter options
index.ts # Public exports
tests/
*.test.ts # Vitest integration tests (run against Firestore Emulator)
examples/
minimal/ # Minimal Next.js App Router example
scripts/ # Build/release scripts
Key Exports
import {
firestoreAdapter, // Main adapter factory
initFirestore, // Helper to initialize Firebase Admin + Firestore
generateIndexSetupUrl, // Generate Firebase Console URL for index creation
backfillAccountIssuers, // One-off data migration for Better Auth 1.7 (account.issuer)
} from "better-auth-firestore";
Adapter Options
firestoreAdapter({
firestore?: Firestore; // Firebase Admin Firestore instance (default: getFirestore())
namingStrategy?: "default" | "snake_case"; // Collection naming convention
collections?: {
users?: string;
sessions?: string;
accounts?: string;
verificationTokens?: string;
};
debugLogs?: boolean | DBAdapterDebugLogOption;
migrationChecks?: boolean; // default true: warn once at startup if account docs lack `issuer` (Better Auth 1.7)
});
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.
- 5d ago First seen · 151 lines · 2,550 tokens per session scan A 97c9fa9e3ff5
better-auth-firestore AGENTS.md is an instructions file published in the GitHub repository yultyyev/better-auth-firestore (9 stars, last pushed 4d ago), licensed MIT. It adds 2,550 tokens to every session, about $0.0128 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 instructions, from other repositories
better-auth-firebase-auth AGENTS.md
AGENTS.md instructions for yultyyev/better-auth-firebase-auth, covering ai assistant guidelines, quick reference, current project state, supported firebase auth providers and implemented providers.
node-huckleberry-mcp AGENTS.md
AGENTS.md instructions for KenLSM/node-huckleberry-mcp, covering agents.md, what this project is, architecture (two layers — keep them separate), repo layout and schema & data conventions (live-verified).
node-huckleberry-mcp CLAUDE.md
Claude Code instructions for KenLSM/node-huckleberry-mcp: See AGENTS.md — the canonical contributor guide for this repo (architecture, conventions, how to pick up tasks, secrets/safety).
supabase AGENTS.md
AGENTS.md instructions for supabase/supabase, covering supabase monorepo, structure, common commands, ci and conventions.
supabase copilot-instructions.md
Copilot instructions for supabase/supabase, covering copilot code review instructions, review policy — read this first, confidence threshold, what not to comment on and what to comment on (priority order).
create-better-t-stack AGENTS.md
AGENTS.md instructions for AmanVarshney01/create-better-t-stack, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and error handling conventions.