monorepo-guidelines

monorepo-guidelines is a cursor rule for Cursor from tantodefi/xmtpauth. It costs 455 tokens per session, scanned A, original, MIT.

A set of rules for adding XMTP agent examples to a monorepo, a repository that contains multiple related projects, using Node.js, Yarn and Docker.

In plain words
What is it for?
Use it when creating or updating an XMTP agent example, configuring its package.json, adding development and build scripts, or setting its required environment variables.
Why use it?
It keeps package files, scripts, dependencies, engines and environment settings consistent across the many agent examples in the repository.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is "gen:keys": "tsx ../../scripts/generateKeys.ts",.

Good fit Use it when creating or updating an XMTP agent example, configuring its package.json, adding development and build scripts, or setting its required environment variables.

Compare 6 cursor rules from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/tantodefi/xmtpauth
agentmods
npx agentmods add rules/tantodefi/xmtpauth/monorepo-guidelines

Made for: Cursor.

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 monorepo-guidelines

README.md
[![agentmods](https://agentmods.dev/badge/rules/tantodefi/xmtpauth/monorepo-guidelines.svg)](https://agentmods.dev/rules/tantodefi/xmtpauth/monorepo-guidelines)
Your own site
<a href="https://agentmods.dev/rules/tantodefi/xmtpauth/monorepo-guidelines"><img src="https://agentmods.dev/badge/rules/tantodefi/xmtpauth/monorepo-guidelines.svg" alt="Measured on agentmods" height="20"></a>
Per session 455 This file is loaded in full into every session.
When invoked 455 The same file — it is already loaded in full.
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.00455 $0.00455
Opus 5 $0.00228 $0.00228
Sonnet 5 $0.00091 $0.00091
Haiku 4.5 $0.00046 $0.00046

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

Security

Grade A, and why

monorepo-guidelines 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.

.cursor/rules/monorepo-guidelines.mdc · 79 lines

What it actually says

Working with XMTP agents in this monorepo

This is the monorepo for XMTP agents. It contains many examples of agents on XMTP.

Required tools

  • Node.js v20 or later
  • Yarn v4.6.0 (package manager)
  • Docker (for local network testing)

Package configuration

When creating new agent examples in this monorepo, follow these guidelines for consistent package.json configuration:

{
  "name": "@examples/xmtp-agent-name",
  "version": "0.0.1",
  "private": true,
  "type": "module",
  "scripts": {
    "build": "tsc",
    "dev": "tsx --watch index.ts",
    "gen:keys": "tsx ../../scripts/generateKeys.ts",
    "lint": "cd ../.. && yarn eslint examples/xmtp-agent-name",
    "start": "tsx index.ts"
  },
  "dependencies": {
    "@xmtp/node-sdk": "*" // Inherit the version from the root package.json
    /* other dependencies */
  },
  "devDependencies": {
    "tsx": "*",
    "typescript": "*"
  },
  "engines": {
    "node": ">=20"
  }
}

Note: Ensure the script paths match your actual file structure. Some agents use index.ts in the root folder while others might use src/index.ts.

Environment variables

Your agent will typically require these environment variables in a .env file:

# Network: local, dev, or production
XMTP_ENV=dev

# Private keys (generate with yarn gen:keys)
WALLET_KEY=your_private_key_here
ENCRYPTION_KEY=your_encryption_key_here

Running an agent

Direct execution (recommended for development)

# Navigate to your agent directory
cd examples/your-agent-name

# Install dependencies if needed
yarn install

# Generate keys if you don't have them
yarn gen:keys

# Start the agent with hot-reloading
yarn dev
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 · 79 lines · 455 tokens per session scan A f0dc15ab3a8f

Subscribe to this mod's changes

monorepo-guidelines is a cursor rule published in the GitHub repository tantodefi/xmtpauth (3 stars, last pushed 12mo ago), licensed MIT. It adds 455 tokens to every session, about $0.0023 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.